Home
last modified time | relevance | path

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

/lvgl-latest/examples/widgets/textarea/
Dlv_example_textarea_1.c18 else if(lv_strcmp(txt, LV_SYMBOL_NEW_LINE) == 0) lv_obj_send_event(ta, LV_EVENT_READY, NULL); in btnm_event_handler()
28 lv_obj_add_event_cb(ta, textarea_event_handler, LV_EVENT_READY, ta); in lv_example_textarea_1()
Dlv_example_textarea_2.c61 else if(code == LV_EVENT_READY) { in ta_event_cb()
/lvgl-latest/examples/others/ime/
Dlv_example_ime_pinyin_2.c16 else if(code == LV_EVENT_READY) { in ta_event_cb()
/lvgl-latest/src/libs/rlottie/
Dlv_rlottie.c211 lv_obj_send_event(obj, LV_EVENT_READY, NULL); in next_frame_task_cb()
224 lv_obj_send_event(obj, LV_EVENT_READY, NULL); in next_frame_task_cb()
/lvgl-latest/src/misc/
Dlv_event.h79 LV_EVENT_READY, /**< A process has finished */ enumerator
/lvgl-latest/docs/details/libs/
Dffmpeg.rst44 - :cpp:enumerator:`LV_EVENT_READY` Sent when playback is complete and auto-restart is not enabled.
Drlottie.rst128 If you don't enable looping, a :cpp:enumerator:`LV_EVENT_READY` is sent when the
/lvgl-latest/src/widgets/keyboard/
Dlv_keyboard.c358 lv_result_t res = lv_obj_send_event(obj, LV_EVENT_READY, NULL); in lv_keyboard_def_event_cb()
362 res = lv_obj_send_event(keyboard->ta, LV_EVENT_READY, NULL); in lv_keyboard_def_event_cb()
374 lv_result_t res = lv_obj_send_event(keyboard->ta, LV_EVENT_READY, NULL); in lv_keyboard_def_event_cb()
/lvgl-latest/examples/others/observer/
Dlv_example_observer_2.c103 lv_obj_add_event_cb(ta, textarea_event_cb, LV_EVENT_READY, NULL); in ui_init()
/lvgl-latest/examples/others/file_explorer/
Dlv_example_file_explorer_3.c56 else if(code == LV_EVENT_READY) { in file_explorer_event_handler()
/lvgl-latest/docs/details/widgets/
Dkeyboard.rst87 - :c:macro:`LV_SYMBOL_OK` Send :cpp:enumerator:`LV_EVENT_READY` to the assigned Text Area.
107 - :cpp:enumerator:`LV_EVENT_READY`: The *Ok* button was clicked.
Ddropdown.rst143 - :cpp:enumerator:`LV_EVENT_READY` Sent when list is opened.
Dtextarea.rst233 - :cpp:enumerator:`LV_EVENT_READY` Sent when :cpp:enumerator:`LV_KEY_ENTER` is
/lvgl-latest/demos/keypad_encoder/
Dlv_demo_keypad_encoder.c211 if(code == LV_EVENT_READY || code == LV_EVENT_CANCEL) { in ta_event_cb()
/lvgl-latest/src/libs/gif/
Dlv_gif.c210 lv_result_t res = lv_obj_send_event(obj, LV_EVENT_READY, NULL); in next_frame_task_cb()
/lvgl-latest/env_support/pikascript/
Dpika_lvgl.c103 obj_setInt(self, "READY", LV_EVENT_READY); in pika_lvgl_EVENT___init__()
/lvgl-latest/docs/details/other-components/
Dfile_explorer.rst174 - :cpp:enumerator:`LV_EVENT_READY` Sent when a directory is opened, which can happen:
/lvgl-latest/src/others/file_explorer/
Dlv_file_explorer.c617 lv_obj_send_event(obj, LV_EVENT_READY, NULL); in show_dir()
/lvgl-latest/src/libs/ffmpeg/
Dlv_ffmpeg.c908 lv_obj_send_event((lv_obj_t *)player, LV_EVENT_READY, NULL); in lv_ffmpeg_player_frame_update_cb()
/lvgl-latest/docs/details/base-widget/
Devent.rst165 - :cpp:enumerator:`LV_EVENT_READY`: A process has finished
/lvgl-latest/src/widgets/dropdown/
Dlv_dropdown.c527 lv_obj_send_event(dropdown_obj, LV_EVENT_READY, NULL); in lv_dropdown_open()
/lvgl-latest/src/widgets/textarea/
Dlv_textarea.c1015 lv_obj_send_event(obj, LV_EVENT_READY, NULL); in lv_textarea_event()
/lvgl-latest/demos/widgets/
Dlv_demo_widgets.c1305 else if(code == LV_EVENT_READY || code == LV_EVENT_CANCEL) { in ta_event_cb()