summaryrefslogtreecommitdiff
path: root/src/DisplayApp/Screens/InfiniPaint.h
diff options
context:
space:
mode:
authorJF <jf@codingfield.com>2020-08-22 14:34:46 (GMT)
committerGitea <gitea@fake.local>2020-08-22 14:34:46 (GMT)
commit3011dec66bb6b980e19d435c35bbb385ee200b88 (patch)
tree89be9d38577becd3670b679f4a478f09b56d36b8 /src/DisplayApp/Screens/InfiniPaint.h
parent3310401b3b20ed6d36de21e09001d2da9d5bce21 (diff)
parenta664dec07f894c88105c356816b49cac244ad319 (diff)
Merge branch 'paint' of JF/PineTime into develop
Diffstat (limited to 'src/DisplayApp/Screens/InfiniPaint.h')
-rw-r--r--src/DisplayApp/Screens/InfiniPaint.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/DisplayApp/Screens/InfiniPaint.h b/src/DisplayApp/Screens/InfiniPaint.h
new file mode 100644
index 0000000..a1592f9
--- /dev/null
+++ b/src/DisplayApp/Screens/InfiniPaint.h
@@ -0,0 +1,35 @@
+#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>
+#include <drivers/St7789.h>
+#include <DisplayApp/LittleVgl.h>
+
+namespace Pinetime {
+ namespace Applications {
+ namespace Screens {
+
+ class InfiniPaint : public Screen{
+ public:
+ InfiniPaint(DisplayApp* app, Pinetime::Components::LittleVgl& lvgl);
+ ~InfiniPaint() override;
+
+ bool Refresh() override;
+ bool OnButtonPushed() override;
+ bool OnTouchEvent(TouchEvents event) override;
+ bool OnTouchEvent(uint16_t x, uint16_t y) override;
+
+ private:
+ Pinetime::Components::LittleVgl& lvgl;
+ static constexpr uint16_t width = 10;
+ static constexpr uint16_t height = 10;
+ static constexpr uint16_t bufferSize = width*height;
+ lv_color_t b[bufferSize];
+ bool running = true;
+ };
+ }
+ }
+}