2020-02-10 20:05:33 +00:00
|
|
|
#pragma once
|
|
|
|
|
2020-03-01 14:59:17 +00:00
|
|
|
#include <libs/lvgl/src/lv_core/lv_style.h>
|
|
|
|
#include <libs/lvgl/src/lv_themes/lv_theme.h>
|
2020-02-10 20:05:33 +00:00
|
|
|
#include <libs/lvgl/src/lv_hal/lv_hal.h>
|
|
|
|
#include <drivers/St7789.h>
|
2020-02-16 17:32:36 +00:00
|
|
|
#include <drivers/Cst816s.h>
|
2020-02-10 20:05:33 +00:00
|
|
|
|
|
|
|
|
|
|
|
static void disp_flush(lv_disp_drv_t * disp_drv, const lv_area_t * area, lv_color_t * color_p);
|
2020-02-16 17:32:36 +00:00
|
|
|
static bool touchpad_read(lv_indev_drv_t * indev_drv, lv_indev_data_t * data);
|
2020-02-10 20:05:33 +00:00
|
|
|
|
|
|
|
namespace Pinetime {
|
|
|
|
namespace Components {
|
|
|
|
class LittleVgl {
|
|
|
|
public:
|
2020-03-09 20:29:12 +00:00
|
|
|
enum class FullRefreshDirections { None, Up, Down };
|
2020-02-16 17:32:36 +00:00
|
|
|
LittleVgl(Pinetime::Drivers::St7789& lcd, Pinetime::Drivers::Cst816S& touchPanel);
|
2020-02-10 20:05:33 +00:00
|
|
|
|
2020-03-08 20:46:25 +00:00
|
|
|
LittleVgl(const LittleVgl&) = delete;
|
|
|
|
LittleVgl& operator=(const LittleVgl&) = delete;
|
|
|
|
LittleVgl(LittleVgl&&) = delete;
|
|
|
|
LittleVgl& operator=(LittleVgl&&) = delete;
|
2020-02-10 20:05:33 +00:00
|
|
|
|
2020-03-08 20:46:25 +00:00
|
|
|
void FlushDisplay(const lv_area_t * area, lv_color_t * color_p);
|
2020-02-16 17:32:36 +00:00
|
|
|
bool GetTouchPadInfo(lv_indev_data_t *ptr);
|
2020-03-09 20:29:12 +00:00
|
|
|
void SetFullRefresh(FullRefreshDirections direction);
|
|
|
|
void SetNewTapEvent(uint16_t x, uint16_t y);
|
|
|
|
|
2020-02-10 20:05:33 +00:00
|
|
|
private:
|
2020-02-16 17:32:36 +00:00
|
|
|
void InitDisplay();
|
|
|
|
void InitTouchpad();
|
2020-03-01 14:59:17 +00:00
|
|
|
void InitTheme();
|
|
|
|
void InitBaseTheme();
|
|
|
|
void InitThemeContainer();
|
|
|
|
void InitThemeButton();
|
|
|
|
void InitThemeLabel();
|
|
|
|
void InitThemeLine();
|
|
|
|
void InitThemeLed();
|
|
|
|
void InitThemeImage();
|
|
|
|
void InitThemeBar();
|
|
|
|
void InitThemeSlider();
|
|
|
|
void InitThemeSwitch();
|
|
|
|
void InitThemeMeter();
|
|
|
|
void InitThemeGauge();
|
|
|
|
void InitThemeArc();
|
|
|
|
void InitThemePreload();
|
|
|
|
void InitThemeChart();
|
|
|
|
void InitThemeCalendar();
|
|
|
|
void InitThemeCheckBox();
|
|
|
|
void InitThemeButtonMatrix();
|
|
|
|
void InitThemeKnob();
|
|
|
|
void InitThemeMessageBox();
|
|
|
|
void InitThemePage();
|
|
|
|
void InitThemeTextArea();
|
|
|
|
void InitThemeSpinBox();
|
|
|
|
void InitThemeList();
|
|
|
|
void InitThemeDropDownList();
|
|
|
|
void InitThemeRoller();
|
|
|
|
void InitThemeTabView();
|
|
|
|
void InitThemeTileView();
|
|
|
|
void InitThemeTable();
|
|
|
|
void InitThemeWindow();
|
2020-02-16 17:32:36 +00:00
|
|
|
|
2020-02-10 20:05:33 +00:00
|
|
|
Pinetime::Drivers::St7789& lcd;
|
2020-02-16 17:32:36 +00:00
|
|
|
Pinetime::Drivers::Cst816S& touchPanel;
|
|
|
|
|
2020-02-10 20:05:33 +00:00
|
|
|
|
|
|
|
lv_disp_buf_t disp_buf_2;
|
2020-03-01 14:59:17 +00:00
|
|
|
lv_color_t buf2_1[LV_HOR_RES_MAX * 4];
|
|
|
|
lv_color_t buf2_2[LV_HOR_RES_MAX * 4];
|
2020-02-10 20:05:33 +00:00
|
|
|
|
|
|
|
lv_disp_drv_t disp_drv;
|
2020-02-16 17:32:36 +00:00
|
|
|
lv_point_t previousClick;
|
|
|
|
|
2020-03-01 14:59:17 +00:00
|
|
|
lv_style_t def;
|
|
|
|
lv_style_t scr, bg, sb, panel;
|
|
|
|
lv_font_t * font = nullptr;
|
|
|
|
uint16_t hue = 10;
|
|
|
|
lv_theme_t theme;
|
|
|
|
lv_style_t btn_rel, btn_pr, btn_tgl_rel, btn_tgl_pr, btn_ina;
|
|
|
|
lv_style_t prim, sec, hint;
|
|
|
|
lv_style_t led;
|
|
|
|
lv_style_t bar_bg, bar_indic;
|
|
|
|
lv_style_t slider_knob;
|
|
|
|
lv_style_t arc;
|
|
|
|
lv_style_t cal_bg;
|
|
|
|
lv_style_t cal_header;
|
|
|
|
lv_style_t week_box;
|
|
|
|
lv_style_t today_box;
|
|
|
|
lv_style_t highlighted_days;
|
|
|
|
lv_style_t ina_days;
|
|
|
|
lv_style_t rel, pr, tgl_rel, tgl_pr, ina;
|
|
|
|
lv_style_t btnm_bg, btnm_rel, btnm_pr, btnm_tgl_rel, btnm_tgl_pr, btnm_ina;
|
|
|
|
lv_style_t mbox_bg;
|
|
|
|
lv_style_t page_scrl;
|
|
|
|
lv_style_t list_bg, list_btn_rel, list_btn_pr, list_btn_tgl_rel, list_btn_tgl_pr;
|
|
|
|
lv_style_t ddlist_bg, ddlist_sel;
|
|
|
|
lv_style_t cell;
|
|
|
|
lv_style_t win_bg;
|
|
|
|
lv_style_t win_header;
|
|
|
|
lv_style_t win_btn_pr;
|
2020-03-02 19:48:58 +00:00
|
|
|
|
|
|
|
bool firstTouch = true;
|
2020-03-08 20:46:25 +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; }
|
2020-03-09 20:29:12 +00:00
|
|
|
FullRefreshDirections scrollDirection = FullRefreshDirections::None;
|
2020-03-08 20:46:25 +00:00
|
|
|
uint16_t writeOffset = 0;
|
|
|
|
uint16_t scrollOffset = 0;
|
2020-03-09 20:29:12 +00:00
|
|
|
|
|
|
|
uint16_t tap_x = 0;
|
|
|
|
uint16_t tap_y = 0;
|
|
|
|
bool tapped = false;
|
2020-02-10 20:05:33 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|