Changed access modified indentation
This commit is contained in:
@@ -16,7 +16,7 @@ namespace Pinetime {
|
||||
namespace Screens {
|
||||
|
||||
class QuickSettings : public Screen {
|
||||
public:
|
||||
public:
|
||||
QuickSettings(DisplayApp* app,
|
||||
Pinetime::Controllers::Battery& batteryController,
|
||||
Controllers::DateTime& dateTimeController,
|
||||
@@ -32,7 +32,7 @@ namespace Pinetime {
|
||||
|
||||
void UpdateScreen();
|
||||
|
||||
private:
|
||||
private:
|
||||
Pinetime::Controllers::Battery& batteryController;
|
||||
Controllers::DateTime& dateTimeController;
|
||||
Controllers::BrightnessController& brightness;
|
||||
|
||||
@@ -11,14 +11,14 @@ namespace Pinetime {
|
||||
namespace Screens {
|
||||
|
||||
class SettingDisplay : public Screen {
|
||||
public:
|
||||
public:
|
||||
SettingDisplay(DisplayApp* app, Pinetime::Controllers::Settings& settingsController);
|
||||
~SettingDisplay() override;
|
||||
|
||||
bool Refresh() override;
|
||||
void UpdateSelected(lv_obj_t* object, lv_event_t event);
|
||||
|
||||
private:
|
||||
private:
|
||||
Controllers::Settings& settingsController;
|
||||
uint8_t optionsTotal;
|
||||
lv_obj_t* cbOption[4];
|
||||
|
||||
@@ -11,14 +11,14 @@ namespace Pinetime {
|
||||
namespace Screens {
|
||||
|
||||
class SettingTimeFormat : public Screen {
|
||||
public:
|
||||
public:
|
||||
SettingTimeFormat(DisplayApp* app, Pinetime::Controllers::Settings& settingsController);
|
||||
~SettingTimeFormat() override;
|
||||
|
||||
bool Refresh() override;
|
||||
void UpdateSelected(lv_obj_t* object, lv_event_t event);
|
||||
|
||||
private:
|
||||
private:
|
||||
Controllers::Settings& settingsController;
|
||||
uint8_t optionsTotal;
|
||||
lv_obj_t* cbOption[2];
|
||||
|
||||
@@ -11,14 +11,14 @@ namespace Pinetime {
|
||||
namespace Screens {
|
||||
|
||||
class SettingWakeUp : public Screen {
|
||||
public:
|
||||
public:
|
||||
SettingWakeUp(DisplayApp* app, Pinetime::Controllers::Settings& settingsController);
|
||||
~SettingWakeUp() override;
|
||||
|
||||
bool Refresh() override;
|
||||
void UpdateSelected(lv_obj_t* object, lv_event_t event);
|
||||
|
||||
private:
|
||||
private:
|
||||
Controllers::Settings& settingsController;
|
||||
uint8_t optionsTotal;
|
||||
lv_obj_t* cbOption[4];
|
||||
|
||||
@@ -11,14 +11,14 @@ namespace Pinetime {
|
||||
namespace Screens {
|
||||
|
||||
class SettingWatchFace : public Screen {
|
||||
public:
|
||||
public:
|
||||
SettingWatchFace(DisplayApp* app, Pinetime::Controllers::Settings& settingsController);
|
||||
~SettingWatchFace() override;
|
||||
|
||||
bool Refresh() override;
|
||||
void UpdateSelected(lv_obj_t* object, lv_event_t event);
|
||||
|
||||
private:
|
||||
private:
|
||||
Controllers::Settings& settingsController;
|
||||
uint8_t optionsTotal;
|
||||
lv_obj_t* cbOption[2];
|
||||
|
||||
@@ -10,7 +10,7 @@ namespace Pinetime {
|
||||
namespace Screens {
|
||||
|
||||
class Settings : public Screen {
|
||||
public:
|
||||
public:
|
||||
Settings(DisplayApp* app, Pinetime::Controllers::Settings& settingsController);
|
||||
~Settings() override;
|
||||
|
||||
@@ -19,7 +19,7 @@ namespace Pinetime {
|
||||
void OnButtonEvent(lv_obj_t* object, lv_event_t event);
|
||||
bool OnTouchEvent(Pinetime::Applications::TouchEvents event) override;
|
||||
|
||||
private:
|
||||
private:
|
||||
Controllers::Settings& settingsController;
|
||||
|
||||
ScreenList<2> screens;
|
||||
|
||||
Reference in New Issue
Block a user