Lines Matching full:this
11 - The most recently added style has higher precedence. This means if a property is specified in two…
34 …combination of states such as being focused and pressed at the same time. This is represented as `…
38 …ned in a state the best matching state's property will be used. Typically this means the property …
43 …h state's property to use let's take an example. Imagine the background color is defined like this:
54 In this case, this combined state has 0x0020 + 0x0002 = 0x0022 precedence, which is higher than the…
55 …in the checked state there is no property to set the background color for this state. So for lack …
70 This is much like in CSS when used classes are listed like `<div class=".btn .btn-red">`.
78 In this case, when the button is released (it's in default state) it will be red because a perfect …
84 In this case, if the property is inheritable, the property's value will be searched in the parents …
88 …o force a child object to use the parent's value for a given style property. To do this you can use
98 This acts like a value has been set on the style, so setting the value of the property afterwards w…
101 To do this you can use the same API but with `LV_STYLE_PROP_META_INITIAL` instead. In future versio…
125 This means all three parts of the slider can have their own styles. See later how to add styles to …
134 Property set functions looks like this: `lv_style_set_<property_name>(&style, <value>);` For exampl…
209 To remove specific styles use `lv_obj_remove_style(obj, style, selector)`. This function will remov…
214 …added or changed), the objects using that style should be notified. There are 3 options to do this:
221 …heritance, local styles and transitions (see below) - property get functions like this can be used:
230 In addition to "normal" styles, objects can also store local styles. This concept is similar to inl…
268 This example configuration results in going to the pressed state quickly and then going back to def…
287 These properties have this effect only on the `MAIN` part of the widget.
290 …E_BUF_SIZE`: [bytes] the optimal target buffer size. LVGL will try to allocate this size of memory.
306 This will give a default appearance to the UI which can then be modified by adding further styles.
314 Theme initialization functions can have different prototypes. This example shows how to set the "de…
316 lv_theme_t * th = lv_theme_default_init(display, /*Use the DPI, size, etc from this display*/
331 Any number of themes can be chained this way. E.g. default theme -> custom theme -> dark theme.