Searched refs:LV_EVENT_PRESSING (Results 1 – 17 of 17) sorted by relevance
/lvgl-latest/examples/widgets/obj/ |
D | lv_example_obj_2.c | 27 lv_obj_add_event_cb(obj, drag_event_handler, LV_EVENT_PRESSING, NULL); in lv_example_obj_2()
|
/lvgl-latest/src/misc/ |
D | lv_event.h | 39 LV_EVENT_PRESSING, /**< Widget is being pressed (sent continuously while pressing)*/ enumerator
|
/lvgl-latest/tests/src/test_cases/widgets/ |
D | test_btnmatrix.c | 389 lv_obj_add_event_cb(btnm, event_handler, LV_EVENT_PRESSING, NULL); in test_button_matrix_pressing_event_works() 391 exp_evt_code = LV_EVENT_PRESSING; in test_button_matrix_pressing_event_works() 396 lv_obj_send_event(btnm, LV_EVENT_PRESSING, lv_test_mouse_indev); in test_button_matrix_pressing_event_works()
|
/lvgl-latest/docs/details/widgets/ |
D | button.rst | 59 :cpp:enumerator:`LV_EVENT_PRESSED`, :cpp:enumerator:`LV_EVENT_PRESSING`
|
/lvgl-latest/examples/others/gestures/ |
D | lv_example_gestures.c | 97 lv_obj_add_event_cb(label, label_move, LV_EVENT_PRESSING, label); in lv_example_gestures()
|
/lvgl-latest/env_support/pikascript/ |
D | pika_lvgl.c | 74 obj_setInt(self, "PRESSING", LV_EVENT_PRESSING); in pika_lvgl_EVENT___init__()
|
/lvgl-latest/src/core/ |
D | lv_obj_event.c | 187 e->code == LV_EVENT_PRESSING || in lv_event_get_indev()
|
/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/slider/ |
D | lv_slider.c | 267 else if(code == LV_EVENT_PRESSING) { in lv_slider_event()
|
/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() 1309 else if(ta->text_sel_in_prog && code == LV_EVENT_PRESSING) { in update_cursor_position_on_click()
|
/lvgl-latest/docs/details/base-widget/ |
D | event.rst | 122 - :cpp:enumerator:`LV_EVENT_PRESSING`: Widget is being pressed (called continuously while pressing)
|
D | obj.rst | 547 - :cpp:enumerator:`LV_EVENT_PRESSING` Widget is being pressed (sent continuously while…
|
/lvgl-latest/src/indev/ |
D | lv_indev.c | 828 if(send_event(LV_EVENT_PRESSING, indev_act) == LV_RESULT_INVALID) return; in indev_keypad_proc() 1298 if(send_event(LV_EVENT_PRESSING, indev_act) == LV_RESULT_INVALID) return; in indev_proc_press()
|
/lvgl-latest/src/widgets/roller/ |
D | lv_roller.c | 390 else if(code == LV_EVENT_PRESSING) { in lv_roller_event()
|
/lvgl-latest/src/widgets/buttonmatrix/ |
D | lv_buttonmatrix.c | 458 else if(code == LV_EVENT_PRESSING) { in lv_buttonmatrix_event()
|
/lvgl-latest/src/widgets/arc/ |
D | lv_arc.c | 456 if(code == LV_EVENT_PRESSING) { in lv_arc_event()
|
/lvgl-latest/src/widgets/table/ |
D | lv_table.c | 581 else if(code == LV_EVENT_PRESSED || code == LV_EVENT_PRESSING) { in lv_table_event()
|