summaryrefslogtreecommitdiff
path: root/src/displayapp/Screens/DropDownDemo.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/displayapp/Screens/DropDownDemo.h')
-rw-r--r--src/displayapp/Screens/DropDownDemo.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/displayapp/Screens/DropDownDemo.h b/src/displayapp/Screens/DropDownDemo.h
new file mode 100644
index 00000000..7c75efc0
--- /dev/null
+++ b/src/displayapp/Screens/DropDownDemo.h
@@ -0,0 +1,29 @@
+#pragma once
+
+#include <cstdint>
+#include "Screen.h"
+#include <bits/unique_ptr.h>
+#include <libs/lvgl/src/lv_core/lv_style.h>
+#include <libs/lvgl/src/lv_core/lv_obj.h>
+
+namespace Pinetime {
+ namespace Applications {
+ namespace Screens {
+
+ class DropDownDemo : public Screen{
+ public:
+ DropDownDemo(DisplayApp* app);
+ ~DropDownDemo() override;
+
+ bool Refresh() override;
+ bool OnButtonPushed() override;
+ bool OnTouchEvent(TouchEvents event) override;
+
+ private:
+ lv_obj_t * ddlist;
+ bool running = true;
+ bool isDropDownOpened = false;
+ };
+ }
+ }
+}