Home
last modified time | relevance | path

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

/lvgl-3.5.0/scripts/
Dstyle_api_gen.py7 props = [ variable
481 for p in props:
484 for p in props:
490 for p in props:
496 for p in props:
501 for p in props:
504 for p in props:
510 for p in props:
/lvgl-3.5.0/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() local
14 lv_style_transition_dsc_init(&trans_def, props, lv_anim_path_linear, 100, 200, NULL); in lv_example_style_10()
19 lv_style_transition_dsc_init(&trans_pr, props, lv_anim_path_linear, 500, 0, NULL); in lv_example_style_10()
Dlv_example_style_10.py5 props = [lv.STYLE.BG_COLOR, lv.STYLE.BORDER_COLOR, lv.STYLE.BORDER_WIDTH, 0] variable
11 trans_def.init(props, lv.anim_t.path_linear, 100, 200, None)
17 trans_pr.init(props, lv.anim_t.path_linear, 500, 0, None)
/lvgl-3.5.0/examples/widgets/btn/
Dlv_example_btn_3.c10 static lv_style_prop_t props[] = { in lv_example_btn_3() local
17 … lv_style_transition_dsc_init(&transition_dsc_def, props, lv_anim_path_overshoot, 250, 100, NULL); in lv_example_btn_3()
22 lv_style_transition_dsc_init(&transition_dsc_pr, props, lv_anim_path_ease_in_out, 250, 0, NULL); in lv_example_btn_3()
Dlv_example_btn_3.py6 props = [lv.STYLE.TRANSFORM_WIDTH, lv.STYLE.TRANSFORM_HEIGHT, lv.STYLE.TEXT_LETTER_SPACE, 0] variable
11 transition_dsc_def.init(props, lv.anim_t.path_overshoot, 250, 100, None)
16 transition_dsc_pr.init(props, lv.anim_t.path_ease_in_out, 250, 0, None)
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() local
50 lv_style_transition_dsc_init(&trans, props, lv_anim_path_linear, 300, 0, NULL); in lv_example_btn_2()
Dlv_example_btn_2.py45 props = [lv.STYLE.OUTLINE_WIDTH, lv.STYLE.OUTLINE_OPA, 0] variable
46 trans.init(props, lv.anim_t.path_linear, 300, 0, None)
/lvgl-3.5.0/src/misc/
Dlv_style.c297 void lv_style_transition_dsc_init(lv_style_transition_dsc_t * tr, const lv_style_prop_t props[], in lv_style_transition_dsc_init() argument
301 tr->props = props; in lv_style_transition_dsc_init()
427 uint16_t * props = (uint16_t *)tmp; in lv_style_set_prop_internal() local
430 if(LV_STYLE_PROP_ID_MASK(props[i]) == prop_id) { in lv_style_set_prop_internal()
432 value_adjustment_helper(prop_and_meta, value, &props[i], &values[i]); in lv_style_set_prop_internal()
443 props = (uint16_t *)tmp; in lv_style_set_prop_internal()
446 props[i + sizeof(lv_style_value_t) / sizeof(uint16_t)] = props[i]; in lv_style_set_prop_internal()
452 props = (uint16_t *)tmp; in lv_style_set_prop_internal()
456 …value_adjustment_helper(prop_and_meta, value, &props[style->prop_cnt - 1], &values[style->prop_cnt… in lv_style_set_prop_internal()
471 uint16_t * props = (uint16_t *)tmp; in lv_style_set_prop_internal() local
[all …]
Dlv_style.h298 const lv_style_prop_t * props; /**< An array with the properties to animate.*/ member
428 void lv_style_transition_dsc_init(lv_style_transition_dsc_t * tr, const lv_style_prop_t props[],
471 uint16_t * props = (uint16_t *)tmp; in lv_style_get_prop_inlined() local
474 lv_style_prop_t prop_id = LV_STYLE_PROP_ID_MASK(props[i]); in lv_style_get_prop_inlined()
476 if(props[i] & LV_STYLE_PROP_META_INHERIT) in lv_style_get_prop_inlined()
478 if(props[i] & LV_STYLE_PROP_META_INITIAL) in lv_style_get_prop_inlined()
/lvgl-3.5.0/examples/scroll/
Dlv_example_scroll_4.c36 static const lv_style_prop_t props[] = {LV_STYLE_BG_OPA, LV_STYLE_WIDTH, 0}; in lv_example_scroll_4() local
38 lv_style_transition_dsc_init(&trans, props, lv_anim_path_linear, 200, 0, NULL); in lv_example_scroll_4()
Dlv_example_scroll_4.py32 props = [lv.STYLE.BG_OPA, lv.STYLE.WIDTH, 0] variable
34 trans.init(props, lv.anim_t.path_linear, 200, 0, None)
/lvgl-3.5.0/examples/widgets/slider/
Dlv_example_slider_2.c12 static const lv_style_prop_t props[] = {LV_STYLE_BG_COLOR, 0}; in lv_example_slider_2() local
14 lv_style_transition_dsc_init(&transition_dsc, props, lv_anim_path_linear, 300, 0, NULL); in lv_example_slider_2()
Dlv_example_slider_2.py5 props = [lv.STYLE.BG_COLOR, 0] variable
7 transition_dsc.init(props, lv.anim_t.path_linear, 300, 0, None)
/lvgl-3.5.0/docs/overview/
Dindex.md13 style-props
Dstyle.md243 For the full list of style properties click [here](/overview/style-props).
/lvgl-3.5.0/src/core/
Dlv_obj.c886 for(j = 0; tr->props[j] != 0 && tsi < STYLE_TRANSITION_MAX; j++) { in lv_obj_set_state()
892 … if(ts[t].prop == tr->props[j] && part_ts == part_act && state_ts >= state_act) break; in lv_obj_set_state()
900 ts[tsi].prop = tr->props[j]; in lv_obj_set_state()
/lvgl-3.5.0/docs/porting/
Dgpu.md30 … name and meaning of the [Style properties](https://docs.lvgl.io/master/overview/style-props.html).