Searched refs:LV_STATE_SCROLLED (Results 1 – 12 of 12) sorted by relevance
/lvgl-latest/examples/scroll/ |
D | lv_example_scroll_4.c | 64 lv_obj_add_style(obj, &style_scrolled, LV_PART_SCROLLBAR | LV_STATE_SCROLLED); in lv_example_scroll_4()
|
/lvgl-latest/src/themes/default/ |
D | lv_theme_default.c | 736 … 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/ |
D | pika_lvgl.c | 32 obj_setInt(self, "SCROLLED", LV_STATE_SCROLLED); in pika_lvgl_STATE___init__()
|
/lvgl-latest/src/core/ |
D | lv_obj.h | 54 LV_STATE_SCROLLED = 0x0040, enumerator
|
D | lv_obj.c | 833 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/ |
D | lv_xml_style.c | 56 else if(lv_streq("scrolled", txt)) return LV_STATE_SCROLLED; in lv_xml_style_state_to_enum()
|
/lvgl-latest/docs/details/base-widget/ |
D | scroll.rst | 55 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);
|
D | obj.rst | 463 - :cpp:enumerator:`LV_STATE_SCROLLED`: Being scrolled
|
/lvgl-latest/tests/src/test_cases/widgets/ |
D | test_obj_property.c | 201 { LV_STATE_SCROLLED, LV_PROPERTY_OBJ_STATE_SCROLLED }, in test_obj_property_state()
|
/lvgl-latest/docs/details/base-widget/styles/ |
D | style.rst | 48 - :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/ |
D | basics.rst | 292 - :cpp:enumerator:`LV_STATE_SCROLLED`: Being scrolled
|
/lvgl-latest/src/widgets/table/ |
D | lv_table.c | 788 …if(!(obj->state & LV_STATE_SCROLLED) && (obj->state & LV_STATE_PRESSED)) cell_state |= LV_STATE_PR… in draw_main()
|