Searched refs:LV_EVENT_PRESS_LOST (Results 1 – 15 of 15) sorted by relevance
/lvgl-latest/src/misc/ |
D | lv_event.h | 40 …LV_EVENT_PRESS_LOST, /**< Widget is still being pressed but slid cursor/finger off Widget… enumerator
|
/lvgl-latest/tests/src/test_cases/widgets/ |
D | test_btnmatrix.c | 423 lv_obj_add_event_cb(btnm, event_handler, LV_EVENT_PRESS_LOST, NULL); in test_button_matrix_press_lost_event_works() 425 exp_evt_code = LV_EVENT_PRESS_LOST; in test_button_matrix_press_lost_event_works() 426 lv_obj_send_event(btnm, LV_EVENT_PRESS_LOST, NULL); in test_button_matrix_press_lost_event_works()
|
/lvgl-latest/env_support/pikascript/ |
D | pika_lvgl.c | 75 obj_setInt(self, "PRESS_LOST", LV_EVENT_PRESS_LOST); in pika_lvgl_EVENT___init__()
|
/lvgl-latest/src/widgets/imagebutton/ |
D | lv_imagebutton.c | 166 if(code == LV_EVENT_PRESSED || code == LV_EVENT_RELEASED || code == LV_EVENT_PRESS_LOST) { in lv_imagebutton_event()
|
/lvgl-latest/src/core/ |
D | lv_obj_event.c | 188 e->code == LV_EVENT_PRESS_LOST || in lv_event_get_indev()
|
D | lv_obj.c | 751 else if(code == LV_EVENT_PRESS_LOST) { in lv_obj_event()
|
/lvgl-latest/src/others/gridnav/ |
D | lv_gridnav.c | 277 else if(code == LV_EVENT_PRESSED || code == LV_EVENT_PRESSING || code == LV_EVENT_PRESS_LOST || in gridnav_event_cb()
|
/lvgl-latest/src/widgets/textarea/ |
D | lv_textarea.c | 1020 else if(code == LV_EVENT_PRESSED || code == LV_EVENT_PRESSING || code == LV_EVENT_PRESS_LOST || in lv_textarea_event() 1313 … else if(ta->text_sel_in_prog && (code == LV_EVENT_PRESS_LOST || code == LV_EVENT_RELEASED)) { in update_cursor_position_on_click() 1347 if(code == LV_EVENT_PRESS_LOST || code == LV_EVENT_RELEASED) { in update_cursor_position_on_click()
|
/lvgl-latest/src/widgets/slider/ |
D | lv_slider.c | 270 else if(code == LV_EVENT_RELEASED || code == LV_EVENT_PRESS_LOST) { in lv_slider_event()
|
/lvgl-latest/docs/details/base-widget/ |
D | event.rst | 123 - :cpp:enumerator:`LV_EVENT_PRESS_LOST`: Widget is still being pressed but slid cursor/finger off …
|
D | obj.rst | 548 - :cpp:enumerator:`LV_EVENT_PRESS_LOST` Widget is still being pressed but slid cursor/fi…
|
/lvgl-latest/src/indev/ |
D | lv_indev.c | 1230 lv_obj_send_event(last_obj, LV_EVENT_PRESS_LOST, indev_act); in indev_proc_press() 1369 lv_obj_send_event(indev->pointer.act_obj, LV_EVENT_PRESS_LOST, indev_act); in indev_proc_release()
|
/lvgl-latest/src/widgets/roller/ |
D | lv_roller.c | 403 else if(code == LV_EVENT_RELEASED || code == LV_EVENT_PRESS_LOST) { in lv_roller_event()
|
/lvgl-latest/src/widgets/buttonmatrix/ |
D | lv_buttonmatrix.c | 512 else if(code == LV_EVENT_PRESS_LOST) { in lv_buttonmatrix_event()
|
/lvgl-latest/src/widgets/arc/ |
D | lv_arc.c | 603 else if(code == LV_EVENT_RELEASED || code == LV_EVENT_PRESS_LOST) { in lv_arc_event()
|