mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
91 lines
4.3 KiB
C++
91 lines
4.3 KiB
C++
#ifndef SETTINGS_MAIN_CONTROLLER_H
|
|
#define SETTINGS_MAIN_CONTROLLER_H
|
|
|
|
#include <escher.h>
|
|
#include <apps/shared/settings_message_tree.h>
|
|
#include "message_table_cell_with_gauge_with_separator.h"
|
|
#include "sub_menu/about_controller.h"
|
|
#include "sub_menu/accessibility_controller.h"
|
|
#include "sub_menu/datetime_controller.h"
|
|
#include "sub_menu/exam_mode_controller.h"
|
|
#include "sub_menu/code_options_controller.h"
|
|
#include "sub_menu/localization_controller.h"
|
|
#include "sub_menu/math_options_controller.h"
|
|
#include "sub_menu/preferences_controller.h"
|
|
#include "sub_menu/external_controller.h"
|
|
#include "sub_menu/brightness_controller.h"
|
|
|
|
namespace Settings {
|
|
|
|
extern const Shared::SettingsMessageTree s_modelAngleChildren[3];
|
|
extern const Shared::SettingsMessageTree s_modelEditionModeChildren[2];
|
|
extern const Shared::SettingsMessageTree s_modelFloatDisplayModeChildren[4];
|
|
extern const Shared::SettingsMessageTree s_modelComplexFormatChildren[3];
|
|
extern const Shared::SettingsMessageTree s_symbolChildren[4];
|
|
extern const Shared::SettingsMessageTree s_symbolFunctionChildren[3];
|
|
extern const Shared::SettingsMessageTree s_modelMathOptionsChildren[6];
|
|
extern const Shared::SettingsMessageTree s_modelFontChildren[2];
|
|
extern const Shared::SettingsMessageTree s_codeChildren[4];
|
|
extern const Shared::SettingsMessageTree s_modelDateTimeChildren[3];
|
|
extern const Shared::SettingsMessageTree s_accessibilityChildren[6];
|
|
extern const Shared::SettingsMessageTree s_contributorsChildren[18];
|
|
extern const Shared::SettingsMessageTree s_modelAboutChildren[10];
|
|
extern const Shared::SettingsMessageTree s_usbProtectionChildren[2];
|
|
extern const Shared::SettingsMessageTree s_usbProtectionLevelChildren[3];
|
|
extern const Shared::SettingsMessageTree s_externalChildren[2];
|
|
extern const Shared::SettingsMessageTree s_brightnessChildren[4];
|
|
extern const Shared::SettingsMessageTree s_model;
|
|
|
|
class MainController : public ViewController, public ListViewDataSource, public SelectableTableViewDataSource {
|
|
public:
|
|
MainController(Responder * parentResponder, InputEventHandlerDelegate * inputEventHandlerDelegate);
|
|
View * view() override;
|
|
bool handleEvent(Ion::Events::Event event) override;
|
|
void didBecomeFirstResponder() override;
|
|
int numberOfRows() const override;
|
|
KDCoordinate rowHeight(int j) override;
|
|
KDCoordinate cumulatedHeightFromIndex(int j) override;
|
|
int indexFromCumulatedHeight(KDCoordinate offsetY) override;
|
|
HighlightCell * reusableCell(int index, int type) override;
|
|
int reusableCellCount(int type) override;
|
|
int typeAtLocation(int i, int j) override;
|
|
void willDisplayCellForIndex(HighlightCell * cell, int index) override;
|
|
void viewWillAppear() override;
|
|
TELEMETRY_ID("");
|
|
private:
|
|
constexpr static int k_indexOfMathOptionsChildren = 0;
|
|
constexpr static int k_indexOfBrightnessCell = k_indexOfMathOptionsChildren + 1;
|
|
constexpr static int k_indexOfLanguageCell = k_indexOfBrightnessCell + 1;
|
|
constexpr static int k_indexOfExamModeCell = k_indexOfLanguageCell + 1;
|
|
constexpr static int k_indexOfFontCell = k_indexOfExamModeCell + 1;
|
|
/* Pop-up cell and About cell are located at the same index because pop-up
|
|
* cell is optional. We must always correct k_indexOfAboutCell with
|
|
* hasPrompt() (TODO: make hasPrompt() constexpr and correct
|
|
* k_indexOfAboutCell) */
|
|
constexpr static int k_indexOfPopUpCell = k_indexOfFontCell + 1;
|
|
constexpr static int k_indexOfAboutCell = k_indexOfFontCell + 1;
|
|
static const Shared::SettingsMessageTree * model();
|
|
private:
|
|
StackViewController * stackController() const;
|
|
I18n::Message promptMessage() const;
|
|
bool hasPrompt() const { return promptMessage() != I18n::Message::Default; }
|
|
constexpr static int k_numberOfSimpleChevronCells = 10;
|
|
MessageTableCellWithChevronAndMessage m_cells[k_numberOfSimpleChevronCells];
|
|
MessageTableCellWithSwitch m_popUpCell;
|
|
SelectableTableView m_selectableTableView;
|
|
MathOptionsController m_mathOptionsController;
|
|
BrightnessController m_brightnessController;
|
|
LocalizationController m_localizationController;
|
|
AccessibilityController m_accessibilityController;
|
|
DateTimeController m_dateTimeController;
|
|
CodeOptionsController m_codeOptionsController;
|
|
ExamModeController m_examModeController;
|
|
AboutController m_aboutController;
|
|
PreferencesController m_preferencesController;
|
|
ExternalController m_externalController;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|