diff options
| author | JF <JF002@users.noreply.github.com> | 2021-12-30 21:36:43 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-30 21:36:43 +0100 |
| commit | 395590d2d8988f39f58f6054aab214b740a2760a (patch) | |
| tree | 31fadad1080d6cb46347d1c3556fb5f0ac1750b5 /src/displayapp/screens/settings/SettingPineTimeStyle.h | |
| parent | 5b7915b5c9474ba74f7d31eae5e62c5d4793b0f6 (diff) | |
| parent | 6cf4a933b6323fc24a3b27ae55a3c12d31d6a841 (diff) | |
Merge pull request #718 from kieranc/pts-settings
Integrate color picker into PineTimeStyle watchface
Diffstat (limited to 'src/displayapp/screens/settings/SettingPineTimeStyle.h')
| -rw-r--r-- | src/displayapp/screens/settings/SettingPineTimeStyle.h | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/src/displayapp/screens/settings/SettingPineTimeStyle.h b/src/displayapp/screens/settings/SettingPineTimeStyle.h deleted file mode 100644 index 397bd86d..00000000 --- a/src/displayapp/screens/settings/SettingPineTimeStyle.h +++ /dev/null @@ -1,56 +0,0 @@ -#pragma once - -#include <cstdint> -#include <lvgl/lvgl.h> -#include "components/settings/Settings.h" -#include "displayapp/screens/Screen.h" - -namespace Pinetime { - - namespace Applications { - namespace Screens { - - class SettingPineTimeStyle : public Screen{ - public: - SettingPineTimeStyle(DisplayApp* app, Pinetime::Controllers::Settings &settingsController); - ~SettingPineTimeStyle() override; - - void UpdateSelected(lv_obj_t *object, lv_event_t event); - - private: - Controllers::Settings& settingsController; - - Pinetime::Controllers::Settings::Colors GetNext(Controllers::Settings::Colors color); - Pinetime::Controllers::Settings::Colors GetPrevious(Controllers::Settings::Colors color); - - lv_obj_t * btnNextTime; - lv_obj_t * btnPrevTime; - lv_obj_t * btnNextBar; - lv_obj_t * btnPrevBar; - lv_obj_t * btnNextBG; - lv_obj_t * btnPrevBG; - lv_obj_t * btnReset; - lv_obj_t * btnRandom; - lv_obj_t * timebar; - lv_obj_t * sidebar; - lv_obj_t * timeDD1; - lv_obj_t * timeDD2; - lv_obj_t * timeAMPM; - lv_obj_t * dateDayOfWeek; - lv_obj_t * dateDay; - lv_obj_t * dateMonth; - lv_obj_t * backgroundLabel; - lv_obj_t * batteryIcon; - lv_obj_t * bleIcon; - lv_obj_t * calendarOuter; - lv_obj_t * calendarInner; - lv_obj_t * calendarBar1; - lv_obj_t * calendarBar2; - lv_obj_t * calendarCrossBar1; - lv_obj_t * calendarCrossBar2; - lv_obj_t * stepGauge; - lv_color_t needle_colors[1]; - }; - } - } -} |
