/lvgl-latest/examples/others/snapshot/ |
D | lv_example_snapshot_1.c | 54 lv_obj_add_event_cb(img, event_cb, LV_EVENT_RELEASED, snapshot_obj); in lv_example_snapshot_1()
|
/lvgl-latest/src/misc/ |
D | lv_event.h | 48 LV_EVENT_RELEASED, /**< Sent in every cases when Widget has been released */ enumerator
|
/lvgl-latest/docs/details/widgets/ |
D | button.rst | 60 and :cpp:enumerator:`LV_EVENT_RELEASED` etc.
|
D | slider.rst | 106 - :cpp:enumerator:`LV_EVENT_RELEASED` Sent once when Slider is released.
|
/lvgl-latest/examples/widgets/chart/ |
D | lv_example_chart_3.c | 65 else if(code == LV_EVENT_RELEASED) { in event_cb()
|
/lvgl-latest/tests/src/test_cases/widgets/ |
D | test_btnmatrix.c | 317 lv_obj_add_event_cb(btnm, event_handler, LV_EVENT_RELEASED, NULL); in test_button_matrix_release_event_works() 319 exp_evt_code = LV_EVENT_RELEASED; in test_button_matrix_release_event_works()
|
D | test_spinbox.c | 282 lv_obj_send_event(spinbox_events, LV_EVENT_RELEASED, NULL); in test_spinbox_event_release()
|
/lvgl-latest/demos/smartwatch/ |
D | lv_demo_smartwatch_easter_egg.c | 316 else if(event_code == LV_EVENT_RELEASED) { in create_screen_event_cb()
|
/lvgl-latest/env_support/pikascript/ |
D | pika_lvgl.c | 80 obj_setInt(self, "RELEASED", LV_EVENT_RELEASED); in pika_lvgl_EVENT___init__()
|
/lvgl-latest/src/indev/ |
D | lv_indev.c | 876 if(send_event(LV_EVENT_RELEASED, indev_act) == LV_RESULT_INVALID) return; in indev_keypad_proc() 1040 if(send_event(LV_EVENT_RELEASED, indev_act) == LV_RESULT_INVALID) return; in indev_encoder_proc() 1057 if(send_event(LV_EVENT_RELEASED, indev_act) == LV_RESULT_INVALID) return; in indev_encoder_proc() 1400 if(send_event(LV_EVENT_RELEASED, indev_act) == LV_RESULT_INVALID) return; in indev_proc_release() 1775 code == LV_EVENT_RELEASED || in send_event()
|
/lvgl-latest/demos/multilang/ |
D | lv_demo_multilang.c | 297 lv_obj_add_event_cb(cont, scroll_event_cb, LV_EVENT_RELEASED, NULL); in card_create()
|
/lvgl-latest/src/widgets/imagebutton/ |
D | lv_imagebutton.c | 166 if(code == LV_EVENT_PRESSED || code == LV_EVENT_RELEASED || code == LV_EVENT_PRESS_LOST) { in lv_imagebutton_event()
|
/lvgl-latest/src/core/ |
D | lv_obj_event.c | 193 e->code == LV_EVENT_RELEASED || in lv_event_get_indev()
|
/lvgl-latest/src/widgets/spinbox/ |
D | lv_spinbox.c | 309 if(code == LV_EVENT_RELEASED) { in lv_spinbox_event()
|
/lvgl-latest/src/others/gridnav/ |
D | lv_gridnav.c | 279 code == LV_EVENT_CLICKED || code == LV_EVENT_RELEASED) { in gridnav_event_cb()
|
/lvgl-latest/src/widgets/textarea/ |
D | lv_textarea.c | 1021 code == LV_EVENT_RELEASED) { in lv_textarea_event() 1313 … else if(ta->text_sel_in_prog && (code == LV_EVENT_PRESS_LOST || code == LV_EVENT_RELEASED)) { in update_cursor_position_on_click() 1347 if(code == LV_EVENT_PRESS_LOST || code == LV_EVENT_RELEASED) { in update_cursor_position_on_click()
|
/lvgl-latest/docs/details/other-components/ |
D | file_explorer.rst | 186 is clicked: once as a result of the input-device :cpp:enumerator:`LV_EVENT_RELEASED`
|
/lvgl-latest/src/widgets/dropdown/ |
D | lv_dropdown.c | 753 else if(code == LV_EVENT_RELEASED) { in lv_dropdown_event() 837 if(code == LV_EVENT_RELEASED) { in lv_dropdown_list_event()
|
/lvgl-latest/src/widgets/slider/ |
D | lv_slider.c | 270 else if(code == LV_EVENT_RELEASED || code == LV_EVENT_PRESS_LOST) { in lv_slider_event()
|
/lvgl-latest/src/widgets/bar/ |
D | lv_bar.c | 621 else if(code == LV_EVENT_PRESSED || code == LV_EVENT_RELEASED) { in lv_bar_event()
|
/lvgl-latest/src/others/file_explorer/ |
D | lv_file_explorer.c | 544 else if((code == LV_EVENT_CLICKED) || (code == LV_EVENT_RELEASED)) { in browser_file_event_handler()
|
/lvgl-latest/demos/ebike/ |
D | lv_demo_ebike_stats.c | 497 lv_obj_add_event_cb(chart, chart_released_event_cb, LV_EVENT_RELEASED, NULL); in chart_create()
|
/lvgl-latest/demos/high_res/ |
D | lv_demo_high_res_app_smart_home.c | 314 lv_obj_add_event_cb(slider, widget2_slider_released_cb, LV_EVENT_RELEASED, c); in create_widget2()
|
/lvgl-latest/docs/details/base-widget/ |
D | event.rst | 131 - :cpp:enumerator:`LV_EVENT_RELEASED`: Called in every cases when Widget has been released
|
/lvgl-latest/src/widgets/roller/ |
D | lv_roller.c | 403 else if(code == LV_EVENT_RELEASED || code == LV_EVENT_PRESS_LOST) { in lv_roller_event()
|