Home
last modified time | relevance | path

Searched refs:LV_STATE_DISABLED (Results 1 – 19 of 19) sorted by relevance

/lvgl-3.5.0/examples/others/msg/
Dlv_example_msg_2.c104 lv_obj_add_state(ta, LV_STATE_DISABLED); in textarea_event_cb()
109 lv_obj_clear_state(ta, LV_STATE_DISABLED); in textarea_event_cb()
126 lv_obj_clear_state(btn, LV_STATE_DISABLED); in log_out_event_cb()
129 lv_obj_add_state(btn, LV_STATE_DISABLED); in log_out_event_cb()
141 lv_obj_clear_state(btn, LV_STATE_DISABLED); in start_engine_msg_event_cb()
144 lv_obj_add_state(btn, LV_STATE_DISABLED); in start_engine_msg_event_cb()
/lvgl-3.5.0/examples/widgets/switch/
Dlv_example_switch_1.c28 lv_obj_add_state(sw, LV_STATE_DISABLED); in lv_example_switch_1()
32 lv_obj_add_state(sw, LV_STATE_CHECKED | LV_STATE_DISABLED); in lv_example_switch_1()
/lvgl-3.5.0/examples/widgets/checkbox/
Dlv_example_checkbox_1.c32 lv_obj_add_state(cb, LV_STATE_DISABLED); in lv_example_checkbox_1()
36 lv_obj_add_state(cb, LV_STATE_CHECKED | LV_STATE_DISABLED); in lv_example_checkbox_1()
/lvgl-3.5.0/src/extra/themes/mono/
Dlv_theme_mono.c249 lv_obj_add_style(obj, &styles->disabled, LV_STATE_DISABLED); in theme_apply()
262 lv_obj_add_style(obj, &styles->disabled, LV_PART_ITEMS | LV_STATE_DISABLED); in theme_apply()
274 lv_obj_add_style(obj, &styles->disabled, LV_PART_ITEMS | LV_STATE_DISABLED); in theme_apply()
286 lv_obj_add_style(obj, &styles->disabled, LV_PART_ITEMS | LV_STATE_DISABLED); in theme_apply()
329 lv_obj_add_style(obj, &styles->disabled, LV_PART_INDICATOR | LV_STATE_DISABLED); in theme_apply()
424 lv_obj_add_style(obj, &styles->disabled, LV_PART_ITEMS | LV_STATE_DISABLED); in theme_apply()
/lvgl-3.5.0/demos/music/
Dlv_demo_music_list.c172 lv_obj_add_style(btn, &style_btn_dis, LV_STATE_DISABLED); in add_list_btn()
176 lv_obj_add_state(btn, LV_STATE_DISABLED); in add_list_btn()
/lvgl-3.5.0/src/extra/widgets/imgbtn/
Dlv_imgbtn.c99 …IMGBTN_STATE_DISABLED || state == LV_IMGBTN_STATE_CHECKED_DISABLED) obj_state |= LV_STATE_DISABLED; in lv_imgbtn_set_state()
105 lv_obj_clear_state(obj, LV_STATE_CHECKED | LV_STATE_PRESSED | LV_STATE_DISABLED); in lv_imgbtn_set_state()
362 if(obj_state & LV_STATE_DISABLED) { in get_state()
/lvgl-3.5.0/src/extra/themes/default/
Dlv_theme_default.c766 lv_obj_add_style(obj, &styles->disabled, LV_STATE_DISABLED); in theme_apply()
792 lv_obj_add_style(obj, &styles->disabled, LV_PART_ITEMS | LV_STATE_DISABLED); in theme_apply()
821 lv_obj_add_style(obj, &styles->disabled, LV_PART_ITEMS | LV_STATE_DISABLED); in theme_apply()
831 lv_obj_add_style(obj, &styles->disabled, LV_PART_ITEMS | LV_STATE_DISABLED); in theme_apply()
889 lv_obj_add_style(obj, &styles->disabled, LV_PART_INDICATOR | LV_STATE_DISABLED); in theme_apply()
907 lv_obj_add_style(obj, &styles->disabled, LV_STATE_DISABLED); in theme_apply()
911 lv_obj_add_style(obj, &styles->disabled, LV_PART_INDICATOR | LV_STATE_DISABLED); in theme_apply()
915 lv_obj_add_style(obj, &styles->disabled, LV_PART_KNOB | LV_STATE_DISABLED); in theme_apply()
1002 lv_obj_add_style(obj, &styles->disabled, LV_STATE_DISABLED); in theme_apply()
1038 lv_obj_add_style(obj, &styles->disabled, LV_PART_ITEMS | LV_STATE_DISABLED); in theme_apply()
/lvgl-3.5.0/src/core/
Dlv_obj.h50 LV_STATE_DISABLED = 0x0080, enumerator
Dlv_group.c296 if(lv_obj_has_state(act, LV_STATE_DISABLED)) return LV_RES_OK; in lv_group_send_data()
433 if(lv_obj_get_state(*obj_next) & LV_STATE_DISABLED) continue; in focus_next_core()
Dlv_obj_pos.c956 if(lv_obj_has_state(obj, LV_STATE_DISABLED)) return false; in lv_obj_hit_test()
Dlv_indev.c413 bool dis = lv_obj_has_state(indev_obj_act, LV_STATE_DISABLED); in indev_keypad_proc()
/lvgl-3.5.0/demos/stress/
Dlv_demo_stress.c117 lv_obj_add_state(obj, LV_STATE_DISABLED); in obj_test_task_cb()
390 lv_obj_add_state(obj, LV_STATE_CHECKED | LV_STATE_DISABLED); in obj_test_task_cb()
/lvgl-3.5.0/docs/widgets/core/
Dcheckbox.md30 lv_obj_add_state(cb, LV_STATE_CHECKED | LV_STATE_DISABLED); /*Make the checkbox checked and disable…
Dbtnmatrix.md33 - `LV_BTNMATRIX_CTRL_DISABLED` Makes a button disabled Like `LV_STATE_DISABLED` on normal objects
/lvgl-3.5.0/demos/widgets/
Dlv_demo_widgets.c243 lv_obj_add_state(invite_btn, LV_STATE_DISABLED); in profile_create()
950 lv_obj_add_state(cb, LV_STATE_DISABLED); in shop_create()
954 lv_obj_add_state(cb, LV_STATE_CHECKED | LV_STATE_DISABLED); in shop_create()
/lvgl-3.5.0/docs/overview/
Dobject.md209 - `LV_STATE_DISABLED` Disabled state
Dstyle.md28 - `LV_STATE_DISABLED` (0x0080) Disabled state
/lvgl-3.5.0/docs/get-started/
Dquick-overview.md171 - `LV_STATE_DISABLED` Disabled
/lvgl-3.5.0/src/widgets/
Dlv_btnmatrix.c710 if(button_is_inactive(btnm->ctrl_bits[btn_i])) btn_state |= LV_STATE_DISABLED; in draw_main()