Searched refs:LV_EVENT_DEFOCUSED (Results 1 – 15 of 15) sorted by relevance
/lvgl-latest/src/core/ |
D | lv_group.c | 79 lv_obj_send_event(*group->obj_focus, LV_EVENT_DEFOCUSED, get_indev(group)); in lv_group_delete() 175 lv_obj_send_event(*g->obj_focus, LV_EVENT_DEFOCUSED, get_indev(g)); in lv_group_remove_obj() 209 lv_obj_send_event(*group->obj_focus, LV_EVENT_DEFOCUSED, get_indev(group)); in lv_group_remove_all_objs() 238 … lv_result_t res = lv_obj_send_event(*g->obj_focus, LV_EVENT_DEFOCUSED, get_indev(g)); in lv_group_focus_obj() 490 … lv_result_t res = lv_obj_send_event(*group->obj_focus, LV_EVENT_DEFOCUSED, get_indev(group)); in focus_next_core()
|
D | lv_obj_event.c | 200 e->code == LV_EVENT_DEFOCUSED || in lv_event_get_indev()
|
D | lv_obj.c | 844 else if(code == LV_EVENT_DEFOCUSED) { in lv_obj_event()
|
/lvgl-latest/examples/widgets/keyboard/ |
D | lv_example_keyboard_1.c | 14 if(code == LV_EVENT_DEFOCUSED) { in ta_event_cb()
|
/lvgl-latest/src/misc/ |
D | lv_event.h | 57 LV_EVENT_DEFOCUSED, /**< Widget's focus has been lost */ enumerator
|
/lvgl-latest/tests/src/test_cases/widgets/ |
D | test_btnmatrix.c | 437 lv_obj_add_event_cb(btnm, event_handler, LV_EVENT_DEFOCUSED, NULL); in test_button_matrix_defocused_event_works() 439 exp_evt_code = LV_EVENT_DEFOCUSED; in test_button_matrix_defocused_event_works() 443 lv_obj_send_event(btnm, LV_EVENT_DEFOCUSED, NULL); in test_button_matrix_defocused_event_works()
|
/lvgl-latest/src/others/gridnav/ |
D | lv_gridnav.c | 233 lv_obj_send_event(dsc->focused_obj, LV_EVENT_DEFOCUSED, lv_indev_active()); in gridnav_event_cb() 248 else if(code == LV_EVENT_DEFOCUSED) { in gridnav_event_cb()
|
/lvgl-latest/env_support/pikascript/ |
D | pika_lvgl.c | 87 obj_setInt(self, "DEFOCUSED", LV_EVENT_DEFOCUSED); in pika_lvgl_EVENT___init__()
|
/lvgl-latest/src/indev/ |
D | lv_indev.c | 1601 lv_obj_send_event(indev->pointer.last_pressed, LV_EVENT_DEFOCUSED, indev_act); in indev_click_focus() 1613 lv_obj_send_event(indev->pointer.last_pressed, LV_EVENT_DEFOCUSED, indev_act); in indev_click_focus() 1621 lv_obj_send_event(indev->pointer.last_pressed, LV_EVENT_DEFOCUSED, indev_act); in indev_click_focus()
|
/lvgl-latest/docs/details/base-widget/ |
D | event.rst | 139 - :cpp:enumerator:`LV_EVENT_DEFOCUSED`: Widget is defocused
|
D | obj.rst | 564 - :cpp:enumerator:`LV_EVENT_DEFOCUSED` Widget's focus has been lost.
|
/lvgl-latest/src/widgets/roller/ |
D | lv_roller.c | 433 else if(code == LV_EVENT_DEFOCUSED) { in lv_roller_event()
|
/lvgl-latest/src/widgets/buttonmatrix/ |
D | lv_buttonmatrix.c | 556 else if(code == LV_EVENT_DEFOCUSED || code == LV_EVENT_LEAVE) { in lv_buttonmatrix_event()
|
/lvgl-latest/src/widgets/dropdown/ |
D | lv_dropdown.c | 750 else if(code == LV_EVENT_DEFOCUSED || code == LV_EVENT_LEAVE) { in lv_dropdown_event()
|
/lvgl-latest/demos/widgets/ |
D | lv_demo_widgets.c | 1298 else if(code == LV_EVENT_DEFOCUSED) { in ta_event_cb()
|