ref: 0ce98c7ac7ba66acaf504be9bb042796e12f2733
src/displayapp/screens/InfiniPaint.cpp
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 |
#include "InfiniPaint.h" #include "../DisplayApp.h" #include "../LittleVgl.h" using namespace Pinetime::Applications::Screens; InfiniPaint::InfiniPaint(Pinetime::Applications::DisplayApp* app, Pinetime::Components::LittleVgl& lvgl) : Screen(app), lvgl {lvgl} { app->SetTouchMode(DisplayApp::TouchModes::Polling); std::fill(b, b + bufferSize, selectColor); } InfiniPaint::~InfiniPaint() { // Reset the touchmode app->SetTouchMode(DisplayApp::TouchModes::Gestures); lv_obj_clean(lv_scr_act()); } bool InfiniPaint::Refresh() { return running; } bool InfiniPaint::OnTouchEvent(Pinetime::Applications::TouchEvents event) { switch (event) { case Pinetime::Applications::TouchEvents::LongTap: switch (color) { case 0: selectColor = LV_COLOR_MAGENTA; break; case 1: selectColor = LV_COLOR_GREEN; break; case 2: selectColor = LV_COLOR_WHITE; break; case 3: selectColor = LV_COLOR_RED; break; case 4: selectColor = LV_COLOR_CYAN; break; case 5: selectColor = LV_COLOR_YELLOW; break; case 6: selectColor = LV_COLOR_BLUE; break; case 7: selectColor = LV_COLOR_BLACK; break; default: color = 0; break; } std::fill(b, b + bufferSize, selectColor); color++; return true; default: return true; } return true; } bool InfiniPaint::OnTouchEvent(uint16_t x, uint16_t y) { lv_area_t area; area.x1 = x - (width / 2); area.y1 = y - (height / 2); area.x2 = x + (width / 2) - 1; area.y2 = y + (height / 2) - 1; lvgl.SetFullRefresh(Components::LittleVgl::FullRefreshDirections::None); lvgl.FlushDisplay(&area, b); return true; } |