Searched refs:LV_EVENT_READY (Results 1 – 18 of 18) sorted by relevance
/lvgl-3.5.0/examples/widgets/textarea/ |
D | lv_example_textarea_1.c | 17 else if(strcmp(txt, LV_SYMBOL_NEW_LINE) == 0) lv_event_send(ta, LV_EVENT_READY, NULL); in btnm_event_handler() 27 lv_obj_add_event_cb(ta, textarea_event_handler, LV_EVENT_READY, ta); in lv_example_textarea_1()
|
D | lv_example_textarea_2.c | 54 else if(code == LV_EVENT_READY) { in ta_event_cb()
|
/lvgl-3.5.0/examples/others/ime/ |
D | lv_example_ime_pinyin_2.c | 16 else if(code == LV_EVENT_READY) { in ta_event_cb()
|
/lvgl-3.5.0/src/extra/widgets/keyboard/ |
D | lv_keyboard.c | 314 lv_res_t res = lv_event_send(obj, LV_EVENT_READY, NULL); in lv_keyboard_def_event_cb() 318 res = lv_event_send(keyboard->ta, LV_EVENT_READY, NULL); in lv_keyboard_def_event_cb() 330 lv_res_t res = lv_event_send(keyboard->ta, LV_EVENT_READY, NULL); in lv_keyboard_def_event_cb()
|
/lvgl-3.5.0/src/extra/libs/rlottie/ |
D | lv_rlottie.c | 247 lv_event_send(obj, LV_EVENT_READY, NULL); in next_frame_task_cb() 260 lv_event_send(obj, LV_EVENT_READY, NULL); in next_frame_task_cb()
|
/lvgl-3.5.0/src/core/ |
D | lv_event.h | 70 LV_EVENT_READY, /**< A process has finished*/ enumerator
|
/lvgl-3.5.0/src/extra/libs/gif/ |
D | lv_gif.c | 143 lv_res_t res = lv_event_send(obj, LV_EVENT_READY, NULL); in next_frame_task_cb()
|
/lvgl-3.5.0/examples/others/msg/ |
D | lv_example_msg_2.c | 93 if(code == LV_EVENT_READY) { in textarea_event_cb()
|
/lvgl-3.5.0/demos/keypad_encoder/ |
D | lv_demo_keypad_encoder.c | 214 if(code == LV_EVENT_READY || code == LV_EVENT_CANCEL) { in ta_event_cb()
|
/lvgl-3.5.0/docs/libs/ |
D | rlottie.md | 90 If you don't enable looping, a `LV_EVENT_READY` is sent when the animation can not make more progre…
|
/lvgl-3.5.0/docs/widgets/extra/ |
D | keyboard.md | 55 - `LV_EVENT_READY` - The *Ok* button is clicked.
|
/lvgl-3.5.0/docs/widgets/core/ |
D | dropdown.md | 77 - `LV_EVENT_READY` Sent when the list is opened
|
D | textarea.md | 95 - `LV_EVENT_READY` Sent when `LV_KEY_ENTER` is pressed (or sent) to a one line text area.
|
/lvgl-3.5.0/docs/overview/ |
D | event.md | 121 - `LV_EVENT_READY` A process has finished
|
/lvgl-3.5.0/src/widgets/ |
D | lv_dropdown.c | 458 lv_event_send(dropdown_obj, LV_EVENT_READY, NULL); in lv_dropdown_open()
|
D | lv_textarea.c | 895 lv_event_send(obj, LV_EVENT_READY, NULL); in lv_textarea_event()
|
/lvgl-3.5.0/demos/widgets/ |
D | lv_demo_widgets.c | 1224 else if(code == LV_EVENT_READY || code == LV_EVENT_CANCEL) { in ta_event_cb()
|
/lvgl-3.5.0/docs/ |
D | CHANGELOG.md | 688 - docs(events) rename LV_EVENT_APPLY to LV_EVENT_READY (#2791) [`bf6837f`](https://github.com/littl… 998 - fix(dropdown) use LV_EVENT_READY/CANCEL on list open/close [`4dd1d56`](https://github.com/lvgl/lv…
|