Home
last modified time | relevance | path

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

/lvgl-latest/src/misc/
Dlv_style.h352 const lv_style_prop_t * props; /**< An array with the properties to animate.*/
363 lv_style_prop_t prop;
428 lv_style_prop_t lv_style_register_prop(uint8_t flag);
433 lv_style_prop_t lv_style_get_num_custom_props(void);
441 bool lv_style_remove_prop(lv_style_t * style, lv_style_prop_t prop);
451 void lv_style_set_prop(lv_style_t * style, lv_style_prop_t prop, lv_style_value_t value);
462 lv_style_res_t lv_style_get_prop(const lv_style_t * style, lv_style_prop_t prop, lv_style_value_t *…
480 void lv_style_transition_dsc_init(lv_style_transition_dsc_t * tr, const lv_style_prop_t props[],
488 lv_style_value_t lv_style_prop_get_default(lv_style_prop_t prop);
500 static inline lv_style_res_t lv_style_get_prop_inlined(const lv_style_t * style, lv_style_prop_t pr… in lv_style_get_prop_inlined()
[all …]
Dlv_style.c35 const lv_style_prop_t lv_style_const_prop_id_inv = LV_STYLE_PROP_INV;
201 lv_style_prop_t lv_style_register_prop(uint8_t flag) in lv_style_register_prop()
237 lv_style_prop_t lv_style_get_num_custom_props(void) in lv_style_get_num_custom_props()
242 bool lv_style_remove_prop(lv_style_t * style, lv_style_prop_t prop) in lv_style_remove_prop()
255 …uint8_t * tmp = (lv_style_prop_t *)style->values_and_props + style->prop_cnt * sizeof(lv_style_val… in lv_style_remove_prop()
262 … size_t size = (style->prop_cnt - 1) * (sizeof(lv_style_value_t) + sizeof(lv_style_prop_t)); in lv_style_remove_prop()
295 void lv_style_set_prop(lv_style_t * style, lv_style_prop_t prop, lv_style_value_t value) in lv_style_set_prop()
306 lv_style_prop_t * props; in lv_style_set_prop()
310 … props = (lv_style_prop_t *)style->values_and_props + style->prop_cnt * sizeof(lv_style_value_t); in lv_style_set_prop()
321 size_t size = (style->prop_cnt + 1) * (sizeof(lv_style_value_t) + sizeof(lv_style_prop_t)); in lv_style_set_prop()
[all …]
Dlv_types.h96 typedef uint8_t lv_style_prop_t; typedef
/lvgl-latest/src/core/
Dlv_obj_style.h111 void lv_obj_refresh_style(lv_obj_t * obj, lv_part_t part, lv_style_prop_t prop);
130 lv_style_value_t lv_obj_get_style_prop(const lv_obj_t * obj, lv_part_t part, lv_style_prop_t prop);
139 bool lv_obj_has_style_prop(const lv_obj_t * obj, lv_style_selector_t selector, lv_style_prop_t prop…
148 void lv_obj_set_local_style_prop(lv_obj_t * obj, lv_style_prop_t prop, lv_style_value_t value,
151 lv_style_res_t lv_obj_get_local_style_prop(lv_obj_t * obj, lv_style_prop_t prop, lv_style_value_t *…
161 bool lv_obj_remove_local_style_prop(lv_obj_t * obj, lv_style_prop_t prop, lv_style_selector_t selec…
Dlv_obj_style.c33 lv_style_prop_t prop;
56 …style_res_t get_prop_core(const lv_obj_t * obj, lv_style_selector_t selector, lv_style_prop_t prop,
60 static bool trans_delete(lv_obj_t * obj, lv_part_t part, lv_style_prop_t prop, trans_t * tr_limit);
69 …t get_selector_style_prop(const lv_obj_t * obj, lv_style_selector_t selector, lv_style_prop_t prop,
147lv_style_prop_t * props = (lv_style_prop_t *)style->values_and_props + style->prop_cnt * sizeof(lv… in lv_obj_add_style()
207 lv_style_prop_t prop = LV_STYLE_PROP_ANY; in lv_obj_remove_style()
275 void lv_obj_refresh_style(lv_obj_t * obj, lv_style_selector_t selector, lv_style_prop_t prop) in lv_obj_refresh_style()
330 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()
344 bool lv_obj_has_style_prop(const lv_obj_t * obj, lv_style_selector_t selector, lv_style_prop_t prop) in lv_obj_has_style_prop()
357 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()
[all …]
Dlv_obj_style_private.h38 lv_style_prop_t prop;
/lvgl-latest/demos/flex_layout/
Dlv_demo_flex_layout_ctrl_pad.c124 lv_style_prop_t prop = (lv_style_prop_t)(lv_uintptr_t)lv_obj_get_user_data(spinbox); in ctrl_pad_spinbox_event_handler()
Dlv_demo_flex_layout_view.c148 static const lv_style_prop_t prop[] = { in obj_child_node_checked_style_init()
Dlv_demo_flex_layout_view_ctrl_pad.c162 static lv_obj_t * spinbox_ctrl_create(lv_obj_t * par, lv_style_prop_t prop, lv_obj_t ** cont_) in spinbox_ctrl_create()
/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/button/
Dlv_example_button_3.c10 static lv_style_prop_t props[] = { in lv_example_button_3()
Dlv_example_button_2.c49 static lv_style_prop_t props[] = {LV_STYLE_OUTLINE_WIDTH, LV_STYLE_OUTLINE_OPA, 0}; in lv_example_button_2()
/lvgl-latest/examples/widgets/imagebutton/
Dlv_example_imagebutton_1.c11 static lv_style_prop_t tr_prop[] = {LV_STYLE_TRANSFORM_WIDTH, LV_STYLE_IMAGE_RECOLOR_OPA, 0}; in lv_example_imagebutton_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/tests/src/test_cases/
Dtest_style.c51 lv_style_prop_t prop = lv_style_register_prop(fake_flag); in test_custom_prop_ids()
/lvgl-latest/demos/ebike/
Dlv_demo_ebike_home.c366 …static const lv_style_prop_t props[] = {LV_STYLE_BG_OPA, LV_STYLE_TRANSFORM_HEIGHT, LV_STYLE_TRANS… in bullets_create()
/lvgl-latest/docs/details/other-components/
Dobj_property.rst151 Note that :cpp:type:`lv_style_prop_t` (enumerator values beginning with ``LV_PROPERTY_STYLE_...``)
/lvgl-latest/docs/details/base-widget/styles/
Dstyle.rst455 static const lv_style_prop_t trans_props[] = {
/lvgl-latest/src/themes/default/
Dlv_theme_default.c216 static const lv_style_prop_t trans_props[] = { in style_init()