diff options
| author | JF002 <JF002@users.noreply.github.com> | 2021-03-20 11:27:16 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-20 11:27:16 +0100 |
| commit | 9e9bb2085e70a9c8b8c2e74f6027f5392e366158 (patch) | |
| tree | 0549cf49f95f6142af862063f46750ea994a8941 /src/displayapp/screens/ApplicationList.h | |
| parent | ada942535718d48eec37cca4f50d678e7201dc67 (diff) | |
| parent | 282e34dca14ddc799b9511643e50a4f9023003ed (diff) | |
Merge pull request #217 from joaquimorg/MultiFaceClock
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 aefb2385..0a0c6388 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; |
