2021-01-26 19:31:45 +00:00
|
|
|
#pragma once
|
|
|
|
|
2021-11-03 22:08:57 +00:00
|
|
|
#include <lvgl/src/lv_core/lv_style.h>
|
|
|
|
#include <lvgl/src/lv_themes/lv_theme.h>
|
|
|
|
#include <lvgl/src/lv_hal/lv_hal.h>
|
2021-01-26 19:31:45 +00:00
|
|
|
#include <drivers/St7789.h>
|
|
|
|
#include <drivers/Cst816s.h>
|
|
|
|
|
|
|
|
namespace Pinetime {
|
|
|
|
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 };
|
|
|
|
LittleVgl(Pinetime::Drivers::St7789& lcd, Pinetime::Drivers::Cst816S& touchPanel) {
|
|
|
|
}
|
2021-01-26 19:31:45 +00:00
|
|
|
|
2021-04-18 17:28:14 +00:00
|
|
|
LittleVgl(const LittleVgl&) = delete;
|
|
|
|
LittleVgl& operator=(const LittleVgl&) = delete;
|
|
|
|
LittleVgl(LittleVgl&&) = delete;
|
|
|
|
LittleVgl& operator=(LittleVgl&&) = delete;
|
2021-01-26 19:31:45 +00:00
|
|
|
|
2021-06-12 16:00:42 +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) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
void SetFullRefresh(FullRefreshDirections direction) {
|
|
|
|
}
|
|
|
|
void SetNewTapEvent(uint16_t x, uint16_t y) {
|
|
|
|
}
|
2021-08-28 13:23:13 +00:00
|
|
|
void SetNewTouchPoint(uint16_t x, uint16_t y, bool contact) {
|
|
|
|
}
|
2021-01-26 19:31:45 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|