Lines Matching refs:states
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…
73 However, the precedence of the states are still taken into account.
235 Unlike in CSS, LVGL local styles can be assigned to states (*pseudo-classes*) and parts (*pseudo-el…