diff options
| author | ITCactus <n/a> | 2022-05-09 17:45:53 +0200 |
|---|---|---|
| committer | ITCactus <n/a> | 2022-06-30 15:14:23 +0200 |
| commit | 319dfd23e7dd1ecfedea113e49dfe30b5a814c67 (patch) | |
| tree | c216ae7c9204cf3e1ce7a1d83171f788df42efa7 /src/displayapp/screens/CheckboxList.h | |
| parent | c0770cde8a1416e8dad3064bf0de8168ec0915db (diff) | |
[new watchface] watchface inspired by G7710, with day of year and week number info
Diffstat (limited to 'src/displayapp/screens/CheckboxList.h')
| -rw-r--r-- | src/displayapp/screens/CheckboxList.h | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/src/displayapp/screens/CheckboxList.h b/src/displayapp/screens/CheckboxList.h new file mode 100644 index 00000000..e90dcd30 --- /dev/null +++ b/src/displayapp/screens/CheckboxList.h @@ -0,0 +1,49 @@ +#pragma once + +#include <lvgl/lvgl.h> +#include <cstdint> +#include <memory> +#include "displayapp/screens/Screen.h" +#include "displayapp/Apps.h" +#include "components/settings/Settings.h" + +#define MAXLISTITEMS 4 + +namespace Pinetime { + namespace Applications { + namespace Screens { + class CheckboxList : public Screen { + public: + CheckboxList(const uint8_t screenID, + const uint8_t numScreens, + DisplayApp* app, + Controllers::Settings& settingsController, + const char* optionsTitle, + const char* optionsSymbol, + void (Controllers::Settings::*SetOptionIndex)(uint8_t), + uint8_t (Controllers::Settings::*GetOptionIndex)() const, + std::array<const char*, MAXLISTITEMS> options); + + ~CheckboxList() override; + + void UpdateSelected(lv_obj_t* object, lv_event_t event); + + private: + const uint8_t screenID; + Controllers::Settings& settingsController; + const char* optionsTitle; + const char* optionsSymbol; + void (Controllers::Settings::*SetOptionIndex)(uint8_t); + uint8_t (Controllers::Settings::*GetOptionIndex)() const; + std::array<const char*, MAXLISTITEMS> options; + + lv_obj_t* cbOption[MAXLISTITEMS]; + + lv_point_t pageIndicatorBasePoints[2]; + lv_point_t pageIndicatorPoints[2]; + lv_obj_t* pageIndicatorBase; + lv_obj_t* pageIndicator; + }; + } + } +}
\ No newline at end of file |
