summaryrefslogtreecommitdiff
path: root/src/displayapp/widgets/DotIndicator.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/displayapp/widgets/DotIndicator.h')
-rw-r--r--src/displayapp/widgets/DotIndicator.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/displayapp/widgets/DotIndicator.h b/src/displayapp/widgets/DotIndicator.h
new file mode 100644
index 00000000..49cdca26
--- /dev/null
+++ b/src/displayapp/widgets/DotIndicator.h
@@ -0,0 +1,18 @@
+#pragma once
+#include <lvgl/lvgl.h>
+
+namespace Pinetime {
+ namespace Applications {
+ namespace Widgets {
+ class DotIndicator {
+ public:
+ DotIndicator(uint8_t nCurrentScreen, uint8_t nScreens);
+ void Create();
+
+ private:
+ uint8_t nCurrentScreen;
+ uint8_t nScreens;
+ };
+ }
+ }
+}