2020-08-21 05:55:59 -04:00
|
|
|
#pragma once
|
|
|
|
|
2020-11-15 10:49:36 -05:00
|
|
|
#include <lvgl/lvgl.h>
|
2020-08-21 05:55:59 -04:00
|
|
|
#include <cstdint>
|
2021-11-03 18:02:30 -04:00
|
|
|
#include <algorithm> // std::fill
|
2021-10-13 16:08:35 -04:00
|
|
|
#include "displayapp/screens/Screen.h"
|
2021-12-02 15:42:56 -05:00
|
|
|
#include "components/motor/MotorController.h"
|
2020-08-21 05:55:59 -04:00
|
|
|
|
|
|
|
namespace Pinetime {
|
2020-11-15 10:49:36 -05:00
|
|
|
namespace Components {
|
|
|
|
class LittleVgl;
|
|
|
|
}
|
2020-08-21 05:55:59 -04:00
|
|
|
namespace Applications {
|
|
|
|
namespace Screens {
|
2020-11-15 10:49:36 -05:00
|
|
|
|
2020-10-09 04:35:32 -04:00
|
|
|
class InfiniPaint : public Screen {
|
2021-04-24 05:00:45 -04:00
|
|
|
public:
|
2021-10-31 16:23:43 -04:00
|
|
|
InfiniPaint(DisplayApp* app, Pinetime::Components::LittleVgl& lvgl, Controllers::MotorController& motor);
|
2020-11-15 10:49:36 -05:00
|
|
|
|
2020-10-09 04:35:32 -04:00
|
|
|
~InfiniPaint() override;
|
2020-11-15 10:49:36 -05:00
|
|
|
|
2020-10-09 04:35:32 -04:00
|
|
|
bool OnTouchEvent(TouchEvents event) override;
|
2020-11-15 10:49:36 -05:00
|
|
|
|
2020-10-09 04:35:32 -04:00
|
|
|
bool OnTouchEvent(uint16_t x, uint16_t y) override;
|
2020-11-15 10:49:36 -05:00
|
|
|
|
2021-04-24 05:00:45 -04:00
|
|
|
private:
|
2020-10-09 04:35:32 -04:00
|
|
|
Pinetime::Components::LittleVgl& lvgl;
|
2021-10-31 16:23:43 -04:00
|
|
|
Controllers::MotorController& motor;
|
2020-10-09 04:35:32 -04:00
|
|
|
static constexpr uint16_t width = 10;
|
|
|
|
static constexpr uint16_t height = 10;
|
|
|
|
static constexpr uint16_t bufferSize = width * height;
|
|
|
|
lv_color_t b[bufferSize];
|
2021-04-03 22:08:51 -04:00
|
|
|
lv_color_t selectColor = LV_COLOR_WHITE;
|
|
|
|
uint8_t color = 2;
|
2020-08-21 05:55:59 -04:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|