Searched refs:states (Results 1 – 12 of 12) sorted by relevance
/lvgl-3.7.0/src/extra/others/fragment/ |
D | lv_fragment_manager.c | 24 lv_fragment_managed_states_t * states; member 77 lv_fragment_managed_states_t * states; in lv_fragment_manager_del() local 78 _LV_LL_READ_BACK(&manager->attached, states) { in lv_fragment_manager_del() 79 item_del_obj(states); in lv_fragment_manager_del() 80 item_del_fragment(states); in lv_fragment_manager_del() 91 lv_fragment_managed_states_t * states = NULL; in lv_fragment_manager_create_obj() local 92 _LV_LL_READ(&manager->attached, states) { in lv_fragment_manager_create_obj() 93 if(states->in_stack && top->states != states) { in lv_fragment_manager_create_obj() 97 item_create_obj(states); in lv_fragment_manager_create_obj() 104 lv_fragment_managed_states_t * states = NULL; in lv_fragment_manager_del_obj() local [all …]
|
D | lv_fragment.c | 81 lv_fragment_managed_states_t * states = fragment->managed; in lv_fragment_create_obj() local 82 if(states) { in lv_fragment_create_obj() 83 states->destroying_obj = false; in lv_fragment_create_obj() 90 if(states) { in lv_fragment_create_obj() 91 states->obj_created = true; in lv_fragment_create_obj() 104 lv_fragment_managed_states_t * states = fragment->managed; in lv_fragment_del_obj() local 105 if(states) { in lv_fragment_del_obj() 106 if(!states->obj_created) return; in lv_fragment_del_obj() 107 states->destroying_obj = true; in lv_fragment_del_obj() 120 if(states) { in lv_fragment_del_obj() [all …]
|
/lvgl-3.7.0/examples/others/msg/ |
D | index.rst | 8 Handling login and its states
|
/lvgl-3.7.0/docs/widgets/extra/ |
D | imgbtn.md | 22 The possible states are: 30 If you set sources only in `LV_IMGBTN_STATE_RELEASED`, these sources will be used in other states t…
|
/lvgl-3.7.0/examples/styles/ |
D | index.rst | 78 Add styles to parts and states
|
/lvgl-3.7.0/docs/overview/ |
D | style.md | 14 - Unlike CSS (where pseudo-classes describe different states, e.g. `:focus`), in LVGL a property is… 19 The objects can be in the combination of the following states: 34 An object can be in a combination of states such as being focused and pressed at the same time. Thi… 37 For example, setting a different background color for the default and pressed states. 58 - The precedence (value) of states is quite intuitive, and it's something the user would expect nat… 60 - If you want to set a property for all states (e.g. red background color) just set it for the defa… 61 - Use ORed states to describe the properties for complex cases. (E.g. pressed + checked + focused) 62 - It might be a good idea to use different style elements for different states. 63 …+ pressed, focused, focused + pressed, focused + pressed + checked, etc. states is quite difficult. 64 Instead, for example, use the background color for pressed and checked states and indicate the focu… [all …]
|
D | object.md | 200 The object can be in a combination of the following states: 215 The states are usually automatically changed by the library as the user interacts with an object (p… 216 However, the states can be changed manually too. 217 To set or clear given state (but leave the other states untouched) use `lv_obj_add/clear_state(obj,… 220 To learn more about the states read the related section of the [Style overview](/overview/style).
|
D | indev.md | 127 If an object switches to edit mode it enters the `LV_STATE_FOCUSED | LV_STATE_EDITED` states so the…
|
D | drawing.md | 104 …re/btnmatrix) widget. By default, its buttons can be styled in different states, but you can't sty…
|
/lvgl-3.7.0/docs/get-started/ |
D | quick-overview.md | 162 LVGL objects can be in a combination of the following states: 173 …t will automatically go to the `LV_STATE_FOCUSED` and `LV_STATE_PRESSED` states and when you relea… 177 To manually add or remove states use:
|
/lvgl-3.7.0/docs/widgets/core/ |
D | img.md | 53 This can be useful to show different states (checked, inactive, pressed, etc.) of an image without …
|
/lvgl-3.7.0/docs/ |
D | CHANGELOG.md | 1200 - fix(btnmatrix) do not show pressed, focused or focus key states on disabled buttons [`3df2a74`](h… 1909 - btnmatrix: handle combined states of buttons (e.g. checked + disabled)
|