Home
last modified time | relevance | path

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

/lvgl-latest/examples/event/
Dlv_example_event_2.c10 case LV_EVENT_PRESSED: in event_cb()
/lvgl-latest/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-latest/docs/widgets/core/
Dbtn.md26 Note that the state of `LV_KEY_ENTER` is translated to `LV_EVENT_PRESSED/PRESSING/RELEASED` etc.
Dcheckbox.md52 Note that, as usual, the state of `LV_KEY_ENTER` is translated to `LV_EVENT_PRESSED/PRESSING/RELEAS…
Dtable.md67 Note that, as usual, the state of `LV_KEY_ENTER` is translated to `LV_EVENT_PRESSED/PRESSING/RELEAS…
/lvgl-latest/src/core/
Dlv_event.h36 LV_EVENT_PRESSED, /**< The object has been pressed*/ enumerator
Dlv_indev.c451 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()
Dlv_event.c263 if(e->code == LV_EVENT_PRESSED || in lv_event_get_indev()
Dlv_obj.c730 if(code == LV_EVENT_PRESSED) { in lv_obj_event()
/lvgl-latest/tests/src/test_cases/
Dtest_arc.c169 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/
Dlv_textarea.c900 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()
Dlv_slider.c128 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_btnmatrix.c432 else if(code == LV_EVENT_PRESSED) { in lv_btnmatrix_event()
Dlv_dropdown.c765 else if(code == LV_EVENT_PRESSED) { in lv_dropdown_list_event()
Dlv_table.c576 else if(code == LV_EVENT_PRESSED || code == LV_EVENT_PRESSING) { in lv_table_event()
/lvgl-latest/docs/overview/
Devent.md31 lv_obj_add_event_cb(obj, my_event_cb_2, LV_EVENT_PRESSED, NULL);
69 - `LV_EVENT_PRESSED` An object has been pressed
Dindev.md88 - **LV_KEY_ENTER** Triggers `LV_EVENT_PRESSED/CLICKED/LONG_PRESSED` etc. events
/lvgl-latest/src/extra/widgets/imgbtn/
Dlv_imgbtn.c183 if(code == LV_EVENT_PRESSED || code == LV_EVENT_RELEASED || code == LV_EVENT_PRESS_LOST) { in lv_imgbtn_event()
/lvgl-latest/src/extra/others/gridnav/
Dlv_gridnav.c253 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/
Dlv_colorwheel.c436 else if(code == LV_EVENT_PRESSED) { in lv_colorwheel_event()
/lvgl-latest/demos/widgets/
Dlv_demo_widgets.c1334 if(code == LV_EVENT_PRESSED || code == LV_EVENT_RELEASED) { in chart_event_cb()
/lvgl-latest/src/extra/widgets/chart/
Dlv_chart.c715 if(code == LV_EVENT_PRESSED) { in lv_chart_event()