2020-02-10 20:05:33 +00:00
|
|
|
#pragma once
|
|
|
|
|
2020-11-15 15:49:36 +00:00
|
|
|
#include <lvgl/lvgl.h>
|
2020-02-10 20:05:33 +00:00
|
|
|
|
|
|
|
namespace Pinetime {
|
2020-11-15 15:49:36 +00:00
|
|
|
namespace Drivers {
|
|
|
|
class Cst816S;
|
|
|
|
class St7789;
|
|
|
|
}
|
|
|
|
|
2020-02-10 20:05:33 +00:00
|
|
|
namespace Components {
|
|
|
|
class LittleVgl {
|
2021-04-24 09:00:45 +00:00
|
|
|
public:
|
2021-04-18 17:28:14 +00:00
|
|
|
enum class FullRefreshDirections { None, Up, Down, Left, Right, LeftAnim, RightAnim };
|
|
|
|
LittleVgl(Pinetime::Drivers::St7789& lcd, Pinetime::Drivers::Cst816S& touchPanel);
|
|
|
|
|
|
|
|
LittleVgl(const LittleVgl&) = delete;
|
|
|
|
LittleVgl& operator=(const LittleVgl&) = delete;
|
|
|
|
LittleVgl(LittleVgl&&) = delete;
|
|
|
|
LittleVgl& operator=(LittleVgl&&) = delete;
|
|
|
|
|
2021-06-12 08:58:28 +00:00
|
|
|
void Init();
|
|
|
|
|
2021-04-18 17:28:14 +00:00
|
|
|
void FlushDisplay(const lv_area_t* area, lv_color_t* color_p);
|
|
|
|
bool GetTouchPadInfo(lv_indev_data_t* ptr);
|
|
|
|
void SetFullRefresh(FullRefreshDirections direction);
|
2021-07-15 21:07:55 +00:00
|
|
|
void SetNewTouchPoint(uint16_t x, uint16_t y, bool contact);
|
2021-04-18 17:28:14 +00:00
|
|
|
|
2022-04-20 09:21:35 +00:00
|
|
|
bool GetFullRefresh() {
|
|
|
|
bool returnValue = fullRefresh;
|
|
|
|
if (fullRefresh) {
|
|
|
|
fullRefresh = false;
|
|
|
|
}
|
|
|
|
return returnValue;
|
|
|
|
}
|
|
|
|
|
2021-04-24 09:00:45 +00:00
|
|
|
private:
|
2021-04-18 17:28:14 +00:00
|
|
|
void InitDisplay();
|
|
|
|
void InitTouchpad();
|
|
|
|
void InitTheme();
|
|
|
|
|
|
|
|
Pinetime::Drivers::St7789& lcd;
|
|
|
|
Pinetime::Drivers::Cst816S& touchPanel;
|
|
|
|
|
|
|
|
lv_disp_buf_t disp_buf_2;
|
|
|
|
lv_color_t buf2_1[LV_HOR_RES_MAX * 4];
|
|
|
|
lv_color_t buf2_2[LV_HOR_RES_MAX * 4];
|
|
|
|
|
|
|
|
lv_disp_drv_t disp_drv;
|
|
|
|
|
2022-04-20 09:21:35 +00:00
|
|
|
bool fullRefresh = false;
|
2021-04-18 17:28:14 +00:00
|
|
|
static constexpr uint8_t nbWriteLines = 4;
|
|
|
|
static constexpr uint16_t totalNbLines = 320;
|
|
|
|
static constexpr uint16_t visibleNbLines = 240;
|
|
|
|
static constexpr uint8_t MaxScrollOffset() {
|
|
|
|
return LV_VER_RES_MAX - nbWriteLines;
|
|
|
|
}
|
|
|
|
FullRefreshDirections scrollDirection = FullRefreshDirections::None;
|
|
|
|
uint16_t writeOffset = 0;
|
|
|
|
uint16_t scrollOffset = 0;
|
|
|
|
|
|
|
|
uint16_t tap_x = 0;
|
|
|
|
uint16_t tap_y = 0;
|
|
|
|
bool tapped = false;
|
2020-02-10 20:05:33 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|