32 lines
827 B
C
32 lines
827 B
C
#ifndef WLVGL_H
|
|
#define WLVGL_H
|
|
|
|
#include "lvgl.h"
|
|
#include "state_tracking.h"
|
|
|
|
void reset_wlv_tables();
|
|
|
|
lv_obj_t* wlv_obj_create(lv_obj_t* parent);
|
|
void wlv_style_init(lv_style_t* style);
|
|
void wlv_obj_set_style_bg_color(struct _lv_obj_t * obj, lv_color_t value, lv_style_selector_t selector);
|
|
void wlv_style_set_text_color();
|
|
void wlv_style_set_text_align();
|
|
void wlv_obj_align();
|
|
void wlv_obj_set_size();
|
|
void wlv_obj_add_style();
|
|
void wlv_obj_set_style_text_align();
|
|
void wlv_label_set_text();
|
|
void wlv_scr_load();
|
|
void wlv_scr_act();
|
|
void wlv_style_set_bg_color();
|
|
void wlv_style_set_bg_opa();
|
|
void wlv_obj_set_width();
|
|
void wlv_style_set_text_font();
|
|
void wlv_label_create();
|
|
void wlv_obj_del();
|
|
void wlv_obj_center();
|
|
void wlv_obj_remove_style();
|
|
void wlv_obj_add_flag();
|
|
void wlv_obj_clear_flag();
|
|
|
|
#endif /* WLVGL_H */ |