/lvgl-latest/tests/src/test_cases/widgets/ |
D | test_arc.c | 170 lv_obj_add_event_cb(arc, dummy_event_cb, LV_EVENT_PRESSED, NULL); in test_arc_click_area_with_adv_hittest() 207 lv_obj_add_event_cb(arc, dummy_event_cb, LV_EVENT_PRESSED, NULL); in test_arc_click_sustained_from_start_to_end_does_not_set_value_to_max() 263 lv_obj_add_event_cb(arc, dummy_event_cb, LV_EVENT_PRESSED, NULL); in test_two_overlapping_arcs_can_be_interacted_independently() 264 lv_obj_add_event_cb(arc2, dummy_event_cb2, LV_EVENT_PRESSED, NULL); in test_two_overlapping_arcs_can_be_interacted_independently()
|
D | test_btnmatrix.c | 304 lv_obj_add_event_cb(btnm, event_handler, LV_EVENT_PRESSED, NULL); in test_button_matrix_pressed_event_works() 306 exp_evt_code = LV_EVENT_PRESSED; in test_button_matrix_pressed_event_works()
|
D | test_roller.c | 190 lv_obj_send_event(overlay, LV_EVENT_PRESSED, NULL); in test_roller_with_overlay_and_bubble_events_enabled()
|
/lvgl-latest/examples/event/ |
D | lv_example_event_button.c | 10 case LV_EVENT_PRESSED: in event_cb()
|
/lvgl-latest/examples/others/snapshot/ |
D | lv_example_snapshot_1.c | 53 lv_obj_add_event_cb(img, event_cb, LV_EVENT_PRESSED, snapshot_obj); in lv_example_snapshot_1()
|
/lvgl-latest/src/misc/ |
D | lv_event.h | 38 LV_EVENT_PRESSED, /**< Widget has been pressed */ enumerator
|
/lvgl-latest/docs/details/widgets/ |
D | button.rst | 59 :cpp:enumerator:`LV_EVENT_PRESSED`, :cpp:enumerator:`LV_EVENT_PRESSING`
|
D | checkbox.rst | 90 ``LV_EVENT_PRESSED/PRESSING/RELEASED`` etc.
|
D | table.rst | 116 ``LV_EVENT_PRESSED/PRESSING/RELEASED`` etc.
|
/lvgl-latest/demos/smartwatch/ |
D | lv_demo_smartwatch_easter_egg.c | 307 if(event_code == LV_EVENT_PRESSED) { in create_screen_event_cb()
|
/lvgl-latest/env_support/pikascript/ |
D | pika_lvgl.c | 73 obj_setInt(self, "PRESSED", LV_EVENT_PRESSED); in pika_lvgl_EVENT___init__()
|
/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() 1302 if(!ta->text_sel_in_prog && !click_outside_label && code == LV_EVENT_PRESSED) { in update_cursor_position_on_click() 1319 …if(ta->text_sel_in_prog || code == LV_EVENT_PRESSED) lv_textarea_set_cursor_pos(obj, char_id_at_cl… in update_cursor_position_on_click() 1364 if(code == LV_EVENT_PRESSED) lv_textarea_set_cursor_pos(obj, char_id_at_click); in update_cursor_position_on_click()
|
/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 | 186 if(e->code == LV_EVENT_PRESSED || in lv_event_get_indev()
|
D | lv_obj.c | 736 if(code == LV_EVENT_PRESSED) { in lv_obj_event()
|
/lvgl-latest/docs/details/base-widget/ |
D | event.rst | 60 lv_obj_add_event_cb(widget, my_event_cb_2, LV_EVENT_PRESSED, NULL); 121 - :cpp:enumerator:`LV_EVENT_PRESSED`: Widget has been pressed
|
/lvgl-latest/src/indev/ |
D | lv_indev.c | 807 if(send_event(LV_EVENT_PRESSED, indev_act) == LV_RESULT_INVALID) return; in indev_keypad_proc() 940 if(send_event(LV_EVENT_PRESSED, indev_act) == LV_RESULT_INVALID) return; in indev_encoder_proc() 1259 if(send_event(LV_EVENT_PRESSED, indev_act) == LV_RESULT_INVALID) return; in indev_proc_press() 1772 if(code == LV_EVENT_PRESSED || in send_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/docs/details/main-components/ |
D | timer.rst | 23 :cpp:enumerator:`LV_EVENT_PRESSED`, etc.
|
D | indev.rst | 338 - :cpp:enumerator:`LV_KEY_ENTER`: Triggers :cpp:enumerator:`LV_EVENT_PRESSED`, :cpp:enumerator:`LV_…
|
/lvgl-latest/src/widgets/slider/ |
D | lv_slider.c | 262 else if(code == LV_EVENT_PRESSED) { in lv_slider_event()
|
/lvgl-latest/src/widgets/bar/ |
D | lv_bar.c | 621 else if(code == LV_EVENT_PRESSED || code == LV_EVENT_RELEASED) { in lv_bar_event()
|
/lvgl-latest/src/widgets/roller/ |
D | lv_roller.c | 384 else if(code == LV_EVENT_PRESSED) { in lv_roller_event()
|
/lvgl-latest/src/widgets/buttonmatrix/ |
D | lv_buttonmatrix.c | 423 else if(code == LV_EVENT_PRESSED) { in lv_buttonmatrix_event()
|
/lvgl-latest/src/widgets/dropdown/ |
D | lv_dropdown.c | 842 else if(code == LV_EVENT_PRESSED) { in lv_dropdown_list_event()
|