diff options
| author | Michele Bini <michele.bini@gmail.com> | 2022-03-25 04:04:13 (GMT) |
|---|---|---|
| committer | Michele Bini <michele.bini@gmail.com> | 2022-03-25 04:04:13 (GMT) |
| commit | c482f2af73932a05472245df45c76e21f9e33fdc (patch) | |
| tree | 3c5cf75259227251453b7c5a3f47fd4f5135103b /src/displayapp/screens/InfiniPaint.h | |
| parent | ac8bc2a0a0662b19ee6c286f105dac20a375a9f4 (diff) | |
remove paint
Diffstat (limited to 'src/displayapp/screens/InfiniPaint.h')
| -rw-r--r-- | src/displayapp/screens/InfiniPaint.h | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/src/displayapp/screens/InfiniPaint.h b/src/displayapp/screens/InfiniPaint.h deleted file mode 100644 index 8c42740..0000000 --- a/src/displayapp/screens/InfiniPaint.h +++ /dev/null @@ -1,38 +0,0 @@ -#pragma once - -#include <lvgl/lvgl.h> -#include <cstdint> -#include <algorithm> // std::fill -#include "displayapp/screens/Screen.h" -#include "components/motor/MotorController.h" - -namespace Pinetime { - namespace Components { - class LittleVgl; - } - namespace Applications { - namespace Screens { - - class InfiniPaint : public Screen { - public: - InfiniPaint(DisplayApp* app, Pinetime::Components::LittleVgl& lvgl, Controllers::MotorController& motor); - - ~InfiniPaint() override; - - bool OnTouchEvent(TouchEvents event) override; - - bool OnTouchEvent(uint16_t x, uint16_t y) override; - - private: - Pinetime::Components::LittleVgl& lvgl; - Controllers::MotorController& motor; - static constexpr uint16_t width = 10; - static constexpr uint16_t height = 10; - static constexpr uint16_t bufferSize = width * height; - lv_color_t b[bufferSize]; - lv_color_t selectColor = LV_COLOR_WHITE; - uint8_t color = 2; - }; - } - } -} |
