Home
last modified time | relevance | path

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

/lvgl-latest/examples/scroll/
Dlv_example_scroll_4.c64 lv_obj_add_style(obj, &style_scrolled, LV_PART_SCROLLBAR | LV_STATE_SCROLLED); in lv_example_scroll_4()
/lvgl-latest/src/themes/default/
Dlv_theme_default.c736 … lv_obj_add_style(obj, &theme->styles.scrollbar_scrolled, LV_PART_SCROLLBAR | LV_STATE_SCROLLED); in theme_apply()
758 … lv_obj_add_style(obj, &theme->styles.scrollbar_scrolled, LV_PART_SCROLLBAR | LV_STATE_SCROLLED); in theme_apply()
775 … lv_obj_add_style(obj, &theme->styles.scrollbar_scrolled, LV_PART_SCROLLBAR | LV_STATE_SCROLLED); in theme_apply()
789 … lv_obj_add_style(obj, &theme->styles.scrollbar_scrolled, LV_PART_SCROLLBAR | LV_STATE_SCROLLED); in theme_apply()
901 … lv_obj_add_style(obj, &theme->styles.scrollbar_scrolled, LV_PART_SCROLLBAR | LV_STATE_SCROLLED); in theme_apply()
954 … lv_obj_add_style(obj, &theme->styles.scrollbar_scrolled, LV_PART_SCROLLBAR | LV_STATE_SCROLLED); in theme_apply()
991 … lv_obj_add_style(obj, &theme->styles.scrollbar_scrolled, LV_PART_SCROLLBAR | LV_STATE_SCROLLED); in theme_apply()
1023 … lv_obj_add_style(obj, &theme->styles.scrollbar_scrolled, LV_PART_SCROLLBAR | LV_STATE_SCROLLED); in theme_apply()
1076 … lv_obj_add_style(obj, &theme->styles.scrollbar_scrolled, LV_PART_SCROLLBAR | LV_STATE_SCROLLED); in theme_apply()
1101 … lv_obj_add_style(obj, &theme->styles.scrollbar_scrolled, LV_PART_SCROLLBAR | LV_STATE_SCROLLED); in theme_apply()
[all …]
/lvgl-latest/env_support/pikascript/
Dpika_lvgl.c32 obj_setInt(self, "SCROLLED", LV_STATE_SCROLLED); in pika_lvgl_STATE___init__()
/lvgl-latest/src/core/
Dlv_obj.h54 LV_STATE_SCROLLED = 0x0040, enumerator
Dlv_obj.c833 lv_obj_add_state(obj, LV_STATE_SCROLLED); in lv_obj_event()
836 lv_obj_remove_state(obj, LV_STATE_SCROLLED); in lv_obj_event()
883 lv_obj_remove_state(obj, LV_STATE_SCROLLED); in lv_obj_event()
/lvgl-latest/src/others/xml/
Dlv_xml_style.c56 else if(lv_streq("scrolled", txt)) return LV_STATE_SCROLLED; in lv_xml_style_state_to_enum()
/lvgl-latest/docs/details/base-widget/
Dscroll.rst55 A Widget goes to the :cpp:enumerator:`LV_STATE_SCROLLED` state while it's being
68 lv_obj_add_style(widget, &style_blue, LV_STATE_SCROLLED | LV_PART_SCROLLBAR);
Dobj.rst463 - :cpp:enumerator:`LV_STATE_SCROLLED`: Being scrolled
/lvgl-latest/tests/src/test_cases/widgets/
Dtest_obj_property.c201 { LV_STATE_SCROLLED, LV_PROPERTY_OBJ_STATE_SCROLLED }, in test_obj_property_state()
/lvgl-latest/docs/details/base-widget/styles/
Dstyle.rst48 - :cpp:enumerator:`LV_STATE_SCROLLED`: (0x0040) Being scrolled
287 - :cpp:expr:`LV_PART_SCROLLBAR | LV_STATE_SCROLLED`: The scrollbar part when the Widget is being sc…
/lvgl-latest/docs/intro/
Dbasics.rst292 - :cpp:enumerator:`LV_STATE_SCROLLED`: Being scrolled
/lvgl-latest/src/widgets/table/
Dlv_table.c788 …if(!(obj->state & LV_STATE_SCROLLED) && (obj->state & LV_STATE_PRESSED)) cell_state |= LV_STATE_PR… in draw_main()