aboutsummaryrefslogtreecommitdiffstats
path: root/src/displayapp/screens/WatchFaceAnalog.h
diff options
context:
space:
mode:
authorMax Friedrich <minacode@users.noreply.github.com>2023-08-15 13:01:17 +0200
committerGitHub <noreply@github.com>2023-08-15 13:01:17 +0200
commit6d0d8c7d6373062cd084c170d2e50e1535c9e95d (patch)
tree12829f5c0a7a638d089f24e722a42a281d49e4ae /src/displayapp/screens/WatchFaceAnalog.h
parent782ef7902f6576a7f5c2855e8cd13ab0ef650f6f (diff)
watchfaceanalog: Background in lvgl (#1824)
* change background image to widgets This commit removes the background image for the WatchFaceAnalog and replaces it with lvgl widgets. It aims to keep the original look. * remove comments and background image --------- Co-authored-by: minacode <minamoto9@web.de>
Diffstat (limited to 'src/displayapp/screens/WatchFaceAnalog.h')
-rw-r--r--src/displayapp/screens/WatchFaceAnalog.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/displayapp/screens/WatchFaceAnalog.h b/src/displayapp/screens/WatchFaceAnalog.h
index 501de115..7e83cfcb 100644
--- a/src/displayapp/screens/WatchFaceAnalog.h
+++ b/src/displayapp/screens/WatchFaceAnalog.h
@@ -46,6 +46,11 @@ namespace Pinetime {
using days = std::chrono::duration<int32_t, std::ratio<86400>>; // TODO: days is standard in c++20
Utility::DirtyValue<std::chrono::time_point<std::chrono::system_clock, days>> currentDate;
+ lv_obj_t* minor_scales;
+ lv_obj_t* major_scales;
+ lv_obj_t* large_scales;
+ lv_obj_t* twelve;
+
lv_obj_t* hour_body;
lv_obj_t* hour_body_trace;
lv_obj_t* minute_body;