/lvgl-latest/tests/src/test_cases/ |
D | test_event.c | 9 if(lv_event_get_code(e) == LV_EVENT_VALUE_CHANGED) { in event_object_deletion_cb() 23 lv_event_send(obj, LV_EVENT_VALUE_CHANGED, NULL); in test_event_object_deletion()
|
/lvgl-latest/examples/widgets/arc/ |
D | lv_example_arc_1.c | 18 lv_obj_add_event_cb(arc, value_changed_event_cb, LV_EVENT_VALUE_CHANGED, label); in lv_example_arc_1() 21 lv_event_send(arc, LV_EVENT_VALUE_CHANGED, NULL); in lv_example_arc_1()
|
/lvgl-latest/src/extra/widgets/calendar/ |
D | lv_calendar_header_dropdown.c | 124 lv_obj_add_event_cb(year_dd, year_event_cb, LV_EVENT_VALUE_CHANGED, calendar); in my_constructor() 129 lv_obj_add_event_cb(month_dd, month_event_cb, LV_EVENT_VALUE_CHANGED, calendar); in my_constructor() 132 lv_obj_add_event_cb(obj, value_changed_event_cb, LV_EVENT_VALUE_CHANGED, NULL); in my_constructor() 134 lv_event_send(obj, LV_EVENT_VALUE_CHANGED, NULL); in my_constructor()
|
D | lv_calendar_header_arrow.c | 96 lv_obj_add_event_cb(obj, value_changed_event_cb, LV_EVENT_VALUE_CHANGED, NULL); in my_constructor() 98 lv_event_send(obj, LV_EVENT_VALUE_CHANGED, NULL); in my_constructor()
|
/lvgl-latest/examples/widgets/chart/ |
D | lv_example_chart_5.c | 88 lv_obj_add_event_cb(slider, slider_x_event_cb, LV_EVENT_VALUE_CHANGED, NULL); in lv_example_chart_5() 94 lv_obj_add_event_cb(slider, slider_y_event_cb, LV_EVENT_VALUE_CHANGED, NULL); in lv_example_chart_5()
|
/lvgl-latest/examples/widgets/img/ |
D | lv_example_img_2.c | 37 lv_event_send(intense_slider, LV_EVENT_VALUE_CHANGED, NULL); in lv_example_img_2() 59 lv_obj_add_event_cb(slider, slider_event_cb, LV_EVENT_VALUE_CHANGED, NULL); in create_slider()
|
/lvgl-latest/examples/widgets/msgbox/ |
D | lv_example_msgbox_1.c | 15 lv_obj_add_event_cb(mbox1, event_cb, LV_EVENT_VALUE_CHANGED, NULL); in lv_example_msgbox_1()
|
/lvgl-latest/examples/widgets/dropdown/ |
D | lv_example_dropdown_1.c | 8 if(code == LV_EVENT_VALUE_CHANGED) { in event_handler()
|
D | lv_example_dropdown_3.c | 40 lv_obj_add_event_cb(dropdown, event_cb, LV_EVENT_VALUE_CHANGED, NULL); in lv_example_dropdown_3()
|
/lvgl-latest/examples/widgets/roller/ |
D | lv_example_roller_1.c | 8 if(code == LV_EVENT_VALUE_CHANGED) { in event_handler()
|
/lvgl-latest/examples/get_started/ |
D | lv_example_get_started_3.c | 24 …lv_obj_add_event_cb(slider, slider_event_cb, LV_EVENT_VALUE_CHANGED, NULL); /*Assign an event … in lv_example_get_started_3()
|
/lvgl-latest/examples/widgets/slider/ |
D | lv_example_slider_1.c | 15 lv_obj_add_event_cb(slider, slider_event_cb, LV_EVENT_VALUE_CHANGED, NULL); in lv_example_slider_1()
|
/lvgl-latest/examples/widgets/btnmatrix/ |
D | lv_example_btnmatrix_1.c | 8 if(code == LV_EVENT_VALUE_CHANGED) { in event_handler()
|
D | lv_example_btnmatrix_3.c | 52 lv_obj_add_event_cb(btnm, event_cb, LV_EVENT_VALUE_CHANGED, NULL); in lv_example_btnmatrix_3()
|
/lvgl-latest/examples/widgets/textarea/ |
D | lv_example_textarea_3.c | 16 lv_obj_add_event_cb(ta, ta_event_cb, LV_EVENT_VALUE_CHANGED, NULL); in lv_example_textarea_3()
|
D | lv_example_textarea_1.c | 39 lv_obj_add_event_cb(btnm, btnm_event_handler, LV_EVENT_VALUE_CHANGED, ta); in lv_example_textarea_1()
|
/lvgl-latest/examples/widgets/btn/ |
D | lv_example_btn_1.c | 11 else if(code == LV_EVENT_VALUE_CHANGED) { in event_handler()
|
/lvgl-latest/examples/widgets/switch/ |
D | lv_example_switch_1.c | 8 if(code == LV_EVENT_VALUE_CHANGED) { in event_handler()
|
/lvgl-latest/examples/others/msg/ |
D | lv_example_msg_1.c | 18 lv_obj_add_event_cb(slider, slider_event_cb, LV_EVENT_VALUE_CHANGED, NULL); in lv_example_msg_1()
|
/lvgl-latest/examples/widgets/calendar/ |
D | lv_example_calendar_1.c | 9 if(code == LV_EVENT_VALUE_CHANGED) { in event_handler()
|
/lvgl-latest/examples/widgets/checkbox/ |
D | lv_example_checkbox_1.c | 8 if(code == LV_EVENT_VALUE_CHANGED) { in event_handler()
|
/lvgl-latest/examples/anim/ |
D | lv_example_anim_1.c | 49 lv_obj_add_event_cb(sw, sw_event_cb, LV_EVENT_VALUE_CHANGED, label); in lv_example_anim_1()
|
D | lv_example_anim_timeline_1.c | 145 lv_obj_add_event_cb(btn_start, btn_start_event_handler, LV_EVENT_VALUE_CHANGED, NULL); in lv_example_anim_timeline_1() 176 lv_obj_add_event_cb(slider_prg, slider_prg_event_handler, LV_EVENT_VALUE_CHANGED, NULL); in lv_example_anim_timeline_1()
|
/lvgl-latest/docs/widgets/core/ |
D | roller.md | 34 - `LV_EVENT_VALUE_CHANGED` Sent when a new option is selected. 43 - `LY_KEY_ENTER` Apply the selected option (Send `LV_EVENT_VALUE_CHANGED` event)
|
/lvgl-latest/examples/scroll/ |
D | lv_example_scroll_2.c | 9 if(code == LV_EVENT_VALUE_CHANGED) { in sw_event_cb()
|