1
0
Fork 0
InfiniTime/src/displayapp/screens/InfiniPaint.h

39 lines
1,015 B
C
Raw Normal View History

2020-08-21 11:55:59 +02:00
#pragma once
2020-11-15 16:49:36 +01:00
#include <lvgl/lvgl.h>
2020-08-21 11:55:59 +02:00
#include <cstdint>
2021-11-03 23:02:30 +01:00
#include <algorithm> // std::fill
#include "displayapp/screens/Screen.h"
#include "components/motor/MotorController.h"
2020-08-21 11:55:59 +02:00
namespace Pinetime {
2020-11-15 16:49:36 +01:00
namespace Components {
class LittleVgl;
}
2020-08-21 11:55:59 +02:00
namespace Applications {
namespace Screens {
2020-11-15 16:49:36 +01:00
2020-10-09 10:35:32 +02:00
class InfiniPaint : public Screen {
2021-04-24 11:00:45 +02:00
public:
InfiniPaint(DisplayApp* app, Pinetime::Components::LittleVgl& lvgl, Controllers::MotorController& motor);
2020-11-15 16:49:36 +01:00
2020-10-09 10:35:32 +02:00
~InfiniPaint() override;
2020-11-15 16:49:36 +01:00
2020-10-09 10:35:32 +02:00
bool OnTouchEvent(TouchEvents event) override;
2020-11-15 16:49:36 +01:00
2020-10-09 10:35:32 +02:00
bool OnTouchEvent(uint16_t x, uint16_t y) override;
2020-11-15 16:49:36 +01:00
2021-04-24 11:00:45 +02:00
private:
2020-10-09 10:35:32 +02:00
Pinetime::Components::LittleVgl& lvgl;
Controllers::MotorController& motor;
2020-10-09 10:35:32 +02: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];
lv_color_t selectColor = LV_COLOR_WHITE;
uint8_t color = 2;
2020-08-21 11:55:59 +02:00
};
}
}
}