Home
last modified time | relevance | path

Searched refs:lv_theme_t (Results 1 – 11 of 11) sorted by relevance

/lvgl-2.7.6/src/lv_themes/
Dlv_theme.h166 } lv_theme_t; typedef
177 void lv_theme_set_act(lv_theme_t * th);
183 lv_theme_t * lv_theme_get_act(void);
198 void lv_theme_copy(lv_theme_t * theme, const lv_theme_t * copy);
207 void lv_theme_set_base(lv_theme_t * new_theme, lv_theme_t * base);
215 void lv_theme_set_apply_cb(lv_theme_t * theme, lv_theme_apply_cb_t apply_cb);
Dlv_theme.c22 static void apply_theme(lv_theme_t * th, lv_obj_t * obj, lv_theme_style_t name);
28 static lv_theme_t * act_theme;
43 void lv_theme_set_act(lv_theme_t * th) in lv_theme_set_act()
52 lv_theme_t * lv_theme_get_act(void) in lv_theme_get_act()
78 void lv_theme_copy(lv_theme_t * theme, const lv_theme_t * copy) in lv_theme_copy()
80 _lv_memset_00(theme, sizeof(lv_theme_t)); in lv_theme_copy()
104 void lv_theme_set_base(lv_theme_t * new_theme, lv_theme_t * base) in lv_theme_set_base()
115 void lv_theme_set_apply_cb(lv_theme_t * theme, lv_theme_apply_cb_t apply_cb) in lv_theme_set_apply_cb()
187 static void apply_theme(lv_theme_t * th, lv_obj_t * obj, lv_theme_style_t name) in apply_theme()
Dlv_theme_empty.c34 static void theme_apply(lv_theme_t * th, lv_obj_t * obj, lv_theme_style_t name);
40 static lv_theme_t theme;
68 lv_theme_t * lv_theme_empty_init(lv_color_t color_primary, lv_color_t color_secondary, uint32_t fla… in lv_theme_empty_init()
98 static void theme_apply(lv_theme_t * th, lv_obj_t * obj, lv_theme_style_t name) in theme_apply()
Dlv_theme_mono.h44 lv_theme_t * lv_theme_mono_init(lv_color_t color_primary, lv_color_t color_secondary, uint32_t flag…
Dlv_theme_template.h44 lv_theme_t * lv_theme_template_init(lv_color_t color_primary, lv_color_t color_secondary, uint32_t …
Dlv_theme_empty.h44 lv_theme_t * lv_theme_empty_init(lv_color_t color_primary, lv_color_t color_secondary, uint32_t fla…
Dlv_theme_material.h49 lv_theme_t * lv_theme_material_init(lv_color_t color_primary, lv_color_t color_secondary, uint32_t …
Dlv_theme_template.c40 static void theme_apply(lv_theme_t * th, lv_obj_t * obj, lv_theme_style_t name);
45 static lv_theme_t theme;
47 static lv_theme_t theme;
347 lv_theme_t * lv_theme_template_init(lv_color_t color_primary, lv_color_t color_secondary, uint32_t … in lv_theme_template_init()
412 void theme_apply(lv_theme_t * th, lv_obj_t * obj, lv_theme_style_t name) in theme_apply()
Dlv_theme_mono.c87 static void theme_apply(lv_theme_t * th, lv_obj_t * obj, lv_theme_style_t name);
93 static lv_theme_t theme;
509 lv_theme_t * lv_theme_mono_init(lv_color_t color_primary, lv_color_t color_secondary, uint32_t flag… in lv_theme_mono_init()
569 static void theme_apply(lv_theme_t * th, lv_obj_t * obj, lv_theme_style_t name) in theme_apply()
Dlv_theme_material.c181 static void theme_apply(lv_theme_t * th, lv_obj_t * obj, lv_theme_style_t name);
187 static lv_theme_t theme;
894 lv_theme_t * lv_theme_material_init(lv_color_t color_primary, lv_color_t color_secondary, uint32_t … in lv_theme_material_init()
959 static void theme_apply(lv_theme_t * th, lv_obj_t * obj, lv_theme_style_t name) in theme_apply()
/lvgl-2.7.6/src/lv_core/
Dlv_obj.c202lv_theme_t * th = LV_THEME_DEFAULT_INIT(LV_THEME_DEFAULT_COLOR_PRIMARY, LV_THEME_DEFAULT_COLOR_SEC… in lv_init()