/lvgl-latest/src/core/ |
D | lv_obj.c | 314 void lv_obj_remove_state(lv_obj_t * obj, lv_state_t state) in lv_obj_remove_state() function 327 else lv_obj_remove_state(obj, state); in lv_obj_set_state() 740 lv_obj_remove_state(obj, LV_STATE_PRESSED); in lv_obj_event() 745 else lv_obj_remove_state(obj, LV_STATE_CHECKED); in lv_obj_event() 752 lv_obj_remove_state(obj, LV_STATE_PRESSED); in lv_obj_event() 768 lv_obj_remove_state(obj, LV_STATE_CHECKED); in lv_obj_event() 829 lv_obj_remove_state(obj, LV_STATE_EDITED); in lv_obj_event() 836 lv_obj_remove_state(obj, LV_STATE_SCROLLED); in lv_obj_event() 845 lv_obj_remove_state(obj, LV_STATE_FOCUSED | LV_STATE_EDITED | LV_STATE_FOCUS_KEY); in lv_obj_event() 882 lv_obj_remove_state(obj, LV_STATE_PRESSED); in lv_obj_event() [all …]
|
D | lv_obj.h | 271 void lv_obj_remove_state(lv_obj_t * obj, lv_state_t state);
|
/lvgl-latest/demos/flex_layout/ |
D | lv_demo_flex_layout_view_child_node.c | 72 lv_obj_remove_state(ui->obj_cur, LV_STATE_CHECKED); in obj_child_node_event_handler()
|
D | lv_demo_flex_layout_ctrl_pad.c | 116 lv_obj_remove_state(checkbox, LV_STATE_CHECKED); in ctrl_pad_obj_update()
|
/lvgl-latest/src/others/gridnav/ |
D | lv_gridnav.c | 118 lv_obj_remove_state(dsc->focused_obj, LV_STATE_FOCUSED | LV_STATE_FOCUS_KEY); in lv_gridnav_set_focused() 232 lv_obj_remove_state(dsc->focused_obj, LV_STATE_FOCUSED | LV_STATE_FOCUS_KEY); in gridnav_event_cb() 244 …lv_obj_remove_state(dsc->focused_obj, LV_STATE_PRESSED); /*Be sure the focuses obj is not stuck in… in gridnav_event_cb() 250 lv_obj_remove_state(dsc->focused_obj, LV_STATE_FOCUSED | LV_STATE_FOCUS_KEY); in gridnav_event_cb()
|
/lvgl-latest/examples/others/ime/ |
D | lv_example_ime_pinyin_1.c | 18 lv_obj_remove_state(ta, LV_STATE_FOCUSED); in ta_event_cb()
|
D | lv_example_ime_pinyin_2.c | 18 lv_obj_remove_state(ta, LV_STATE_FOCUSED); in ta_event_cb()
|
/lvgl-latest/demos/smartwatch/ |
D | lv_demo_smartwatch_settings.c | 168 lv_obj_remove_state(toggle, LV_STATE_CHECKED); in lv_demo_smartwatch_settings_add_toggle() 319 lv_obj_remove_state(circular_switch, LV_STATE_CHECKED); in lv_demo_smartwatch_set_default_circular_scroll() 331 lv_obj_remove_state(alerts_switch, LV_STATE_CHECKED); in lv_demo_smartwatch_set_default_alert_state() 343 lv_obj_remove_state(hint_switch, LV_STATE_CHECKED); in lv_demo_smartwatch_set_default_hints_state()
|
/lvgl-latest/examples/widgets/checkbox/ |
D | lv_example_checkbox_2.c | 19 lv_obj_remove_state(old_cb, LV_STATE_CHECKED); /*Uncheck the previous radio button*/ in radio_event_handler()
|
/lvgl-latest/demos/scroll/ |
D | lv_demo_scroll.c | 96 lv_obj_remove_state(sw, LV_STATE_CHECKED); in switch_create()
|
/lvgl-latest/examples/others/observer/ |
D | lv_example_observer_3.c | 116 lv_obj_remove_state(set_btn, LV_STATE_DISABLED); in close_clicked_event_cb()
|
D | lv_example_observer_4.c | 181 if(idx == prev_v) lv_obj_remove_state(btn, LV_STATE_CHECKED); in btn_observer_cb()
|
/lvgl-latest/examples/widgets/list/ |
D | lv_example_list_2.c | 30 lv_obj_remove_state(child, LV_STATE_CHECKED); in event_handler()
|
/lvgl-latest/docs/details/widgets/ |
D | checkbox.rst | 55 lv_obj_remove_state(cb, LV_STATE_CHECKED); /* Make Checkbox unchecked */
|
D | switch.rst | 52 :cpp:expr:`lv_obj_remove_state(widget, LV_STATE_CHECKED)` to turn it off
|
D | imagebutton.rst | 65 Instead of the regular :cpp:func:`lv_obj_add_state` and :cpp:func:`lv_obj_remove_state` functions,
|
/lvgl-latest/demos/music/ |
D | lv_demo_music_list.c | 165 lv_obj_remove_state(btn, LV_STATE_CHECKED); in lv_demo_music_list_button_check()
|
/lvgl-latest/src/ |
D | lv_api_map_v8.h | 120 #define lv_obj_clear_state lv_obj_remove_state
|
/lvgl-latest/src/widgets/menu/ |
D | lv_menu.c | 237 lv_obj_remove_state(menu->selected_tab, LV_STATE_CHECKED); in lv_menu_set_page() 746 lv_obj_remove_state(menu->selected_tab, LV_STATE_CHECKED); in lv_menu_load_page_event_cb()
|
/lvgl-latest/src/widgets/imagebutton/ |
D | lv_imagebutton.c | 107 lv_obj_remove_state(obj, LV_STATE_CHECKED | LV_STATE_PRESSED | LV_STATE_DISABLED); in lv_imagebutton_set_state()
|
/lvgl-latest/src/widgets/keyboard/ |
D | lv_keyboard.c | 239 lv_obj_remove_state(obj, LV_STATE_FOCUSED); in lv_keyboard_set_textarea()
|
/lvgl-latest/tests/src/test_cases/widgets/ |
D | test_obj_property.c | 217 lv_obj_remove_state(obj, states[i].state); in test_obj_property_state()
|
/lvgl-latest/demos/ebike/ |
D | lv_demo_ebike_home.c | 358 lv_obj_remove_state(lv_obj_get_child(bullet_cont, i), LV_STATE_CHECKED); in bullet_scroll_event_cb()
|
/lvgl-latest/src/others/observer/ |
D | lv_observer.c | 657 lv_obj_remove_state(observer->target, p->flag); in obj_state_observer_cb()
|
/lvgl-latest/src/indev/ |
D | lv_indev.c | 989 … lv_obj_remove_state(indev_obj_act, LV_STATE_PRESSED); /*Remove the pressed state manually*/ in indev_encoder_proc() 1066 … lv_obj_remove_state(indev_obj_act, LV_STATE_PRESSED); /*Remove the pressed state manually*/ in indev_encoder_proc()
|