summaryrefslogtreecommitdiff
path: root/src/displayapp/screens/Clock.h
diff options
context:
space:
mode:
authorJean-François Milants <jf@codingfield.com>2022-09-11 16:22:28 +0200
committerJean-François Milants <jf@codingfield.com>2022-09-11 16:22:28 +0200
commit4cf73fc169ec1f95abd9d50d5cad08538f7b947c (patch)
treeffcd1041964430d8fe54c5800ee2147f016d70a5 /src/displayapp/screens/Clock.h
parentada2c09581d2d13acfa5ce9a97671c0ec17863f1 (diff)
Infineat : Add support for external resources, and read the images and fonts from the ilesystem
Diffstat (limited to 'src/displayapp/screens/Clock.h')
-rw-r--r--src/displayapp/screens/Clock.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/displayapp/screens/Clock.h b/src/displayapp/screens/Clock.h
index c80aeeb3..0cdc6028 100644
--- a/src/displayapp/screens/Clock.h
+++ b/src/displayapp/screens/Clock.h
@@ -28,7 +28,8 @@ namespace Pinetime {
Controllers::NotificationManager& notificatioManager,
Controllers::Settings& settingsController,
Controllers::HeartRateController& heartRateController,
- Controllers::MotionController& motionController);
+ Controllers::MotionController& motionController,
+ Controllers::FS& fs);
~Clock() override;
bool OnTouchEvent(TouchEvents event) override;
@@ -42,6 +43,7 @@ namespace Pinetime {
Controllers::Settings& settingsController;
Controllers::HeartRateController& heartRateController;
Controllers::MotionController& motionController;
+ Controllers::FS& fs;
std::unique_ptr<Screen> screen;
std::unique_ptr<Screen> WatchFaceDigitalScreen();