aboutsummaryrefslogtreecommitdiffstats
path: root/src/displayapp/WatchFaces.h
diff options
context:
space:
mode:
authorMax Friedrich <minacode@users.noreply.github.com>2023-04-30 17:03:46 +0200
committerGitHub <noreply@github.com>2023-04-30 17:03:46 +0200
commit020a7fd11d1b18fd7ac29ccc00b9c6f6e0cdb17b (patch)
treefd0a9aa11b201b573ce8826638b515fe61ffff23 /src/displayapp/WatchFaces.h
parent5f19f689f9ebe1b00f3f7da22b20fb2700811375 (diff)
Refactor watch face to enum (#1339)
change watch face from int to enum --------- Co-authored-by: minacode <minamoto9@web.de>
Diffstat (limited to 'src/displayapp/WatchFaces.h')
-rw-r--r--src/displayapp/WatchFaces.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/displayapp/WatchFaces.h b/src/displayapp/WatchFaces.h
new file mode 100644
index 00000000..2982347a
--- /dev/null
+++ b/src/displayapp/WatchFaces.h
@@ -0,0 +1,14 @@
+#pragma once
+
+namespace Pinetime {
+ namespace Applications {
+ enum class WatchFace : uint8_t {
+ Digital = 0,
+ Analog = 1,
+ PineTimeStyle = 2,
+ Terminal = 3,
+ Infineat = 4,
+ CasioStyleG7710 = 5,
+ };
+ }
+}