Searched refs:LV_EVENT_PRESSED (Results 1 – 23 of 23) sorted by relevance
/lvgl-3.4.0/examples/event/ |
D | lv_example_event_2.c | 10 case LV_EVENT_PRESSED: in event_cb()
|
/lvgl-3.4.0/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-3.4.0/docs/widgets/core/ |
D | btn.md | 30 Note that the state of `LV_KEY_ENTER` is translated to `LV_EVENT_PRESSED/PRESSING/RELEASED` etc.
|
D | checkbox.md | 56 Note that, as usual, the state of `LV_KEY_ENTER` is translated to `LV_EVENT_PRESSED/PRESSING/RELEAS…
|
D | table.md | 71 Note that, as usual, the state of `LV_KEY_ENTER` is translated to `LV_EVENT_PRESSED/PRESSING/RELEAS…
|
/lvgl-3.4.0/src/core/ |
D | lv_event.h | 36 LV_EVENT_PRESSED, /**< The object has been pressed*/ enumerator
|
D | lv_indev.c | 421 lv_event_send(indev_obj_act, LV_EVENT_PRESSED, indev_act); in indev_keypad_proc() 567 lv_event_send(indev_obj_act, LV_EVENT_PRESSED, indev_act); in indev_encoder_proc() 851 lv_event_send(indev_obj_act, LV_EVENT_PRESSED, indev_act); in indev_proc_press()
|
D | lv_event.c | 269 if(e->code == LV_EVENT_PRESSED || in lv_event_get_indev()
|
D | lv_obj.c | 714 if(code == LV_EVENT_PRESSED) { in lv_obj_event()
|
/lvgl-3.4.0/src/widgets/ |
D | lv_textarea.c | 889 else if(code == LV_EVENT_PRESSED || code == LV_EVENT_PRESSING || code == LV_EVENT_PRESS_LOST || in lv_textarea_event() 1187 if(!ta->text_sel_in_prog && !click_outside_label && code == LV_EVENT_PRESSED) { in update_cursor_position_on_click() 1204 …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() 1249 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 | 127 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_table.c | 499 else if(code == LV_EVENT_PRESSED || code == LV_EVENT_PRESSING) { in lv_table_event()
|
D | lv_btnmatrix.c | 417 else if(code == LV_EVENT_PRESSED) { in lv_btnmatrix_event()
|
D | lv_dropdown.c | 738 else if(code == LV_EVENT_PRESSED) { in lv_dropdown_list_event()
|
/lvgl-3.4.0/docs/overview/ |
D | event.md | 35 lv_obj_add_event_cb(obj, my_event_cb_2, LV_EVENT_PRESSED, NULL); 73 - `LV_EVENT_PRESSED` An object has been pressed
|
D | indev.md | 90 - **LV_KEY_ENTER** Triggers `LV_EVENT_PRESSED/CLICKED/LONG_PRESSED` etc. events
|
/lvgl-3.4.0/src/extra/widgets/imgbtn/ |
D | lv_imgbtn.c | 186 if(code == LV_EVENT_PRESSED || code == LV_EVENT_RELEASED || code == LV_EVENT_PRESS_LOST) { in lv_imgbtn_event()
|
/lvgl-3.4.0/src/extra/others/gridnav/ |
D | lv_gridnav.c | 231 else if(code == LV_EVENT_PRESSED || code == LV_EVENT_PRESSING || code == LV_EVENT_PRESS_LOST || in gridnav_event_cb()
|
/lvgl-3.4.0/src/extra/widgets/colorwheel/ |
D | lv_colorwheel.c | 437 else if(code == LV_EVENT_PRESSED) { in lv_colorwheel_event()
|
/lvgl-3.4.0/demos/widgets/ |
D | lv_demo_widgets.c | 1303 if(code == LV_EVENT_PRESSED || code == LV_EVENT_RELEASED) { in chart_event_cb()
|
/lvgl-3.4.0/src/extra/widgets/chart/ |
D | lv_chart.c | 716 if(code == LV_EVENT_PRESSED) { in lv_chart_event()
|