Home
last modified time | relevance | path

Searched refs:LV_EVENT_PRESSED (Results 1 – 23 of 23) sorted by relevance

/lvgl-3.4.0/examples/event/
Dlv_example_event_2.c10 case LV_EVENT_PRESSED: in event_cb()
/lvgl-3.4.0/examples/others/snapshot/
Dlv_example_snapshot_1.c53 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/
Dbtn.md30 Note that the state of `LV_KEY_ENTER` is translated to `LV_EVENT_PRESSED/PRESSING/RELEASED` etc.
Dcheckbox.md56 Note that, as usual, the state of `LV_KEY_ENTER` is translated to `LV_EVENT_PRESSED/PRESSING/RELEAS…
Dtable.md71 Note that, as usual, the state of `LV_KEY_ENTER` is translated to `LV_EVENT_PRESSED/PRESSING/RELEAS…
/lvgl-3.4.0/src/core/
Dlv_event.h36 LV_EVENT_PRESSED, /**< The object has been pressed*/ enumerator
Dlv_indev.c421 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()
Dlv_event.c269 if(e->code == LV_EVENT_PRESSED || in lv_event_get_indev()
Dlv_obj.c714 if(code == LV_EVENT_PRESSED) { in lv_obj_event()
/lvgl-3.4.0/src/widgets/
Dlv_textarea.c889 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()
Dlv_slider.c127 else if(code == LV_EVENT_PRESSED) { in lv_slider_event()
Dlv_bar.c540 else if(code == LV_EVENT_PRESSED || code == LV_EVENT_RELEASED) { in lv_bar_event()
Dlv_roller.c340 else if(code == LV_EVENT_PRESSED) { in lv_roller_event()
Dlv_table.c499 else if(code == LV_EVENT_PRESSED || code == LV_EVENT_PRESSING) { in lv_table_event()
Dlv_btnmatrix.c417 else if(code == LV_EVENT_PRESSED) { in lv_btnmatrix_event()
Dlv_dropdown.c738 else if(code == LV_EVENT_PRESSED) { in lv_dropdown_list_event()
/lvgl-3.4.0/docs/overview/
Devent.md35 lv_obj_add_event_cb(obj, my_event_cb_2, LV_EVENT_PRESSED, NULL);
73 - `LV_EVENT_PRESSED` An object has been pressed
Dindev.md90 - **LV_KEY_ENTER** Triggers `LV_EVENT_PRESSED/CLICKED/LONG_PRESSED` etc. events
/lvgl-3.4.0/src/extra/widgets/imgbtn/
Dlv_imgbtn.c186 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/
Dlv_gridnav.c231 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/
Dlv_colorwheel.c437 else if(code == LV_EVENT_PRESSED) { in lv_colorwheel_event()
/lvgl-3.4.0/demos/widgets/
Dlv_demo_widgets.c1303 if(code == LV_EVENT_PRESSED || code == LV_EVENT_RELEASED) { in chart_event_cb()
/lvgl-3.4.0/src/extra/widgets/chart/
Dlv_chart.c716 if(code == LV_EVENT_PRESSED) { in lv_chart_event()