diff options
| author | Jean-François Milants <jf@codingfield.com> | 2022-09-11 16:22:28 +0200 |
|---|---|---|
| committer | Jean-François Milants <jf@codingfield.com> | 2022-09-11 16:22:28 +0200 |
| commit | 4cf73fc169ec1f95abd9d50d5cad08538f7b947c (patch) | |
| tree | ffcd1041964430d8fe54c5800ee2147f016d70a5 /src/displayapp/screens/WatchFaceInfineat.h | |
| parent | ada2c09581d2d13acfa5ce9a97671c0ec17863f1 (diff) | |
Infineat : Add support for external resources, and read the images and fonts from the ilesystem
Diffstat (limited to 'src/displayapp/screens/WatchFaceInfineat.h')
| -rw-r--r-- | src/displayapp/screens/WatchFaceInfineat.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/displayapp/screens/WatchFaceInfineat.h b/src/displayapp/screens/WatchFaceInfineat.h index 9541f2ad..c71dfca3 100644 --- a/src/displayapp/screens/WatchFaceInfineat.h +++ b/src/displayapp/screens/WatchFaceInfineat.h @@ -27,7 +27,8 @@ namespace Pinetime { Controllers::Ble& bleController, Controllers::NotificationManager& notificationManager, Controllers::Settings& settingsController, - Controllers::MotionController& motionController); + Controllers::MotionController& motionController, + Controllers::FS& fs); ~WatchFaceInfineat() override; @@ -101,8 +102,7 @@ namespace Pinetime { lv_obj_t* labelMinutes; lv_obj_t* labelTimeAmPm; lv_obj_t* dateContainer; - lv_obj_t* labelDateDay; - lv_obj_t* labelDateNum; + lv_obj_t* labelDate; lv_obj_t* bleIcon; lv_obj_t* stepIcon; lv_obj_t* stepValue; @@ -137,6 +137,8 @@ namespace Pinetime { void ToggleBatteryIndicatorColor(bool showSideCover); lv_task_t* taskRefresh; + lv_font_t* font_teko = nullptr; + lv_font_t* font_bebas = nullptr; }; } } |
