Home
last modified time | relevance | path

Searched refs:LV_STATE_SCROLLED (Results 1 – 9 of 9) sorted by relevance

/lvgl-3.5.0/examples/scroll/
Dlv_example_scroll_4.c65 lv_obj_add_style(obj, &style_scrolled, LV_PART_SCROLLBAR | LV_STATE_SCROLLED); in lv_example_scroll_4()
/lvgl-3.5.0/src/extra/themes/default/
Dlv_theme_default.c705 lv_obj_add_style(obj, &styles->scrollbar_scrolled, LV_PART_SCROLLBAR | LV_STATE_SCROLLED); in theme_apply()
720 … lv_obj_add_style(obj, &styles->scrollbar_scrolled, LV_PART_SCROLLBAR | LV_STATE_SCROLLED); in theme_apply()
737 … lv_obj_add_style(obj, &styles->scrollbar_scrolled, LV_PART_SCROLLBAR | LV_STATE_SCROLLED); in theme_apply()
752 lv_obj_add_style(obj, &styles->scrollbar_scrolled, LV_PART_SCROLLBAR | LV_STATE_SCROLLED); in theme_apply()
875 lv_obj_add_style(obj, &styles->scrollbar_scrolled, LV_PART_SCROLLBAR | LV_STATE_SCROLLED); in theme_apply()
928 lv_obj_add_style(obj, &styles->scrollbar_scrolled, LV_PART_SCROLLBAR | LV_STATE_SCROLLED); in theme_apply()
965 lv_obj_add_style(obj, &styles->scrollbar_scrolled, LV_PART_SCROLLBAR | LV_STATE_SCROLLED); in theme_apply()
1006 lv_obj_add_style(obj, &styles->scrollbar_scrolled, LV_PART_SCROLLBAR | LV_STATE_SCROLLED); in theme_apply()
1052 lv_obj_add_style(obj, &styles->scrollbar_scrolled, LV_PART_SCROLLBAR | LV_STATE_SCROLLED); in theme_apply()
1077 lv_obj_add_style(obj, &styles->scrollbar_scrolled, LV_PART_SCROLLBAR | LV_STATE_SCROLLED); in theme_apply()
[all …]
/lvgl-3.5.0/src/core/
Dlv_obj.h49 LV_STATE_SCROLLED = 0x0040, enumerator
Dlv_obj.c804 lv_obj_add_state(obj, LV_STATE_SCROLLED); in lv_obj_event()
807 lv_obj_clear_state(obj, LV_STATE_SCROLLED); in lv_obj_event()
/lvgl-3.5.0/docs/overview/
Dscroll.md34 An object goes to the `LV_STATE_SCROLLED` state while it's being scrolled. This allows adding diffe…
43 lv_obj_add_style(obj, &style_blue, LV_STATE_SCROLLED | LV_PART_SCROLLBAR);
Dstyle.md27 - `LV_STATE_SCROLLED` (0x0040) Being scrolled
196 - `LV_PART_SCROLLBAR | LV_STATE_SCROLLED`: The scrollbar part when the object is being scrolled
Dobject.md208 - `LV_STATE_SCROLLED` Being scrolled
/lvgl-3.5.0/docs/get-started/
Dquick-overview.md170 - `LV_STATE_SCROLLED` Being scrolled
/lvgl-3.5.0/src/widgets/
Dlv_table.c696 …if(!(obj->state & LV_STATE_SCROLLED) && (obj->state & LV_STATE_PRESSED)) cell_state |= LV_STATE_PR… in draw_main()