Home
last modified time | relevance | path

Searched refs:LV_KEY_ENTER (Results 1 – 25 of 25) sorted by relevance

/lvgl-latest/tests/src/test_cases/
Dtest_dropdown.c182 lv_test_key_hit(LV_KEY_ENTER); in test_dropdown_keypad()
188 lv_test_key_hit(LV_KEY_ENTER); in test_dropdown_keypad()
196 lv_test_key_hit(LV_KEY_ENTER); in test_dropdown_keypad()
204 lv_test_key_hit(LV_KEY_ENTER); in test_dropdown_keypad()
212 lv_test_key_hit(LV_KEY_ENTER); in test_dropdown_keypad()
220 lv_test_key_hit(LV_KEY_ENTER); in test_dropdown_keypad()
229 lv_test_key_hit(LV_KEY_ENTER); in test_dropdown_keypad()
243 lv_test_key_hit(LV_KEY_ENTER); in test_dropdown_keypad()
248 lv_test_key_hit(LV_KEY_ENTER); in test_dropdown_keypad()
255 lv_test_key_hit(LV_KEY_ENTER); in test_dropdown_keypad()
Dtest_slider.c80 char key = LV_KEY_ENTER; in test_slider_event_invalid_key_should_not_change_values()
/lvgl-latest/docs/overview/
Dindev.md88 - **LV_KEY_ENTER** Triggers `LV_EVENT_PRESSED/CLICKED/LONG_PRESSED` etc. events
99 The most important special keys are `LV_KEY_NEXT/PREV`, `LV_KEY_ENTER` and `LV_KEY_UP/DOWN/LEFT/RIG…
104 With an encoder you should use only `LV_KEY_LEFT`, `LV_KEY_RIGHT`, and `LV_KEY_ENTER`.
111 Pressing `LV_KEY_ENTER` will change to *Edit* mode.
114 Depending on the object's type, a short or long press of `LV_KEY_ENTER` changes back to *Navigate* …
/lvgl-latest/docs/widgets/core/
Dcheckbox.md50 - `LV_KEY_ENTER` Clicks the checkbox and toggles it
52 Note that, as usual, the state of `LV_KEY_ENTER` is translated to `LV_EVENT_PRESSED/PRESSING/RELEAS…
Dbtn.md26 Note that the state of `LV_KEY_ENTER` is translated to `LV_EVENT_PRESSED/PRESSING/RELEASED` etc.
Dswitch.md34 - `LV_KEY_ENTER` Toggles the switch
Dtable.md67 Note that, as usual, the state of `LV_KEY_ENTER` is translated to `LV_EVENT_PRESSED/PRESSING/RELEAS…
Dtextarea.md95 - `LV_EVENT_READY` Sent when `LV_KEY_ENTER` is pressed (or sent) to a one line text area.
Dbtnmatrix.md76 - `LV_KEY_ENTER` To press/release the selected button
/lvgl-latest/src/core/
Dlv_indev.c446 if(data->key == LV_KEY_ENTER) { in indev_keypad_proc()
448 lv_group_send_data(g, LV_KEY_ENTER); in indev_keypad_proc()
472 if(data->key == LV_KEY_ENTER) { in indev_keypad_proc()
480 if(data->key == LV_KEY_ENTER) { in indev_keypad_proc()
493 if(data->key == LV_KEY_ENTER) { in indev_keypad_proc()
521 if(data->key == LV_KEY_ENTER) { in indev_keypad_proc()
584 if(data->key == LV_KEY_ENTER) { in indev_encoder_proc()
622 if(data->key == LV_KEY_ENTER) { in indev_encoder_proc()
649 if(data->key == LV_KEY_ENTER) { in indev_encoder_proc()
673 if(data->key == LV_KEY_ENTER) { in indev_encoder_proc()
[all …]
Dlv_group.h37 LV_KEY_ENTER = 10, /*0x0A, '\n'*/ enumerator
Dlv_obj.c766 if(c != LV_KEY_ENTER) { in lv_obj_event()
/lvgl-latest/examples/others/gridnav/
Dlv_example_gridnav_3.c8 if(k == LV_KEY_ENTER) { in cont_sub_event_cb()
/lvgl-latest/src/hal/
Dlv_hal_indev.c181 data->key = LV_KEY_ENTER; in _lv_indev_read()
/lvgl-latest/docs/widgets/extra/
Dcolorwheel.md36 - `LV_KEY_ENTER` A long press will show the next mode. Double click to reset the current parameter.
Dimgbtn.md46 - `LV_KEY_ENTER` Clicks the button
Dspinbox.md41 - `LV_KEY_ENTER` With *Encoder* got the next digit. Jump to the first after the last.
Dkeyboard.md71 - `LV_KEY_ENTER` To press/release the selected button.
Dcalendar.md62 - `LV_KEY_ENTER` To press/release the selected date
/lvgl-latest/examples/porting/
Dlv_port_indev_template.c305 act_key = LV_KEY_ENTER;
/lvgl-latest/src/extra/others/monkey/
Dlv_monkey.c41 LV_KEY_ENTER,
/lvgl-latest/docs/porting/
Dindev.md112 - `LV_KEY_ENTER` will simulate press or pushing of the encoder button
127 /* use LV_KEY_ENTER for encoder press */
/lvgl-latest/src/widgets/
Dlv_dropdown.c729 else if(c == LV_KEY_ENTER) { in lv_dropdown_event()
Dlv_textarea.c894 else if(c == LV_KEY_ENTER && lv_textarea_get_one_line(obj)) in lv_textarea_event()
/lvgl-latest/docs/
DCHANGELOG.md1145 - fix(dropdown) handle LV_KEY_ENTER [`8a50edd`](https://github.com/lvgl/lvgl/commit/8a50edd0689c713…