diff options
| author | Joaquim <joaquim.org@gmail.com> | 2021-02-24 19:40:24 (GMT) |
|---|---|---|
| committer | Joaquim <joaquim.org@gmail.com> | 2021-02-24 19:40:24 (GMT) |
| commit | 8c53d0b70baa03c2b07360444a7cd0ad99bb8381 (patch) | |
| tree | 52585926f2abc810b2b93475dfb2580e6ea19f85 /src/displayapp/screens/ApplicationList.h | |
| parent | c18f4e5811dbd388e3b4acc29b1fab68279ec405 (diff) | |
Multi face support, analog clock, 12/24 config
Diffstat (limited to 'src/displayapp/screens/ApplicationList.h')
| -rw-r--r-- | src/displayapp/screens/ApplicationList.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/displayapp/screens/ApplicationList.h b/src/displayapp/screens/ApplicationList.h index aefb238..0a0c638 100644 --- a/src/displayapp/screens/ApplicationList.h +++ b/src/displayapp/screens/ApplicationList.h @@ -10,12 +10,16 @@ namespace Pinetime { namespace Screens { class ApplicationList : public Screen { public: - explicit ApplicationList(DisplayApp* app); + explicit ApplicationList(DisplayApp* app, + Pinetime::Controllers::Settings &settingsController); ~ApplicationList() override; bool Refresh() override; bool OnButtonPushed() override; bool OnTouchEvent(TouchEvents event) override; private: + + Controllers::Settings& settingsController; + bool running = true; ScreenList<2> screens; |
