Lines Matching full:will

9 Therefore, not all properties have to be specified in a style. LVGL will search for a property unti…
11 …e. This means if a property is specified in two styles the newest style in the object will be used.
38 If a property is not defined in a state the best matching state's property will be used. Typically …
39 If the property is not set even for the default state the default value will be used. (See later)
50 … precedence which is higher than the default state's 0x0000 precedence, so gray color will be used.
51 3. When the object is focused the same thing happens as in pressed state and red color will be used…
52 …ed would work, but the pressed state has higher precedence than focused so gray color will be used.
58 …ng the user would expect naturally. E.g. if an object is focused the user will still want to see i…
60 …fault state. If the object can't find a property for its current state it will fall back to the de…
78 In this case, when the button is released (it's in default state) it will be red because a perfect …
79 … a better match because it describes the current state perfectly, so the button will be light-gray.
84 …ble, the property's value will be searched in the parents until an object specifies a value for th…
85 So if a button is pressed, and the text color comes from here, the pressed text color will be used.
98 …ue has been set on the style, so setting the value of the property afterwards will remove the flag.
102 will use the value based upon the current theme, but for now it just selects the internal default r…
209 To remove specific styles use `lv_obj_remove_style(obj, style, selector)`. This function will remov…
218 …ll `lv_obj_report_style_change(&style)`. If `style` is `NULL` all objects will be notified about a…
246 In the documentation of the widgets you will see sentences like "The widget uses the typical backgr…
290 …- `LV_LAYER_SIMPLE_BUF_SIZE`: [bytes] the optimal target buffer size. LVGL will try to allocate th…
306 This will give a default appearance to the UI which can then be modified by adding further styles.
330 If a custom theme is created, a parent theme can be selected. The parent theme's styles will be add…