Searched refs:LV_STYLE_WIDTH (Results 1 – 9 of 9) sorted by relevance
/lvgl-3.7.0/examples/scroll/ |
D | lv_example_scroll_4.c | 34 static const lv_style_prop_t props[] = {LV_STYLE_BG_OPA, LV_STYLE_WIDTH, 0}; in lv_example_scroll_4()
|
/lvgl-3.7.0/src/core/ |
D | lv_obj_style.c | 244 if(part == LV_PART_MAIN && (prop == LV_STYLE_WIDTH || prop == LV_STYLE_HEIGHT)) { in lv_obj_get_style_prop() 247 if(prop == LV_STYLE_WIDTH) { in lv_obj_get_style_prop() 257 value_act.num = prop == LV_STYLE_WIDTH ? cls->width_def : cls->height_def; in lv_obj_get_style_prop() 418 else if(lv_style_get_prop(style, LV_STYLE_WIDTH, &v)) layout_diff = true; in _lv_obj_style_state_compare()
|
D | lv_obj_style_gen.c | 8 lv_obj_set_local_style_prop(obj, LV_STYLE_WIDTH, v, selector); in lv_obj_set_style_width()
|
D | lv_obj_style_gen.h | 3 lv_style_value_t v = lv_obj_get_style_prop(obj, part, LV_STYLE_WIDTH); in lv_obj_get_style_width()
|
D | lv_obj_pos.c | 229 res_w = lv_obj_get_local_style_prop(obj, LV_STYLE_WIDTH, &v_w, 0); in lv_obj_set_width()
|
/lvgl-3.7.0/src/misc/ |
D | lv_style.h | 182 LV_STYLE_WIDTH = 1, enumerator
|
D | lv_style.c | 39 [LV_STYLE_WIDTH] = LV_STYLE_PROP_LAYOUT_REFR,
|
D | lv_style_gen.c | 8 lv_style_set_prop(style, LV_STYLE_WIDTH, v); in lv_style_set_width()
|
D | lv_style_gen.h | 89 .prop = LV_STYLE_WIDTH, .value = { .num = (int32_t)val } \
|