Home
last modified time | relevance | path

Searched refs:lv_style_prop_t (Results 1 – 17 of 17) sorted by relevance

/lvgl-latest/src/misc/
Dlv_style.h77 #define LV_STYLE_PROP_ID_MASK(prop) ((lv_style_prop_t)((prop) & ~LV_STYLE_PROP_META_MASK))
285 } lv_style_prop_t; typedef
299 const lv_style_prop_t * props; /**< An array with the properties to animate.*/
312 lv_style_prop_t prop;
370 lv_style_prop_t lv_style_register_prop(uint8_t flag);
375 lv_style_prop_t lv_style_get_num_custom_props(void);
383 bool lv_style_remove_prop(lv_style_t * style, lv_style_prop_t prop);
393 void lv_style_set_prop(lv_style_t * style, lv_style_prop_t prop, lv_style_value_t value);
402 void lv_style_set_prop_meta(lv_style_t * style, lv_style_prop_t prop, uint16_t meta);
413 lv_style_res_t lv_style_get_prop(const lv_style_t * style, lv_style_prop_t prop, lv_style_value_t *…
[all …]
Dlv_style.c27 static void lv_style_set_prop_internal(lv_style_t * style, lv_style_prop_t prop_and_meta, lv_style_…
28 …void (*value_adjustment_helper)(lv_style_prop_t, lv_style_value_t, uint16_t *, lv_style_value_t *)…
29 static void lv_style_set_prop_helper(lv_style_prop_t prop, lv_style_value_t value, uint16_t * prop_…
31 static void lv_style_set_prop_meta_helper(lv_style_prop_t prop, lv_style_value_t value, uint16_t * …
181 lv_style_prop_t lv_style_register_prop(uint8_t flag) in lv_style_register_prop()
217 lv_style_prop_t lv_style_get_num_custom_props(void) in lv_style_get_num_custom_props()
222 bool lv_style_remove_prop(lv_style_t * style, lv_style_prop_t prop) in lv_style_remove_prop()
283 void lv_style_set_prop(lv_style_t * style, lv_style_prop_t prop, lv_style_value_t value) in lv_style_set_prop()
288 void lv_style_set_prop_meta(lv_style_t * style, lv_style_prop_t prop, uint16_t meta) in lv_style_set_prop_meta()
293 lv_style_res_t lv_style_get_prop(const lv_style_t * style, lv_style_prop_t prop, lv_style_value_t *… in lv_style_get_prop()
[all …]
/lvgl-latest/src/extra/layouts/grid/
Dlv_grid.h57 extern lv_style_prop_t LV_STYLE_GRID_COLUMN_DSC_ARRAY;
58 extern lv_style_prop_t LV_STYLE_GRID_COLUMN_ALIGN;
59 extern lv_style_prop_t LV_STYLE_GRID_ROW_DSC_ARRAY;
60 extern lv_style_prop_t LV_STYLE_GRID_ROW_ALIGN;
61 extern lv_style_prop_t LV_STYLE_GRID_CELL_COLUMN_POS;
62 extern lv_style_prop_t LV_STYLE_GRID_CELL_COLUMN_SPAN;
63 extern lv_style_prop_t LV_STYLE_GRID_CELL_X_ALIGN;
64 extern lv_style_prop_t LV_STYLE_GRID_CELL_ROW_POS;
65 extern lv_style_prop_t LV_STYLE_GRID_CELL_ROW_SPAN;
66 extern lv_style_prop_t LV_STYLE_GRID_CELL_Y_ALIGN;
Dlv_grid.c105 lv_style_prop_t LV_STYLE_GRID_COLUMN_DSC_ARRAY;
106 lv_style_prop_t LV_STYLE_GRID_COLUMN_ALIGN;
107 lv_style_prop_t LV_STYLE_GRID_ROW_DSC_ARRAY;
108 lv_style_prop_t LV_STYLE_GRID_ROW_ALIGN;
109 lv_style_prop_t LV_STYLE_GRID_CELL_COLUMN_POS;
110 lv_style_prop_t LV_STYLE_GRID_CELL_COLUMN_SPAN;
111 lv_style_prop_t LV_STYLE_GRID_CELL_X_ALIGN;
112 lv_style_prop_t LV_STYLE_GRID_CELL_ROW_POS;
113 lv_style_prop_t LV_STYLE_GRID_CELL_ROW_SPAN;
114 lv_style_prop_t LV_STYLE_GRID_CELL_Y_ALIGN;
/lvgl-latest/src/core/
Dlv_obj_style.h50 lv_style_prop_t prop;
112 void lv_obj_refresh_style(struct _lv_obj_t * obj, lv_part_t part, lv_style_prop_t prop);
131 …_value_t lv_obj_get_style_prop(const struct _lv_obj_t * obj, lv_part_t part, lv_style_prop_t prop);
140 void lv_obj_set_local_style_prop(struct _lv_obj_t * obj, lv_style_prop_t prop, lv_style_value_t val…
143 void lv_obj_set_local_style_prop_meta(struct _lv_obj_t * obj, lv_style_prop_t prop, uint16_t meta,
146 lv_style_res_t lv_obj_get_local_style_prop(struct _lv_obj_t * obj, lv_style_prop_t prop, lv_style_v…
156 bool lv_obj_remove_local_style_prop(struct _lv_obj_t * obj, lv_style_prop_t prop, lv_style_selector…
Dlv_obj_style.c24 lv_style_prop_t prop;
47 static lv_style_res_t get_prop_core(const lv_obj_t * obj, lv_part_t part, lv_style_prop_t prop, lv_…
50 static bool trans_del(lv_obj_t * obj, lv_part_t part, lv_style_prop_t prop, trans_t * tr_limit);
110 lv_style_prop_t prop = LV_STYLE_PROP_ANY; in lv_obj_remove_style()
167 void lv_obj_refresh_style(lv_obj_t * obj, lv_style_selector_t selector, lv_style_prop_t prop) in lv_obj_refresh_style()
223 lv_style_value_t lv_obj_get_style_prop(const lv_obj_t * obj, lv_part_t part, lv_style_prop_t prop) in lv_obj_get_style_prop()
270 void lv_obj_set_local_style_prop(lv_obj_t * obj, lv_style_prop_t prop, lv_style_value_t value, in lv_obj_set_local_style_prop()
278 void lv_obj_set_local_style_prop_meta(lv_obj_t * obj, lv_style_prop_t prop, uint16_t meta, in lv_obj_set_local_style_prop_meta()
286 lv_style_res_t lv_obj_get_local_style_prop(lv_obj_t * obj, lv_style_prop_t prop, lv_style_value_t *… in lv_obj_get_local_style_prop()
300 bool lv_obj_remove_local_style_prop(lv_obj_t * obj, lv_style_prop_t prop, lv_style_selector_t selec… in lv_obj_remove_local_style_prop()
[all …]
/lvgl-latest/src/extra/layouts/flex/
Dlv_flex.h61 extern lv_style_prop_t LV_STYLE_FLEX_FLOW;
62 extern lv_style_prop_t LV_STYLE_FLEX_MAIN_PLACE;
63 extern lv_style_prop_t LV_STYLE_FLEX_CROSS_PLACE;
64 extern lv_style_prop_t LV_STYLE_FLEX_TRACK_PLACE;
65 extern lv_style_prop_t LV_STYLE_FLEX_GROW;
Dlv_flex.c68 lv_style_prop_t LV_STYLE_FLEX_FLOW;
69 lv_style_prop_t LV_STYLE_FLEX_MAIN_PLACE;
70 lv_style_prop_t LV_STYLE_FLEX_CROSS_PLACE;
71 lv_style_prop_t LV_STYLE_FLEX_TRACK_PLACE;
72 lv_style_prop_t LV_STYLE_FLEX_GROW;
/lvgl-latest/tests/src/test_cases/
Dtest_style.c49 lv_style_prop_t prop = lv_style_register_prop(fake_flag); in test_custom_prop_ids()
86 lv_style_prop_t prop_id; in test_id_meta_overrun()
/lvgl-latest/examples/styles/
Dlv_example_style_10.c9 …static const lv_style_prop_t props[] = {LV_STYLE_BG_COLOR, LV_STYLE_BORDER_COLOR, LV_STYLE_BORDER_… in lv_example_style_10()
/lvgl-latest/examples/widgets/btn/
Dlv_example_btn_3.c10 static lv_style_prop_t props[] = { in lv_example_btn_3()
Dlv_example_btn_2.c49 static lv_style_prop_t props[] = {LV_STYLE_OUTLINE_WIDTH, LV_STYLE_OUTLINE_OPA, 0}; in lv_example_btn_2()
/lvgl-latest/examples/widgets/imgbtn/
Dlv_example_imgbtn_1.c11 static lv_style_prop_t tr_prop[] = {LV_STYLE_TRANSFORM_WIDTH, LV_STYLE_IMG_RECOLOR_OPA, 0}; in lv_example_imgbtn_1()
/lvgl-latest/examples/scroll/
Dlv_example_scroll_4.c34 static const lv_style_prop_t props[] = {LV_STYLE_BG_OPA, LV_STYLE_WIDTH, 0}; in lv_example_scroll_4()
/lvgl-latest/examples/widgets/slider/
Dlv_example_slider_2.c10 static const lv_style_prop_t props[] = {LV_STYLE_BG_COLOR, 0}; in lv_example_slider_2()
/lvgl-latest/src/extra/themes/default/
Dlv_theme_default.c205 static const lv_style_prop_t trans_props[] = { in style_init()
/lvgl-latest/docs/overview/
Dstyle.md273 static const lv_style_prop_t trans_props[] = {