Home
last modified time | relevance | path

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

/lvgl-latest/examples/scroll/
Dlv_example_scroll_6.c57 lv_obj_add_event_cb(cont, scroll_event_cb, LV_EVENT_SCROLL, NULL); in lv_example_scroll_6()
74 lv_obj_send_event(cont, LV_EVENT_SCROLL, NULL); in lv_example_scroll_6()
Dlv_example_scroll_1.c85 lv_obj_add_event_cb(panel, scroll_update_cb, LV_EVENT_SCROLL, NULL); in lv_example_scroll_1()
Dlv_example_scroll_7.c123 lv_obj_add_event_cb(obj, scroll_cb, LV_EVENT_SCROLL, NULL); in lv_example_scroll_7()
/lvgl-latest/src/misc/
Dlv_event.h52 LV_EVENT_SCROLL, /**< Scrolling */ enumerator
/lvgl-latest/env_support/pikascript/
Dpika_lvgl.c83 obj_setInt(self, "SCROLL", LV_EVENT_SCROLL); in pika_lvgl_EVENT___init__()
/lvgl-latest/demos/high_res/
Dlv_demo_high_res_app_about.c141 lv_obj_add_event_cb(slide_deck_cont, slide_deck_scrolled_cb, LV_EVENT_SCROLL, buttons); in lv_demo_high_res_app_about()
/lvgl-latest/src/core/
Dlv_obj_event.c196 e->code == LV_EVENT_SCROLL || in lv_event_get_indev()
Dlv_obj_scroll.c423 lv_result_t res = lv_obj_send_event(obj, LV_EVENT_SCROLL, NULL); in lv_obj_scroll_by_raw()
/lvgl-latest/docs/details/base-widget/
Dscroll.rst110 - :cpp:enumerator:`LV_EVENT_SCROLL`: Signals that the scrolling position changed;
257 lv_obj_add_event_cb(scr, store_scroll_top_value_event_cb, LV_EVENT_SCROLL, NULL);
Devent.rst135 - :cpp:enumerator:`LV_EVENT_SCROLL`: Scrolling
Dobj.rst560 - :cpp:enumerator:`LV_EVENT_SCROLL` Scrolling
/lvgl-latest/demos/smartwatch/
Dlv_demo_smartwatch.c140 if(event_code == LV_EVENT_SCROLL) { in lv_demo_smartwatch_scroll_event()