Reformatted InfiniPaint again
This commit is contained in:
parent
1c645b776a
commit
fd110dabe8
|
@ -7,7 +7,7 @@ using namespace Pinetime::Applications::Screens;
|
||||||
extern lv_font_t jetbrains_mono_extrabold_compressed;
|
extern lv_font_t jetbrains_mono_extrabold_compressed;
|
||||||
extern lv_font_t jetbrains_mono_bold_20;
|
extern lv_font_t jetbrains_mono_bold_20;
|
||||||
|
|
||||||
InfiniPaint::InfiniPaint(Pinetime::Applications::DisplayApp *app, Pinetime::Components::LittleVgl &lvgl) : Screen(app), lvgl{lvgl} {
|
InfiniPaint::InfiniPaint(Pinetime::Applications::DisplayApp* app, Pinetime::Components::LittleVgl& lvgl) : Screen(app), lvgl{lvgl} {
|
||||||
app->SetTouchMode(DisplayApp::TouchModes::Polling);
|
app->SetTouchMode(DisplayApp::TouchModes::Polling);
|
||||||
std::fill(b, b + bufferSize, LV_COLOR_WHITE);
|
std::fill(b, b + bufferSize, LV_COLOR_WHITE);
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,23 +12,27 @@ namespace Pinetime {
|
||||||
namespace Applications {
|
namespace Applications {
|
||||||
namespace Screens {
|
namespace Screens {
|
||||||
|
|
||||||
class InfiniPaint : public Screen{
|
class InfiniPaint : public Screen {
|
||||||
public:
|
public:
|
||||||
InfiniPaint(DisplayApp* app, Pinetime::Components::LittleVgl& lvgl);
|
InfiniPaint(DisplayApp* app, Pinetime::Components::LittleVgl& lvgl);
|
||||||
~InfiniPaint() override;
|
|
||||||
|
|
||||||
bool Refresh() override;
|
~InfiniPaint() override;
|
||||||
bool OnButtonPushed() override;
|
|
||||||
bool OnTouchEvent(TouchEvents event) override;
|
|
||||||
bool OnTouchEvent(uint16_t x, uint16_t y) override;
|
|
||||||
|
|
||||||
private:
|
bool Refresh() override;
|
||||||
Pinetime::Components::LittleVgl& lvgl;
|
|
||||||
static constexpr uint16_t width = 10;
|
bool OnButtonPushed() override;
|
||||||
static constexpr uint16_t height = 10;
|
|
||||||
static constexpr uint16_t bufferSize = width*height;
|
bool OnTouchEvent(TouchEvents event) override;
|
||||||
lv_color_t b[bufferSize];
|
|
||||||
bool running = true;
|
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;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue