Searched refs:LV_EVENT_PRESSED (Results 1 – 24 of 24) sorted by relevance
/lvgl-latest/examples/event/ |
D | lv_example_event_2.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/docs/widgets/core/ |
D | btn.md | 26 Note that the state of `LV_KEY_ENTER` is translated to `LV_EVENT_PRESSED/PRESSING/RELEASED` etc.
|
D | checkbox.md | 52 Note that, as usual, the state of `LV_KEY_ENTER` is translated to `LV_EVENT_PRESSED/PRESSING/RELEAS…
|
D | table.md | 67 Note that, as usual, the state of `LV_KEY_ENTER` is translated to `LV_EVENT_PRESSED/PRESSING/RELEAS…
|
/lvgl-latest/src/core/ |
D | lv_event.h | 36 LV_EVENT_PRESSED, /**< The object has been pressed*/ enumerator
|
D | lv_indev.c | 451 if(!dis) lv_event_send(indev_obj_act, LV_EVENT_PRESSED, indev_act); in indev_keypad_proc() 588 lv_event_send(indev_obj_act, LV_EVENT_PRESSED, indev_act); in indev_encoder_proc() 886 lv_event_send(indev_obj_act, LV_EVENT_PRESSED, indev_act); in indev_proc_press()
|
D | lv_event.c | 263 if(e->code == LV_EVENT_PRESSED || in lv_event_get_indev()
|
D | lv_obj.c | 730 if(code == LV_EVENT_PRESSED) { in lv_obj_event()
|
/lvgl-latest/tests/src/test_cases/ |
D | test_arc.c | 169 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()
|
/lvgl-latest/src/widgets/ |
D | lv_textarea.c | 900 else if(code == LV_EVENT_PRESSED || code == LV_EVENT_PRESSING || code == LV_EVENT_PRESS_LOST || in lv_textarea_event() 1180 if(!ta->text_sel_in_prog && !click_outside_label && code == LV_EVENT_PRESSED) { in update_cursor_position_on_click() 1197 …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() 1242 if(code == LV_EVENT_PRESSED) lv_textarea_set_cursor_pos(obj, char_id_at_click); in update_cursor_position_on_click()
|
D | lv_slider.c | 128 else if(code == LV_EVENT_PRESSED) { in lv_slider_event()
|
D | lv_bar.c | 540 else if(code == LV_EVENT_PRESSED || code == LV_EVENT_RELEASED) { in lv_bar_event()
|
D | lv_roller.c | 340 else if(code == LV_EVENT_PRESSED) { in lv_roller_event()
|
D | lv_btnmatrix.c | 432 else if(code == LV_EVENT_PRESSED) { in lv_btnmatrix_event()
|
D | lv_dropdown.c | 765 else if(code == LV_EVENT_PRESSED) { in lv_dropdown_list_event()
|
D | lv_table.c | 576 else if(code == LV_EVENT_PRESSED || code == LV_EVENT_PRESSING) { in lv_table_event()
|
/lvgl-latest/docs/overview/ |
D | event.md | 31 lv_obj_add_event_cb(obj, my_event_cb_2, LV_EVENT_PRESSED, NULL); 69 - `LV_EVENT_PRESSED` An object has been pressed
|
D | indev.md | 88 - **LV_KEY_ENTER** Triggers `LV_EVENT_PRESSED/CLICKED/LONG_PRESSED` etc. events
|
/lvgl-latest/src/extra/widgets/imgbtn/ |
D | lv_imgbtn.c | 183 if(code == LV_EVENT_PRESSED || code == LV_EVENT_RELEASED || code == LV_EVENT_PRESS_LOST) { in lv_imgbtn_event()
|
/lvgl-latest/src/extra/others/gridnav/ |
D | lv_gridnav.c | 253 else if(code == LV_EVENT_PRESSED || code == LV_EVENT_PRESSING || code == LV_EVENT_PRESS_LOST || in gridnav_event_cb()
|
/lvgl-latest/src/extra/widgets/colorwheel/ |
D | lv_colorwheel.c | 436 else if(code == LV_EVENT_PRESSED) { in lv_colorwheel_event()
|
/lvgl-latest/demos/widgets/ |
D | lv_demo_widgets.c | 1334 if(code == LV_EVENT_PRESSED || code == LV_EVENT_RELEASED) { in chart_event_cb()
|
/lvgl-latest/src/extra/widgets/chart/ |
D | lv_chart.c | 715 if(code == LV_EVENT_PRESSED) { in lv_chart_event()
|