Author: Jean-François Milants <jf@codingfield.com>
Checkbox list now receives a function pointer to call when the setting has changed. This allow to remove the dependency between CheckBoxList (UI component) with SettingController.
src/components/settings/Settings.h | 13 ++---- src/displayapp/screens/CheckboxList.cpp | 27 +++++-------- src/displayapp/screens/CheckboxList.h | 25 ++++-------- src/displayapp/screens/settings/SettingWatchFace.cpp | 21 +++++-----
diff --git a/src/components/settings/Settings.h b/src/components/settings/Settings.h index 9661a19930f026f22ac0741a559d388d43fc704d..93f861f3818a43241ecf2460fe0709cfcbf3a6c6 100644 --- a/src/components/settings/Settings.h +++ b/src/components/settings/Settings.h @@ -52,6 +52,11 @@ }; Settings(Pinetime::Controllers::FS& fs); + Settings(const Settings&) = delete; + Settings& operator=(const Settings&) = delete; + Settings(Settings&&) = delete; + Settings& operator=(Settings&&) = delete; + void Init(); void SaveSettings(); @@ -133,14 +138,6 @@ }; void SetAppMenu(uint8_t menu) { appMenu = menu; - }; - - void SetWatchfacesMenu(uint8_t menu) { - watchFacesMenu = menu; - }; - - uint8_t GetWatchfacesMenu() const { - return watchFacesMenu; }; uint8_t GetAppMenu() const { diff --git a/src/displayapp/screens/CheckboxList.cpp b/src/displayapp/screens/CheckboxList.cpp index 952d86da8a03241f3ee42231131438f3fa1aac87..42f9f57ded8c47e1729f5946b9ea187bd49b4eaa 100644 --- a/src/displayapp/screens/CheckboxList.cpp +++ b/src/displayapp/screens/CheckboxList.cpp @@ -1,5 +1,5 @@ -#include "displayapp/screens/CheckboxList.h" #include "displayapp/DisplayApp.h" +#include "displayapp/screens/CheckboxList.h" #include "displayapp/screens/Styles.h" using namespace Pinetime::Applications::Screens; @@ -9,27 +9,21 @@ static void event_handler(lv_obj_t* obj, lv_event_t event) { CheckboxList* screen = static_cast<CheckboxList*>(obj->user_data); screen->UpdateSelected(obj, event); } - } CheckboxList::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, + uint32_t originalValue, + std::function<void(uint32_t)>OnValueChanged, std::array<const char*, MaxItems> options) : Screen(app), screenID {screenID}, - settingsController {settingsController}, - SetOptionIndex {SetOptionIndex}, - GetOptionIndex {GetOptionIndex}, - options {options} { - - settingsController.SetWatchfacesMenu(screenID); - + OnValueChanged{std::move(OnValueChanged)}, + options {options}, + newValue{originalValue} { // Set the background to Black lv_obj_set_style_local_bg_color(lv_scr_act(), LV_OBJ_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_BLACK); @@ -39,7 +33,7 @@ pageIndicatorBasePoints[0].y = 0; pageIndicatorBasePoints[1].x = LV_HOR_RES - 1; pageIndicatorBasePoints[1].y = LV_VER_RES; - pageIndicatorBase = lv_line_create(lv_scr_act(), NULL); + pageIndicatorBase = lv_line_create(lv_scr_act(), nullptr); lv_obj_set_style_local_line_width(pageIndicatorBase, LV_LINE_PART_MAIN, LV_STATE_DEFAULT, 3); lv_obj_set_style_local_line_color(pageIndicatorBase, LV_LINE_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x111111)); lv_line_set_points(pageIndicatorBase, pageIndicatorBasePoints.data(), 2); @@ -52,7 +46,7 @@ pageIndicatorPoints[0].y = indicatorPos; pageIndicatorPoints[1].x = LV_HOR_RES - 1; pageIndicatorPoints[1].y = indicatorPos + indicatorSize; - pageIndicator = lv_line_create(lv_scr_act(), NULL); + pageIndicator = lv_line_create(lv_scr_act(), nullptr); lv_obj_set_style_local_line_width(pageIndicator, LV_LINE_PART_MAIN, LV_STATE_DEFAULT, 3); lv_obj_set_style_local_line_color(pageIndicator, LV_LINE_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_GRAY); lv_line_set_points(pageIndicator, pageIndicatorPoints.data(), 2); @@ -89,7 +83,7 @@ cbOption[i]->user_data = this; lv_obj_set_event_cb(cbOption[i], event_handler); SetRadioButtonStyle(cbOption[i]); - if (static_cast<unsigned int>((settingsController.*GetOptionIndex)() - MaxItems * screenID) == i) { + if (static_cast<unsigned int>(originalValue - MaxItems * screenID) == i) { lv_checkbox_set_checked(cbOption[i], true); } } @@ -98,6 +92,7 @@ } CheckboxList::~CheckboxList() { lv_obj_clean(lv_scr_act()); + OnValueChanged(newValue); } void CheckboxList::UpdateSelected(lv_obj_t* object, lv_event_t event) { @@ -106,7 +101,7 @@ for (unsigned int i = 0; i < options.size(); i++) { if (strcmp(options[i], "")) { if (object == cbOption[i]) { lv_checkbox_set_checked(cbOption[i], true); - (settingsController.*SetOptionIndex)(MaxItems * screenID + i); + newValue = MaxItems * screenID + i; } else { lv_checkbox_set_checked(cbOption[i], false); } diff --git a/src/displayapp/screens/CheckboxList.h b/src/displayapp/screens/CheckboxList.h index 5bdd143e3d60fb84689517a604162947a64788c2..4d27a62b9dbe7588a3bf9acea2b36577567180d9 100644 --- a/src/displayapp/screens/CheckboxList.h +++ b/src/displayapp/screens/CheckboxList.h @@ -1,12 +1,12 @@ #pragma once +#include "displayapp/Apps.h" +#include "displayapp/screens/Screen.h" +#include <array> +#include <cstdint> +#include <functional> #include <lvgl/lvgl.h> -#include <cstdint> #include <memory> -#include <array> -#include "displayapp/screens/Screen.h" -#include "displayapp/Apps.h" -#include "components/settings/Settings.h" namespace Pinetime { namespace Applications { @@ -14,34 +14,27 @@ namespace Screens { class CheckboxList : public Screen { public: static constexpr size_t MaxItems = 4; - 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, + uint32_t originalValue, + std::function<void(uint32_t)>OnValueChanged, std::array<const char*, MaxItems> 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::function<void(uint32_t)>OnValueChanged; std::array<const char*, MaxItems> options; std::array<lv_obj_t*, MaxItems> cbOption; std::array<lv_point_t, 2> pageIndicatorBasePoints; std::array<lv_point_t, 2> pageIndicatorPoints; lv_obj_t* pageIndicatorBase; lv_obj_t* pageIndicator; + uint32_t newValue; }; } } diff --git a/src/displayapp/screens/settings/SettingWatchFace.cpp b/src/displayapp/screens/settings/SettingWatchFace.cpp index 411cc898c9a57b9a4e03386580ced3595c9641ff..ce1efaa2cc50ff3aae600307c8690c03370a02d0 100644 --- a/src/displayapp/screens/settings/SettingWatchFace.cpp +++ b/src/displayapp/screens/settings/SettingWatchFace.cpp @@ -3,8 +3,6 @@ #include#include "displayapp/DisplayApp.h" #include "displayapp/screens/CheckboxList.h" #include "displayapp/screens/Screen.h" -#include "displayapp/screens/Styles.h" -#include "displayapp/screens/Symbols.h" #include "components/settings/Settings.h" using namespace Pinetime::Applications::Screens; @@ -16,7 +14,7 @@ SettingWatchFace::SettingWatchFace(Pinetime::Applications::DisplayApp* app, Pinetime::Controllers::Settings& settingsController) : Screen(app), settingsController {settingsController}, screens {app, - settingsController.GetWatchfacesMenu(), + 0, {[this]() -> std::unique_ptr<Screen> { return CreateScreen1(); }, @@ -28,7 +26,6 @@ } SettingWatchFace::~SettingWatchFace() { lv_obj_clean(lv_scr_act()); - settingsController.SaveSettings(); } bool SettingWatchFace::OnTouchEvent(Pinetime::Applications::TouchEvents event) { @@ -40,11 +37,13 @@ std::array watchfaces {"Digital face", "Analog face", "PineTimeStyle", "Terminal"}; return std::make_unique<Screens::CheckboxList>(0, 2, app, - settingsController, title, symbol, - &Controllers::Settings::SetClockFace, - &Controllers::Settings::GetClockFace, + settingsController.GetClockFace(), + [&settings = settingsController](uint32_t clockFace) { + settings.SetClockFace(clockFace); + settings.SaveSettings(); + }, watchfaces); } @@ -53,10 +52,12 @@ std::array watchfaces {"Infineat face", "Casio G7710", "", ""}; return std::make_unique<Screens::CheckboxList>(1, 2, app, - settingsController, title, symbol, - &Controllers::Settings::SetClockFace, - &Controllers::Settings::GetClockFace, + settingsController.GetClockFace(), + [&settings = settingsController](uint32_t clockFace) { + settings.SetClockFace(clockFace); + settings.SaveSettings(); + }, watchfaces); }