summaryrefslogtreecommitdiff
path: root/src/DisplayApp/Apps.h
diff options
context:
space:
mode:
authorJF <jf@codingfield.com>2020-08-14 09:46:37 +0200
committerJF <jf@codingfield.com>2020-08-14 09:46:37 +0200
commitf5328ec9eb9d55423b4e511910721d839cacadd8 (patch)
tree8cbc6faf0c87dca43fb33e0dcdaa6ea1e64d0b05 /src/DisplayApp/Apps.h
parent27fa273d8315f972931dba7971a99b0fbba7360e (diff)
Refactor ScreenList to make it more generic : it can now contain any Screen type.
Integrate this new ScreenList in SystemInfo. Add ApplicationList, which is a ScreenList of Tile. This allows to display a menu of more than 6 applications.
Diffstat (limited to 'src/DisplayApp/Apps.h')
-rw-r--r--src/DisplayApp/Apps.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/DisplayApp/Apps.h b/src/DisplayApp/Apps.h
new file mode 100644
index 00000000..2ee74299
--- /dev/null
+++ b/src/DisplayApp/Apps.h
@@ -0,0 +1,7 @@
+#pragma once
+
+namespace Pinetime {
+ namespace Applications {
+ enum class Apps {None, Launcher, Clock, SysInfo, Meter, Gauge, Brightness, Music};
+ }
+} \ No newline at end of file