Home
last modified time | relevance | path

Searched refs:LV_EVENT_LONG_PRESSED_REPEAT (Results 1 – 11 of 11) sorted by relevance

/lvgl-latest/examples/widgets/spinbox/
Dlv_example_spinbox_1.c9 if(code == LV_EVENT_SHORT_CLICKED || code == LV_EVENT_LONG_PRESSED_REPEAT) { in lv_spinbox_increment_event_cb()
17 if(code == LV_EVENT_SHORT_CLICKED || code == LV_EVENT_LONG_PRESSED_REPEAT) { in lv_spinbox_decrement_event_cb()
/lvgl-latest/examples/widgets/list/
Dlv_example_list_2.c51 if((code == LV_EVENT_CLICKED) || (code == LV_EVENT_LONG_PRESSED_REPEAT)) { in event_handler_up()
63 if((code == LV_EVENT_CLICKED) || (code == LV_EVENT_LONG_PRESSED_REPEAT)) { in event_handler_center()
78 if((code == LV_EVENT_CLICKED) || (code == LV_EVENT_LONG_PRESSED_REPEAT)) { in event_handler_dn()
101 if((code == LV_EVENT_CLICKED) || (code == LV_EVENT_LONG_PRESSED_REPEAT)) { in event_handler_swap()
/lvgl-latest/examples/event/
Dlv_example_event_2.c19 case LV_EVENT_LONG_PRESSED_REPEAT: in event_cb()
/lvgl-latest/src/core/
Dlv_event.h41LV_EVENT_LONG_PRESSED_REPEAT, /**< Called after `long_press_time` in every `long_press_repeat_time… enumerator
Dlv_indev.c494 lv_event_send(indev_obj_act, LV_EVENT_LONG_PRESSED_REPEAT, indev_act); in indev_keypad_proc()
650 lv_event_send(indev_obj_act, LV_EVENT_LONG_PRESSED_REPEAT, indev_act); in indev_encoder_proc()
937 lv_event_send(indev_obj_act, LV_EVENT_LONG_PRESSED_REPEAT, indev_act); in indev_proc_press()
Dlv_event.c268 e->code == LV_EVENT_LONG_PRESSED_REPEAT || in lv_event_get_indev()
/lvgl-latest/examples/others/msg/
Dlv_example_msg_3.c111 if(code == LV_EVENT_CLICKED || code == LV_EVENT_LONG_PRESSED_REPEAT) { in btn_event_cb()
/lvgl-latest/src/extra/others/gridnav/
Dlv_gridnav.c254 code == LV_EVENT_LONG_PRESSED || code == LV_EVENT_LONG_PRESSED_REPEAT || in gridnav_event_cb()
/lvgl-latest/docs/porting/
Dindev.md175 - `long_press_repeat_time` Interval of sending `LV_EVENT_LONG_PRESSED_REPEAT` (in milliseconds)
/lvgl-latest/docs/overview/
Devent.md74 - `LV_EVENT_LONG_PRESSED_REPEAT` Called after `long_press_time` in every `long_press_repeat_time` …
/lvgl-latest/src/widgets/
Dlv_btnmatrix.c528 else if(code == LV_EVENT_LONG_PRESSED_REPEAT) { in lv_btnmatrix_event()