「App:Library:LVGL:docs:Overview:Styles」の版間の差分

提供: robot-jp wiki
ナビゲーションに移動検索に移動
1行目: 1行目:
 
https://docs.lvgl.io/8.2/overview/style.html
 
https://docs.lvgl.io/8.2/overview/style.html
 
__NOTOC__
 
__NOTOC__
{| class="wikitable"
 
!英文
 
!自動翻訳
 
|-
 
|
 
|
 
|}
 
 
 
 
 
= Styles =
 
= Styles =
 
''Styles'' are used to set the appearance of objects. Styles in lvgl are heavily inspired by CSS. The concept in a nutshell is as follows:
 
''Styles'' are used to set the appearance of objects. Styles in lvgl are heavily inspired by CSS. The concept in a nutshell is as follows:
  
* A style is an <code>lv_style_t</code> variable which can hold properties like border width, text color and so on. It's similar to a <code>class</code> in CSS.
+
* A style is an <code style="color: #bb0000;">lv_style_t</code> variable which can hold properties like border width, text color and so on. It's similar to a <code style="color: #bb0000;">class</code> in CSS.
* Styles can be assigned to objects to change their appearance. Upon assignment, the target part (''pseudo-element'' in CSS) and target state (''pseudo class'') can be specified. For example one can add <code>style_blue</code> to the knob of a slider when it's in pressed state.
+
* Styles can be assigned to objects to change their appearance. Upon assignment, the target part (''pseudo-element'' in CSS) and target state (''pseudo class'') can be specified. For example one can add <code style="color: #bb0000;">style_blue</code> to the knob of a slider when it's in pressed state.
 
* The same style can be used by any number of objects.
 
* The same style can be used by any number of objects.
* Styles can be cascaded which means multiple styles may be assigned to an object and each style can have different properties. Therefore, not all properties have to be specified in a style. LVGL will search for a property until a style defines it or use a default if it's not specified by any of the styles. For example <code>style_btn</code> can result in a default gray button and <code>style_btn_red</code> can add only a <code>background-color=red</code> to overwrite the background color.
+
* Styles can be cascaded which means multiple styles may be assigned to an object and each style can have different properties. Therefore, not all properties have to be specified in a style. LVGL will search for a property until a style defines it or use a default if it's not specified by any of the styles. For example <code style="color: #bb0000;">style_btn</code> can result in a default gray button and <code style="color: #bb0000;">style_btn_red</code> can add only a <code style="color: #bb0000;">background-color=red</code> to overwrite the background color.
 
* The most recently added style has higher precedence. This means if a property is specified in two styles the newest style in the object will be used.
 
* The most recently added style has higher precedence. This means if a property is specified in two styles the newest style in the object will be used.
 
* Some properties (e.g. text color) can be inherited from a parent(s) if it's not specified in an object.
 
* Some properties (e.g. text color) can be inherited from a parent(s) if it's not specified in an object.
 
* Objects can also have local styles with higher precedence than "normal" styles.
 
* Objects can also have local styles with higher precedence than "normal" styles.
* Unlike CSS (where pseudo-classes describe different states, e.g. <code>:focus</code>), in LVGL a property is assigned to a given state.
+
* Unlike CSS (where pseudo-classes describe different states, e.g. <code style="color: #bb0000;">:focus</code>), in LVGL a property is assigned to a given state.
 
* Transitions can be applied when the object changes state.
 
* Transitions can be applied when the object changes state.
  
27行目: 17行目:
 
The objects can be in the combination of the following states:
 
The objects can be in the combination of the following states:
  
* <code>LV_STATE_DEFAULT</code> (0x0000) Normal, released state
+
* <code style="color: #bb0000;">LV_STATE_DEFAULT</code> (0x0000) Normal, released state
* <code>LV_STATE_CHECKED</code> (0x0001) Toggled or checked state
+
* <code style="color: #bb0000;">LV_STATE_CHECKED</code> (0x0001) Toggled or checked state
* <code>LV_STATE_FOCUSED</code> (0x0002) Focused via keypad or encoder or clicked via touchpad/mouse
+
* <code style="color: #bb0000;">LV_STATE_FOCUSED</code> (0x0002) Focused via keypad or encoder or clicked via touchpad/mouse
* <code>LV_STATE_FOCUS_KEY</code> (0x0004) Focused via keypad or encoder but not via touchpad/mouse
+
* <code style="color: #bb0000;">LV_STATE_FOCUS_KEY</code> (0x0004) Focused via keypad or encoder but not via touchpad/mouse
* <code>LV_STATE_EDITED</code> (0x0008) Edit by an encoder
+
* <code style="color: #bb0000;">LV_STATE_EDITED</code> (0x0008) Edit by an encoder
* <code>LV_STATE_HOVERED</code> (0x0010) Hovered by mouse (not supported now)
+
* <code style="color: #bb0000;">LV_STATE_HOVERED</code> (0x0010) Hovered by mouse (not supported now)
* <code>LV_STATE_PRESSED</code> (0x0020) Being pressed
+
* <code style="color: #bb0000;">LV_STATE_PRESSED</code> (0x0020) Being pressed
* <code>LV_STATE_SCROLLED</code> (0x0040) Being scrolled
+
* <code style="color: #bb0000;">LV_STATE_SCROLLED</code> (0x0040) Being scrolled
* <code>LV_STATE_DISABLED</code> (0x0080) Disabled state
+
* <code style="color: #bb0000;">LV_STATE_DISABLED</code> (0x0080) Disabled state
* <code>LV_STATE_USER_1</code> (0x1000) Custom state
+
* <code style="color: #bb0000;">LV_STATE_USER_1</code> (0x1000) Custom state
* <code>LV_STATE_USER_2</code> (0x2000) Custom state
+
* <code style="color: #bb0000;">LV_STATE_USER_2</code> (0x2000) Custom state
* <code>LV_STATE_USER_3</code> (0x4000) Custom state
+
* <code style="color: #bb0000;">LV_STATE_USER_3</code> (0x4000) Custom state
* <code>LV_STATE_USER_4</code> (0x8000) Custom state
+
* <code style="color: #bb0000;">LV_STATE_USER_4</code> (0x8000) Custom state
  
An object can be in a combination of states such as being focused and pressed at the same time. This is represented as <code>LV_STATE_FOCUSED | LV_STATE_PRESSED</code>.
+
An object can be in a combination of states such as being focused and pressed at the same time. This is represented as <code style="color: #bb0000;">LV_STATE_FOCUSED | LV_STATE_PRESSED</code>.
  
A style can be added to any state or state combination. For example, setting a different background color for the default and pressed states. If a property is not defined in a state the best matching state's property will be used. Typically this means the property with <code>LV_STATE_DEFAULT</code> is used.˛ If the property is not set even for the default state the default value will be used. (See later)
+
A style can be added to any state or state combination. For example, setting a different background color for the default and pressed states. If a property is not defined in a state the best matching state's property will be used. Typically this means the property with <code style="color: #bb0000;">LV_STATE_DEFAULT</code> is used.˛ If the property is not set even for the default state the default value will be used. (See later)
  
 
But what does the "best matching state's property" really mean? States have a precedence which is shown by their value (see in the above list). A higher value means higher precedence. To determine which state's property to use let's take an example. Imagine the background color is defined like this:
 
But what does the "best matching state's property" really mean? States have a precedence which is shown by their value (see in the above list). A higher value means higher precedence. To determine which state's property to use let's take an example. Imagine the background color is defined like this:
  
* <code>LV_STATE_DEFAULT</code>: white
+
* <code style="color: #bb0000;">LV_STATE_DEFAULT</code>: white
* <code>LV_STATE_PRESSED</code>: gray
+
* <code style="color: #bb0000;">LV_STATE_PRESSED</code>: gray
* <code>LV_STATE_FOCUSED</code>: red
+
* <code style="color: #bb0000;">LV_STATE_FOCUSED</code>: red
  
 
# Initially the object is in the default state, so it's a simple case: the property is perfectly defined in the object's current state as white.
 
# Initially the object is in the default state, so it's a simple case: the property is perfectly defined in the object's current state as white.
55行目: 45行目:
 
# When the object is focused the same thing happens as in pressed state and red color will be used. (Focused state has higher precedence than default state).
 
# When the object is focused the same thing happens as in pressed state and red color will be used. (Focused state has higher precedence than default state).
 
# When the object is focused and pressed both gray and red would work, but the pressed state has higher precedence than focused so gray color will be used.
 
# When the object is focused and pressed both gray and red would work, but the pressed state has higher precedence than focused so gray color will be used.
# It's possible to set e.g. rose color for <code>LV_STATE_PRESSED | LV_STATE_FOCUSED</code>. In this case, this combined state has 0x0020 + 0x0002 = 0x0022 precedence, which is higher than the pressed state's precedence so rose color would be used.
+
# It's possible to set e.g. rose color for <code style="color: #bb0000;">LV_STATE_PRESSED | LV_STATE_FOCUSED</code>. In this case, this combined state has 0x0020 + 0x0002 = 0x0022 precedence, which is higher than the pressed state's precedence so rose color would be used.
 
# When the object is in the checked state there is no property to set the background color for this state. So for lack of a better option, the object remains white from the default state's property.
 
# When the object is in the checked state there is no property to set the background color for this state. So for lack of a better option, the object remains white from the default state's property.
  
71行目: 61行目:
 
It's not required to set all the properties in one style. It's possible to add more styles to an object and have the latter added style modify or extend appearance. For example, create a general gray button style and create a new one for red buttons where only the new background color is set.
 
It's not required to set all the properties in one style. It's possible to add more styles to an object and have the latter added style modify or extend appearance. For example, create a general gray button style and create a new one for red buttons where only the new background color is set.
  
This is much like in CSS when used classes are listed like <code><nowiki><div class=".btn .btn-red"></nowiki></code>.
+
This is much like in CSS when used classes are listed like <code style="color: #bb0000;"><nowiki><div class=".btn .btn-red"></nowiki></code>.
  
 
Styles added later have precedence over ones set earlier. So in the gray/red button example above, the normal button style should be added first and the red style second. However, the precedence of the states are still taken into account. So let's examine the following case:
 
Styles added later have precedence over ones set earlier. So in the gray/red button example above, the normal button style should be added first and the red style second. However, the precedence of the states are still taken into account. So let's examine the following case:
88行目: 78行目:
 
The following predefined parts exist in LVGL:
 
The following predefined parts exist in LVGL:
  
* <code>LV_PART_MAIN</code> A background like rectangle
+
* <code style="color: #bb0000;">LV_PART_MAIN</code> A background like rectangle
* <code>LV_PART_SCROLLBAR</code> The scrollbar(s)
+
* <code style="color: #bb0000;">LV_PART_SCROLLBAR</code> The scrollbar(s)
* <code>LV_PART_INDICATOR</code> Indicator, e.g. for slider, bar, switch, or the tick box of the checkbox
+
* <code style="color: #bb0000;">LV_PART_INDICATOR</code> Indicator, e.g. for slider, bar, switch, or the tick box of the checkbox
* <code>LV_PART_KNOB</code> Like a handle to grab to adjust a value
+
* <code style="color: #bb0000;">LV_PART_KNOB</code> Like a handle to grab to adjust a value
* <code>LV_PART_SELECTED</code> Indicate the currently selected option or section
+
* <code style="color: #bb0000;">LV_PART_SELECTED</code> Indicate the currently selected option or section
* <code>LV_PART_ITEMS</code> Used if the widget has multiple similar elements (e.g. table cells)
+
* <code style="color: #bb0000;">LV_PART_ITEMS</code> Used if the widget has multiple similar elements (e.g. table cells)
* <code>LV_PART_TICKS</code> Ticks on scales e.g. for a chart or meter
+
* <code style="color: #bb0000;">LV_PART_TICKS</code> Ticks on scales e.g. for a chart or meter
* <code>LV_PART_CURSOR</code> Mark a specific place e.g. text area's or chart's cursor
+
* <code style="color: #bb0000;">LV_PART_CURSOR</code> Mark a specific place e.g. text area's or chart's cursor
* <code>LV_PART_CUSTOM_FIRST</code> Custom part identifiers can be added starting from here.
+
* <code style="color: #bb0000;">LV_PART_CUSTOM_FIRST</code> Custom part identifiers can be added starting from here.
  
 
For example a Slider has three parts:
 
For example a Slider has three parts:
107行目: 97行目:
  
 
== Initialize styles and set/get properties ==
 
== Initialize styles and set/get properties ==
Styles are stored in <code>lv_style_t</code> variables. Style variables should be <code>static</code>, global or dynamically allocated. In other words they cannot be local variables in functions which are destroyed when the function exits. Before using a style it should be initialized with <code>lv_style_init(&my_style)</code>. After initializing a style, properties can be added or changed.
+
Styles are stored in <code style="color: #bb0000;">lv_style_t</code> variables. Style variables should be <code style="color: #bb0000;">static</code>, global or dynamically allocated. In other words they cannot be local variables in functions which are destroyed when the function exits. Before using a style it should be initialized with <code style="color: #bb0000;">lv_style_init(&my_style)</code>. After initializing a style, properties can be added or changed.
  
Property set functions looks like this: <code>lv_style_set_<property_name>(&style, <value>);</code> For example:
+
Property set functions looks like this: <code style="color: #bb0000;">lv_style_set_<property_name>(&style, <value>);</code> For example:
 
  static lv_style_t style_btn;
 
  static lv_style_t style_btn;
 
  lv_style_init(&style_btn);
 
  lv_style_init(&style_btn);
129行目: 119行目:
 
  do_something(v.color);
 
  do_something(v.color);
 
  }
 
  }
<code>lv_style_value_t</code> has 3 fields:
+
<code style="color: #bb0000;">lv_style_value_t</code> has 3 fields:
  
* <code>num</code> for integer, boolean and opacity properties
+
* <code style="color: #bb0000;">num</code> for integer, boolean and opacity properties
* <code>color</code> for color properties
+
* <code style="color: #bb0000;">color</code> for color properties
* <code>ptr</code> for pointer properties
+
* <code style="color: #bb0000;">ptr</code> for pointer properties
  
 
To reset a style (free all its data) use:
 
To reset a style (free all its data) use:
 
  lv_style_reset(&style);
 
  lv_style_reset(&style);
Styles can be built as <code>const</code> too to save RAM:
+
Styles can be built as <code style="color: #bb0000;">const</code> too to save RAM:
 
  const lv_style_const_prop_t style1_props[] = {
 
  const lv_style_const_prop_t style1_props[] = {
 
     LV_STYLE_CONST_WIDTH(50),
 
     LV_STYLE_CONST_WIDTH(50),
145行目: 135行目:
 
        
 
        
 
  LV_STYLE_CONST_INIT(style1, style1_props);
 
  LV_STYLE_CONST_INIT(style1, style1_props);
Later <code>const</code> style can be used like any other style but (obviously) new properties can not be added.
+
Later <code style="color: #bb0000;">const</code> style can be used like any other style but (obviously) new properties can not be added.
  
 
== Add and remove styles to a widget ==
 
== Add and remove styles to a widget ==
151行目: 141行目:
  
 
=== Add styles ===
 
=== Add styles ===
To add a style to an object use <code>lv_obj_add_style(obj, &style, <selector>)</code>. <code><selector></code> is an OR-ed value of parts and state to which the style should be added. Some examples:
+
To add a style to an object use <code style="color: #bb0000;">lv_obj_add_style(obj, &style, <selector>)</code>. <code style="color: #bb0000;"><selector></code> is an OR-ed value of parts and state to which the style should be added. Some examples:
  
* <code>LV_PART_MAIN | LV_STATE_DEFAULT</code>
+
* <code style="color: #bb0000;">LV_PART_MAIN | LV_STATE_DEFAULT</code>
* <code>LV_STATE_PRESSED</code>: The main part in pressed state. <code>LV_PART_MAIN</code> can be omitted
+
* <code style="color: #bb0000;">LV_STATE_PRESSED</code>: The main part in pressed state. <code style="color: #bb0000;">LV_PART_MAIN</code> can be omitted
* <code>LV_PART_SCROLLBAR</code>: The scrollbar part in the default state. <code>LV_STATE_DEFAULT</code> can be omitted.
+
* <code style="color: #bb0000;">LV_PART_SCROLLBAR</code>: The scrollbar part in the default state. <code style="color: #bb0000;">LV_STATE_DEFAULT</code> can be omitted.
* <code>LV_PART_SCROLLBAR | LV_STATE_SCROLLED</code>: The scrollbar part when the object is being scrolled
+
* <code style="color: #bb0000;">LV_PART_SCROLLBAR | LV_STATE_SCROLLED</code>: The scrollbar part when the object is being scrolled
* <code>0</code> Same as <code>LV_PART_MAIN | LV_STATE_DEFAULT</code>.
+
* <code style="color: #bb0000;">0</code> Same as <code style="color: #bb0000;">LV_PART_MAIN | LV_STATE_DEFAULT</code>.
* <code>LV_PART_INDICATOR | LV_STATE_PRESSED | LV_STATE_CHECKED</code> The indicator part when the object is pressed and checked at the same time.
+
* <code style="color: #bb0000;">LV_PART_INDICATOR | LV_STATE_PRESSED | LV_STATE_CHECKED</code> The indicator part when the object is pressed and checked at the same time.
  
  
  
  
Using <code>lv_obj_add_style</code>:
+
Using <code style="color: #bb0000;">lv_obj_add_style</code>:
 
  lv_obj_add_style(btn, &style_btn, 0);        /*Default button style*/
 
  lv_obj_add_style(btn, &style_btn, 0);        /*Default button style*/
 
  lv_obj_add_style(btn, &btn_red, LV_STATE_PRESSED);  /*Overwrite only some colors to red when pressed*/
 
  lv_obj_add_style(btn, &btn_red, LV_STATE_PRESSED);  /*Overwrite only some colors to red when pressed*/
  
 
=== Remove styles ===
 
=== Remove styles ===
To remove all styles from an object use <code>lv_obj_remove_style_all(obj)</code>.
+
To remove all styles from an object use <code style="color: #bb0000;">lv_obj_remove_style_all(obj)</code>.
  
To remove specific styles use <code>lv_obj_remove_style(obj, style, selector)</code>. This function will remove <code>style</code> only if the <code>selector</code> matches with the <code>selector</code> used in <code>lv_obj_add_style</code>. <code>style</code> can be <code>NULL</code> to check only the <code>selector</code> and remove all matching styles. The <code>selector</code> can use the <code>LV_STATE_ANY</code> and <code>LV_PART_ANY</code> values to remove the style from any state or part.
+
To remove specific styles use <code style="color: #bb0000;">lv_obj_remove_style(obj, style, selector)</code>. This function will remove <code style="color: #bb0000;">style</code> only if the <code style="color: #bb0000;">selector</code> matches with the <code style="color: #bb0000;">selector</code> used in <code style="color: #bb0000;">lv_obj_add_style</code>. <code style="color: #bb0000;">style</code> can be <code style="color: #bb0000;">NULL</code> to check only the <code style="color: #bb0000;">selector</code> and remove all matching styles. The <code style="color: #bb0000;">selector</code> can use the <code style="color: #bb0000;">LV_STATE_ANY</code> and <code style="color: #bb0000;">LV_PART_ANY</code> values to remove the style from any state or part.
  
 
=== Report style changes ===
 
=== Report style changes ===
 
If a style which is already assigned to an object changes (i.e. a property is added or changed), the objects using that style should be notified. There are 3 options to do this:
 
If a style which is already assigned to an object changes (i.e. a property is added or changed), the objects using that style should be notified. There are 3 options to do this:
  
# If you know that the changed properties can be applied by a simple redraw (e.g. color or opacity changes) just call <code>lv_obj_invalidate(obj)</code> or <code>lv_obj_invalidate(lv_scr_act())</code>.
+
# If you know that the changed properties can be applied by a simple redraw (e.g. color or opacity changes) just call <code style="color: #bb0000;">lv_obj_invalidate(obj)</code> or <code style="color: #bb0000;">lv_obj_invalidate(lv_scr_act())</code>.
# If more complex style properties were changed or added, and you know which object(s) are affected by that style call <code>lv_obj_refresh_style(obj, part, property)</code>. To refresh all parts and properties use <code>lv_obj_refresh_style(obj, LV_PART_ANY, LV_STYLE_PROP_ANY)</code>.
+
# If more complex style properties were changed or added, and you know which object(s) are affected by that style call <code style="color: #bb0000;">lv_obj_refresh_style(obj, part, property)</code>. To refresh all parts and properties use <code style="color: #bb0000;">lv_obj_refresh_style(obj, LV_PART_ANY, LV_STYLE_PROP_ANY)</code>.
# To make LVGL check all objects to see if they use a style and refresh them when needed, call <code>lv_obj_report_style_change(&style)</code>. If <code>style</code> is <code>NULL</code> all objects will be notified about a style change.
+
# To make LVGL check all objects to see if they use a style and refresh them when needed, call <code style="color: #bb0000;">lv_obj_report_style_change(&style)</code>. If <code style="color: #bb0000;">style</code> is <code style="color: #bb0000;">NULL</code> all objects will be notified about a style change.
  
  
183行目: 173行目:
  
 
=== Get a property's value on an object ===
 
=== Get a property's value on an object ===
To get a final value of property - considering cascading, inheritance, local styles and transitions (see below) - property get functions like this can be used: <code>lv_obj_get_style_<property_name>(obj, <part>)</code>. These functions use the object's current state and if no better candidate exists they return a default value.   For example:
+
To get a final value of property - considering cascading, inheritance, local styles and transitions (see below) - property get functions like this can be used: <code style="color: #bb0000;">lv_obj_get_style_<property_name>(obj, <part>)</code>. These functions use the object's current state and if no better candidate exists they return a default value.   For example:
 
  lv_color_t color = lv_obj_get_style_bg_color(btn, LV_PART_MAIN);
 
  lv_color_t color = lv_obj_get_style_bg_color(btn, LV_PART_MAIN);
  
 
== Local styles ==
 
== Local styles ==
In addition to "normal" styles, objects can also store local styles. This concept is similar to inline styles in CSS (e.g. <code><nowiki><div style="color:red"></nowiki></code>) with some modification.
+
In addition to "normal" styles, objects can also store local styles. This concept is similar to inline styles in CSS (e.g. <code style="color: #bb0000;"><nowiki><div style="color:red"></nowiki></code>) with some modification.
  
 
Local styles are like normal styles, but they can't be shared among other objects. If used, local styles are allocated automatically, and freed when the object is deleted. They are useful to add local customization to an object.
 
Local styles are like normal styles, but they can't be shared among other objects. If used, local styles are allocated automatically, and freed when the object is deleted. They are useful to add local customization to an object.
193行目: 183行目:
 
Unlike in CSS, LVGL local styles can be assigned to states (''pseudo-classes'') and parts (''pseudo-elements'').
 
Unlike in CSS, LVGL local styles can be assigned to states (''pseudo-classes'') and parts (''pseudo-elements'').
  
To set a local property use functions like <code>lv_obj_set_style_<property_name>(obj, <value>, <selector>);</code>   For example:
+
To set a local property use functions like <code style="color: #bb0000;">lv_obj_set_style_<property_name>(obj, <value>, <selector>);</code>   For example:
 
  lv_obj_set_style_bg_color(slider, lv_color_red(), LV_PART_INDICATOR | LV_STATE_FOCUSED);
 
  lv_obj_set_style_bg_color(slider, lv_color_red(), LV_PART_INDICATOR | LV_STATE_FOCUSED);
  
222行目: 212行目:
 
The transition properties can be defined for each state. For example, setting a 500 ms transition time in the default state means that when the object goes to the default state a 500 ms transition time is applied. Setting a 100 ms transition time in the pressed state causes a 100 ms transition when going to the pressed state. This example configuration results in going to the pressed state quickly and then going back to default slowly.
 
The transition properties can be defined for each state. For example, setting a 500 ms transition time in the default state means that when the object goes to the default state a 500 ms transition time is applied. Setting a 100 ms transition time in the pressed state causes a 100 ms transition when going to the pressed state. This example configuration results in going to the pressed state quickly and then going back to default slowly.
  
To describe a transition an <code>lv_transition_dsc_t</code> variable needs to be initialized and added to a style:
+
To describe a transition an <code style="color: #bb0000;">lv_transition_dsc_t</code> variable needs to be initialized and added to a style:
 
  /*Only its pointer is saved so must static, global or dynamically allocated */
 
  /*Only its pointer is saved so must static, global or dynamically allocated */
 
  static const lv_style_prop_t trans_props[] = {
 
  static const lv_style_prop_t trans_props[] = {
254行目: 244行目:
 
                                          
 
                                          
 
  lv_disp_set_theme(display, th); /*Assign the theme to the display*/
 
  lv_disp_set_theme(display, th); /*Assign the theme to the display*/
The included themes are enabled in <code>lv_conf.h</code>. If the default theme is enabled by <code>LV_USE_THEME_DEFAULT 1</code> LVGL automatically initializes and sets it when a display is created.
+
The included themes are enabled in <code style="color: #bb0000;">lv_conf.h</code>. If the default theme is enabled by <code style="color: #bb0000;">LV_USE_THEME_DEFAULT 1</code> LVGL automatically initializes and sets it when a display is created.
  
 
=== Extending themes ===
 
=== Extending themes ===
 
Built-in themes can be extended. If a custom theme is created, a parent theme can be selected. The parent theme's styles will be added before the custom theme's styles. Any number of themes can be chained this way. E.g. default theme -> custom theme -> dark theme.
 
Built-in themes can be extended. If a custom theme is created, a parent theme can be selected. The parent theme's styles will be added before the custom theme's styles. Any number of themes can be chained this way. E.g. default theme -> custom theme -> dark theme.
  
<code>lv_theme_set_parent(new_theme, base_theme)</code> extends the <code>base_theme</code> with the <code>new_theme</code>.
+
<code style="color: #bb0000;">lv_theme_set_parent(new_theme, base_theme)</code> extends the <code style="color: #bb0000;">base_theme</code> with the <code style="color: #bb0000;">new_theme</code>.
  
 
There is an example for it below.
 
There is an example for it below.
324行目: 314行目:
 
Typedefs
 
Typedefs
  
; <span id="_CPPv315lv_blend_mode_t"></span><span id="_CPPv215lv_blend_mode_t"></span><span id="lv_blend_mode_t"></span><span id="lv__style_8h_1ad52e4c2072a180294b961e21c82bc269" class="target"></span>typedef uint8_t lv_blend_mode_t[https://docs.lvgl.io/8.2/overview/style.html#_CPPv415lv_blend_mode_t] <span id="_CPPv315lv_blend_mode_t"></span><span id="_CPPv215lv_blend_mode_t"></span><span id="lv_blend_mode_t"></span><span id="lv__style_8h_1ad52e4c2072a180294b961e21c82bc269" class="target"></span>
+
typedef uint8_t lv_blend_mode_t  
 
:
 
:
  
; <span id="_CPPv315lv_text_decor_t"></span><span id="_CPPv215lv_text_decor_t"></span><span id="lv_text_decor_t"></span><span id="lv__style_8h_1aadfb1a861a2761a304ab5d133e7dcde6" class="target"></span>typedef uint8_t lv_te[https://docs.lvgl.io/8.2/overview/style.html#_CPPv415lv_blend_mode_t]xt_decor_t[https://docs.lvgl.io/8.2/overview/style.html#_CPPv415lv_text_decor_t] <span id="_CPPv315lv_text_decor_t"></span><span id="_CPPv215lv_text_decor_t"></span><span id="lv_text_decor_t"></span><span id="lv__style_8h_1aadfb1a861a2761a304ab5d133e7dcde6" class="target"></span>
+
typedef uint8_t lv_text_decor_t  
 
:
 
:
  
; <span id="_CPPv316lv_border_side_t"></span><span id="_CPPv216lv_border_side_t"></span><span id="lv_border_side_t"></span><span id="lv__style_8h_1af66f9a2077b7c085f8d7f0052bb6b412" class="target"></span>typedef uint8_t lv_bo[https://docs.lvgl.io/8.2/overview/style.html#_CPPv415lv_text_decor_t]rder_side_t[https://docs.lvgl.io/8.2/overview/style.html#_CPPv416lv_border_side_t] <span id="_CPPv316lv_border_side_t"></span><span id="_CPPv216lv_border_side_t"></span><span id="lv_border_side_t"></span><span id="lv__style_8h_1af66f9a2077b7c085f8d7f0052bb6b412" class="target"></span>
+
typedef uint8_t lv_border_side_t  
 
:
 
:
  
; <span id="_CPPv313lv_grad_dir_t"></span><span id="_CPPv213lv_grad_dir_t"></span><span id="lv_grad_dir_t"></span><span id="lv__style_8h_1ae106149b1291811b065fbfd20dfdcfa8" class="target"></span>typedef uint8_t lv_gra[https://docs.lvgl.io/8.2/overview/style.html#_CPPv416lv_border_side_t]d_dir_t[https://docs.lvgl.io/8.2/overview/style.html#_CPPv413lv_grad_dir_t] <span id="_CPPv313lv_grad_dir_t"></span><span id="_CPPv213lv_grad_dir_t"></span><span id="lv_grad_dir_t"></span><span id="lv__style_8h_1ae106149b1291811b065fbfd20dfdcfa8" class="target"></span>
+
typedef uint8_t lv_grad_dir_t  
 
:
 
:
  
; <span id="_CPPv316lv_dither_mode_t"></span><span id="_CPPv216lv_dither_mode_t"></span><span id="lv_dither_mode_t"></span><span id="lv__style_8h_1a9df220f84b80db98e4b1c1fd4c0ca412" class="target"></span>typedef uint8_t lv_[https://docs.lvgl.io/8.2/overview/style.html#_CPPv413lv_grad_dir_t]dither_mode_t[https://docs.lvgl.io/8.2/overview/style.html#_CPPv416lv_dither_mode_t] <span id="_CPPv316lv_dither_mode_t"></span><span id="_CPPv216lv_dither_mode_t"></span><span id="lv_dither_mode_t"></span><span id="lv__style_8h_1a9df220f84b80db98e4b1c1fd4c0ca412" class="target"></span>
+
typedef uint8_t lv_dither_mode_t  
 
:
 
:
  
 
Enums
 
Enums
  
; <span id="_CPPv3Ut2_57"></span><span id="lv__style_8h_1afa9be5679ab03d785820f2474c5ccc6e" class="target"></span>enum [anonymous[https://docs.lvgl.io/8.2/overview/style.html#_CPPv416lv_dither_mode_t]][https://docs.lvgl.io/8.2/overview/style.html#_CPPv4Ut2_57] <span id="_CPPv3Ut2_57"></span><span id="lv__style_8h_1afa9be5679ab03d785820f2474c5ccc6e" class="target"></span>
+
enum [anonymous]  
: Possible opt[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4Ut2_57]ions how to blend opaque drawings  ''Values:''
+
: Possible options how to blend opaque drawings  ''Values:''
:; <span id="_CPPv3NUt2_5720LV_BLEND_MODE_NORMALE"></span><span id="lv__style_8h_1afa9be5679ab03d785820f2474c5ccc6eaad57a0fd5e04f5691d8f417ee5434b7e" class="target"></span>enumerator LV_BLEND_MODE_NORMAL[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4NUt2_5720LV_BLEND_MODE_NORMALE] <span id="_CPPv3NUt2_5720LV_BLEND_MODE_NORMALE"></span><span id="lv__style_8h_1afa9be5679ab03d785820f2474c5ccc6eaad57a0fd5e04f5691d8f417ee5434b7e" class="target"></span>
+
: enumerator LV_BLEND_MODE_NORMAL  
:: Simply mix according to the[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4NUt2_5720LV_BLEND_MODE_NORMALE] opacity value
+
:: Simply mix according to the opacity value
:; <span id="_CPPv3NUt2_5722LV_BLEND_MODE_ADDITIVEE"></span><span id="lv__style_8h_1afa9be5679ab03d785820f2474c5ccc6eaa35a45cbb14d375c4456ca9fa0bb738c" class="target"></span>enumerator LV_BLEND_MODE_ADDITIVE[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4NUt2_5722LV_BLEND_MODE_ADDITIVEE] <span id="_CPPv3NUt2_5722LV_BLEND_MODE_ADDITIVEE"></span><span id="lv__style_8h_1afa9be5679ab03d785820f2474c5ccc6eaa35a45cbb14d375c4456ca9fa0bb738c" class="target"></span>
+
: enumerator LV_BLEND_MODE_ADDITIVE  
:: Add the respective color chan[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4NUt2_5722LV_BLEND_MODE_ADDITIVEE]nels
+
:: Add the respective color channels
:; <span id="_CPPv3NUt2_5725LV_BLEND_MODE_SUBTRACTIVEE"></span><span id="lv__style_8h_1afa9be5679ab03d785820f2474c5ccc6ea632a80f5de7303b6f69c97dde652ac75" class="target"></span>enumerator LV_BLEND_MODE_SUBTRACTIVE[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4NUt2_5725LV_BLEND_MODE_SUBTRACTIVEE] <span id="_CPPv3NUt2_5725LV_BLEND_MODE_SUBTRACTIVEE"></span><span id="lv__style_8h_1afa9be5679ab03d785820f2474c5ccc6ea632a80f5de7303b6f69c97dde652ac75" class="target"></span>
+
: enumerator LV_BLEND_MODE_SUBTRACTIVE  
:: Subtract the foreground from the[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4NUt2_5725LV_BLEND_MODE_SUBTRACTIVEE] background
+
:: Subtract the foreground from the background
:; <span id="_CPPv3NUt2_5722LV_BLEND_MODE_MULTIPLYE"></span><span id="lv__style_8h_1afa9be5679ab03d785820f2474c5ccc6ea4ebd0867a05fc12d714a937bbcfaa91e" class="target"></span>enumerator LV_BLEND_MODE_MULTIPLY[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4NUt2_5722LV_BLEND_MODE_MULTIPLYE] <span id="_CPPv3NUt2_5722LV_BLEND_MODE_MULTIPLYE"></span><span id="lv__style_8h_1afa9be5679ab03d785820f2474c5ccc6ea4ebd0867a05fc12d714a937bbcfaa91e" class="target"></span>
+
: enumerator LV_BLEND_MODE_MULTIPLY  
:: Multiply the foreground and b[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4NUt2_5722LV_BLEND_MODE_MULTIPLYE]ackground
+
:: Multiply the foreground and background
:; <span id="_CPPv3NUt2_5721LV_BLEND_MODE_REPLACEE"></span><span id="lv__style_8h_1afa9be5679ab03d785820f2474c5ccc6ea29d36360b69dffbc1d9154f953381afd" class="target"></span>enumerator LV_BLEND_MODE_REPLACE[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4NUt2_5721LV_BLEND_MODE_REPLACEE] <span id="_CPPv3NUt2_5721LV_BLEND_MODE_REPLACEE"></span><span id="lv__style_8h_1afa9be5679ab03d785820f2474c5ccc6ea29d36360b69dffbc1d9154f953381afd" class="target"></span>
+
: enumerator LV_BLEND_MODE_REPLACE  
:: Replace background with fore[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4NUt2_5721LV_BLEND_MODE_REPLACEE]ground in the area
+
:: Replace background with foreground in the area
  
; <span id="_CPPv3Ut2_58"></span><span id="lv__style_8h_1ae6dceca96ec2c7a1b4aa211264a87ef6" class="target"></span>enum [anonymous][https://docs.lvgl.io/8.2/overview/style.html#_CPPv4Ut2_58] <span id="_CPPv3Ut2_58"></span><span id="lv__style_8h_1ae6dceca96ec2c7a1b4aa211264a87ef6" class="target"></span>
+
enum [anonymous]  
: Some options[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4Ut2_58] to apply decorations on texts. 'OR'ed values can be used.  ''Values:''
+
: Some options to apply decorations on texts. 'OR'ed values can be used.  ''Values:''
:; <span id="_CPPv3NUt2_5818LV_TEXT_DECOR_NONEE"></span><span id="lv__style_8h_1ae6dceca96ec2c7a1b4aa211264a87ef6a7c180b0226472d683d044c37f36cc648" class="target"></span>enumerator LV_TEXT_DECOR_NONE[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4NUt2_5818LV_TEXT_DECOR_NONEE] <span id="_CPPv3NUt2_5818LV_TEXT_DECOR_NONEE"></span><span id="lv__style_8h_1ae6dceca96ec2c7a1b4aa211264a87ef6a7c180b0226472d683d044c37f36cc648" class="target"></span>
+
: enumerator LV_TEXT_DECOR_NONE  
 
::
 
::
:; <span id="_CPPv3NUt2_5823LV_TEXT_DECOR_UNDERLINEE"></span><span id="lv__style_8h_1ae6dceca96ec2c7a1b4aa211264a87ef6a8b9bbda381a79b36884d0028c9e29361" class="target"></span>enumerator LV_TEXT_[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4NUt2_5818LV_TEXT_DECOR_NONEE]DECOR_UNDERLINE[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4NUt2_5823LV_TEXT_DECOR_UNDERLINEE] <span id="_CPPv3NUt2_5823LV_TEXT_DECOR_UNDERLINEE"></span><span id="lv__style_8h_1ae6dceca96ec2c7a1b4aa211264a87ef6a8b9bbda381a79b36884d0028c9e29361" class="target"></span>
+
: enumerator LV_TEXT_DECOR_UNDERLINE
 
::
 
::
:; <span id="_CPPv3NUt2_5827LV_TEXT_DECOR_STRIKETHROUGHE"></span><span id="lv__style_8h_1ae6dceca96ec2c7a1b4aa211264a87ef6a1d9716ac9403b2f7e3c4e757d11e3c46" class="target"></span>enumerator LV_TEXT_DECOR[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4NUt2_5823LV_TEXT_DECOR_UNDERLINEE]_STRIKETHROUGH[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4NUt2_5827LV_TEXT_DECOR_STRIKETHROUGHE] <span id="_CPPv3NUt2_5827LV_TEXT_DECOR_STRIKETHROUGHE"></span><span id="lv__style_8h_1ae6dceca96ec2c7a1b4aa211264a87ef6a1d9716ac9403b2f7e3c4e757d11e3c46" class="target"></span>
+
: enumerator LV_TEXT_DECOR_STRIKETHROUGH
 
::
 
::
  
; <span id="_CPPv3Ut2_59"></span><span id="lv__style_8h_1a56a0f36da7f9eaaf54bd05cc2bf49173" class="target"></span>enum [anonymous][https://docs.lvgl.io/8.2/overview/style.html#_CPPv4Ut2_59] <span id="_CPPv3Ut2_59"></span><span id="lv__style_8h_1a56a0f36da7f9eaaf54bd05cc2bf49173" class="target"></span>
+
enum [anonymous]  
: Sele[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4NUt2_5827LV_TEXT_DECOR_STRIKETHROUGHE]cts on w[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4Ut2_59]hich sides border should be drawn 'OR'ed values can be used.  ''Values:''
+
: Selects on which sides border should be drawn 'OR'ed values can be used.  ''Values:''
:; <span id="_CPPv3NUt2_5919LV_BORDER_SIDE_NONEE"></span><span id="lv__style_8h_1a56a0f36da7f9eaaf54bd05cc2bf49173a855fbe2d6a6ca1735e63379de717ab41" class="target"></span>enumerator LV_BORDER_SIDE_NONE[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4NUt2_5919LV_BORDER_SIDE_NONEE] <span id="_CPPv3NUt2_5919LV_BORDER_SIDE_NONEE"></span><span id="lv__style_8h_1a56a0f36da7f9eaaf54bd05cc2bf49173a855fbe2d6a6ca1735e63379de717ab41" class="target"></span>
+
: enumerator LV_BORDER_SIDE_NONE  
 
::
 
::
:; <span id="_CPPv3NUt2_5921LV_BORDER_SIDE_BOTTOME"></span><span id="lv__style_8h_1a56a0f36da7f9eaaf54bd05cc2bf49173a3022f7b36b00f3903f1e89ea4dcb6ad0" class="target"></span>enumerator LV_BORDER[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4NUt2_5919LV_BORDER_SIDE_NONEE]_SIDE_BOTTOM[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4NUt2_5921LV_BORDER_SIDE_BOTTOME] <span id="_CPPv3NUt2_5921LV_BORDER_SIDE_BOTTOME"></span><span id="lv__style_8h_1a56a0f36da7f9eaaf54bd05cc2bf49173a3022f7b36b00f3903f1e89ea4dcb6ad0" class="target"></span>
+
: enumerator LV_BORDER_SIDE_BOTTOM
 
::
 
::
:; <span id="_CPPv3NUt2_5918LV_BORDER_SIDE_TOPE"></span><span id="lv__style_8h_1a56a0f36da7f9eaaf54bd05cc2bf49173a1882c079eff65077bbcc2259a5efa139" class="target"></span>enumerator LV_BORDER_S[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4NUt2_5921LV_BORDER_SIDE_BOTTOME]IDE_TOP[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4NUt2_5918LV_BORDER_SIDE_TOPE] <span id="_CPPv3NUt2_5918LV_BORDER_SIDE_TOPE"></span><span id="lv__style_8h_1a56a0f36da7f9eaaf54bd05cc2bf49173a1882c079eff65077bbcc2259a5efa139" class="target"></span>
+
: enumerator LV_BORDER_SIDE_TOP
 
::
 
::
:; <span id="_CPPv3NUt2_5919LV_BORDER_SIDE_LEFTE"></span><span id="lv__style_8h_1a56a0f36da7f9eaaf54bd05cc2bf49173a7e27afb27fd43eb2766f99c5eaf4dab1" class="target"></span>enumerator LV_BORDE[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4NUt2_5918LV_BORDER_SIDE_TOPE]R_SIDE_LEFT[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4NUt2_5919LV_BORDER_SIDE_LEFTE] <span id="_CPPv3NUt2_5919LV_BORDER_SIDE_LEFTE"></span><span id="lv__style_8h_1a56a0f36da7f9eaaf54bd05cc2bf49173a7e27afb27fd43eb2766f99c5eaf4dab1" class="target"></span>
+
: enumerator LV_BORDER_SIDE_LEFT
 
::
 
::
:; <span id="_CPPv3NUt2_5920LV_BORDER_SIDE_RIGHTE"></span><span id="lv__style_8h_1a56a0f36da7f9eaaf54bd05cc2bf49173a37880a94791d409b256829c13ca4ce4b" class="target"></span>enumerator LV_BORDER[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4NUt2_5919LV_BORDER_SIDE_LEFTE]_SIDE_RIGHT[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4NUt2_5920LV_BORDER_SIDE_RIGHTE] <span id="_CPPv3NUt2_5920LV_BORDER_SIDE_RIGHTE"></span><span id="lv__style_8h_1a56a0f36da7f9eaaf54bd05cc2bf49173a37880a94791d409b256829c13ca4ce4b" class="target"></span>
+
: enumerator LV_BORDER_SIDE_RIGHT
 
::
 
::
:; <span id="_CPPv3NUt2_5919LV_BORDER_SIDE_FULLE"></span><span id="lv__style_8h_1a56a0f36da7f9eaaf54bd05cc2bf49173a9cae2792fb8b898c531ed9e83f2ff79f" class="target"></span>enumerator LV_BORDER_[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4NUt2_5920LV_BORDER_SIDE_RIGHTE]SIDE_FULL[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4NUt2_5919LV_BORDER_SIDE_FULLE] <span id="_CPPv3NUt2_5919LV_BORDER_SIDE_FULLE"></span><span id="lv__style_8h_1a56a0f36da7f9eaaf54bd05cc2bf49173a9cae2792fb8b898c531ed9e83f2ff79f" class="target"></span>
+
: enumerator LV_BORDER_SIDE_FULL
 
::
 
::
:; <span id="_CPPv3NUt2_5923LV_BORDER_SIDE_INTERNALE"></span><span id="lv__style_8h_1a56a0f36da7f9eaaf54bd05cc2bf49173ae90b8d5d4dd0b95b34b42faa13e813a1" class="target"></span>enumerator LV_BORDER[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4NUt2_5919LV_BORDER_SIDE_FULLE]_SIDE_INTERNAL[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4NUt2_5923LV_BORDER_SIDE_INTERNALE] <span id="_CPPv3NUt2_5923LV_BORDER_SIDE_INTERNALE"></span><span id="lv__style_8h_1a56a0f36da7f9eaaf54bd05cc2bf49173ae90b8d5d4dd0b95b34b42faa13e813a1" class="target"></span>
+
: enumerator LV_BORDER_SIDE_INTERNAL
:: FOR matrix-like objects (e.g. [https://docs.lvgl.io/8.2/overview/style.html#_CPPv4NUt2_5923LV_BORDER_SIDE_INTERNALE]Button matrix)
+
:: FOR matrix-like objects (e.g. Button matrix)
  
; <span id="_CPPv3Ut2_60"></span><span id="lv__style_8h_1aa156d1cebb38c8a65846c4d9c006012a" class="target"></span>enum [anonymous][https://docs.lvgl.io/8.2/overview/style.html#_CPPv4Ut2_60] <span id="_CPPv3Ut2_60"></span><span id="lv__style_8h_1aa156d1cebb38c8a65846c4d9c006012a" class="target"></span>
+
enum [anonymous]  
: The directio[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4Ut2_60]n of the gradient.  ''Values:''
+
: The direction of the gradient.  ''Values:''
:; <span id="_CPPv3NUt2_6016LV_GRAD_DIR_NONEE"></span><span id="lv__style_8h_1aa156d1cebb38c8a65846c4d9c006012aa60a3da887d76575265882bdf7be3e3ae" class="target"></span>enumerator LV_GRAD_DIR_NONE[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4NUt2_6016LV_GRAD_DIR_NONEE] <span id="_CPPv3NUt2_6016LV_GRAD_DIR_NONEE"></span><span id="lv__style_8h_1aa156d1cebb38c8a65846c4d9c006012aa60a3da887d76575265882bdf7be3e3ae" class="target"></span>
+
: enumerator LV_GRAD_DIR_NONE  
:: No gradient (the <code>grad_c</code>[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4NUt2_6016LV_GRAD_DIR_NONEE]<code>olor</code> property is ignored)
+
:: No gradient (the <code style="color: #bb0000;">grad_c</code><code style="color: #bb0000;">olor</code> property is ignored)
:; <span id="_CPPv3NUt2_6015LV_GRAD_DIR_VERE"></span><span id="lv__style_8h_1aa156d1cebb38c8a65846c4d9c006012aa213ea9c1af983a3b7d4dbe131e30ec67" class="target"></span>enumerator LV_GRAD_DIR_VER[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4NUt2_6015LV_GRAD_DIR_VERE] <span id="_CPPv3NUt2_6015LV_GRAD_DIR_VERE"></span><span id="lv__style_8h_1aa156d1cebb38c8a65846c4d9c006012aa213ea9c1af983a3b7d4dbe131e30ec67" class="target"></span>
+
: enumerator LV_GRAD_DIR_VER  
:: Vertical (top to botto[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4NUt2_6015LV_GRAD_DIR_VERE]m) gradient
+
:: Vertical (top to bottom) gradient
:; <span id="_CPPv3NUt2_6015LV_GRAD_DIR_HORE"></span><span id="lv__style_8h_1aa156d1cebb38c8a65846c4d9c006012aa79ffa390d3d116ed50fd14551298ddc2" class="target"></span>enumerator LV_GRAD_DIR_HOR[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4NUt2_6015LV_GRAD_DIR_HORE] <span id="_CPPv3NUt2_6015LV_GRAD_DIR_HORE"></span><span id="lv__style_8h_1aa156d1cebb38c8a65846c4d9c006012aa79ffa390d3d116ed50fd14551298ddc2" class="target"></span>
+
: enumerator LV_GRAD_DIR_HOR  
:: Horizontal (left to ri[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4NUt2_6015LV_GRAD_DIR_HORE]ght) gradient
+
:: Horizontal (left to right) gradient
  
; <span id="_CPPv3Ut2_61"></span><span id="lv__style_8h_1af8654c714018c6241d9ebd01f3fb5a26" class="target"></span>enum [anonymous][https://docs.lvgl.io/8.2/overview/style.html#_CPPv4Ut2_61] <span id="_CPPv3Ut2_61"></span><span id="lv__style_8h_1af8654c714018c6241d9ebd01f3fb5a26" class="target"></span>
+
enum [anonymous]  
: The ditherin[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4Ut2_61]g algorithm for the gradient Depends on LV_DITHER_GRADIENT  ''Values:''
+
: The dithering algorithm for the gradient Depends on LV_DITHER_GRADIENT  ''Values:''
:; <span id="_CPPv3NUt2_6114LV_DITHER_NONEE"></span><span id="lv__style_8h_1af8654c714018c6241d9ebd01f3fb5a26a02582eae16823f771c18e07455d3464c" class="target"></span>enumerator LV_DITHER_NONE[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4NUt2_6114LV_DITHER_NONEE] <span id="_CPPv3NUt2_6114LV_DITHER_NONEE"></span><span id="lv__style_8h_1af8654c714018c6241d9ebd01f3fb5a26a02582eae16823f771c18e07455d3464c" class="target"></span>
+
: enumerator LV_DITHER_NONE  
:: No dithering, colors [https://docs.lvgl.io/8.2/overview/style.html#_CPPv4NUt2_6114LV_DITHER_NONEE]are just quantized to the output resolution
+
:: No dithering, colors are just quantized to the output resolution
:; <span id="_CPPv3NUt2_6117LV_DITHER_ORDEREDE"></span><span id="lv__style_8h_1af8654c714018c6241d9ebd01f3fb5a26a9fa39743532b7075d9ccbef81e06458e" class="target"></span>enumerator LV_DITHER_ORDERED[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4NUt2_6117LV_DITHER_ORDEREDE] <span id="_CPPv3NUt2_6117LV_DITHER_ORDEREDE"></span><span id="lv__style_8h_1af8654c714018c6241d9ebd01f3fb5a26a9fa39743532b7075d9ccbef81e06458e" class="target"></span>
+
: enumerator LV_DITHER_ORDERED  
:: Ordered dithering. Faste[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4NUt2_6117LV_DITHER_ORDEREDE]r to compute and use less memory but lower quality
+
:: Ordered dithering. Faster to compute and use less memory but lower quality
:; <span id="_CPPv3NUt2_6118LV_DITHER_ERR_DIFFE"></span><span id="lv__style_8h_1af8654c714018c6241d9ebd01f3fb5a26ac914ec43ff59c9e73de5d7ef51cd0857" class="target"></span>enumerator LV_DITHER_ERR_DIFF[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4NUt2_6118LV_DITHER_ERR_DIFFE] <span id="_CPPv3NUt2_6118LV_DITHER_ERR_DIFFE"></span><span id="lv__style_8h_1af8654c714018c6241d9ebd01f3fb5a26ac914ec43ff59c9e73de5d7ef51cd0857" class="target"></span>
+
: enumerator LV_DITHER_ERR_DIFF  
:: Error diffusion mode. Slo[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4NUt2_6118LV_DITHER_ERR_DIFFE]wer to compute and use more memory but give highest dither quality
+
:: Error diffusion mode. Slower to compute and use more memory but give highest dither quality
  
; <span id="_CPPv315lv_style_prop_t"></span><span id="_CPPv215lv_style_prop_t"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5" class="target"></span>enum lv_style_prop_t[https://docs.lvgl.io/8.2/overview/style.html#_CPPv415lv_style_prop_t] <span id="_CPPv315lv_style_prop_t"></span><span id="_CPPv215lv_style_prop_t"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5" class="target"></span>
+
enum lv_style_prop_t  
: Enumeration of a[https://docs.lvgl.io/8.2/overview/style.html#_CPPv415lv_style_prop_t]ll built in style properties
+
: Enumeration of all built in style properties
  
  
405行目: 395行目:
 
''Values:''
 
''Values:''
  
; <span id="_CPPv3N15lv_style_prop_t17LV_STYLE_PROP_INVE"></span><span id="_CPPv2N15lv_style_prop_t17LV_STYLE_PROP_INVE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a7d81b251b187899d0ece7783b95d0176" class="target"></span>enumerator LV_STYLE_PROP_INV[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t17LV_STYLE_PROP_INVE] <span id="_CPPv3N15lv_style_prop_t17LV_STYLE_PROP_INVE"></span><span id="_CPPv2N15lv_style_prop_t17LV_STYLE_PROP_INVE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a7d81b251b187899d0ece7783b95d0176" class="target"></span>
+
enumerator LV_STYLE_PROP_INV  
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t14LV_STYLE_WIDTHE"></span><span id="_CPPv2N15lv_style_prop_t14LV_STYLE_WIDTHE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a4298794f02ddc888c235013ee512dadd" class="target"></span>enumerator LV_STYL[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t17LV_STYLE_PROP_INVE]E_WIDTH[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t14LV_STYLE_WIDTHE] <span id="_CPPv3N15lv_style_prop_t14LV_STYLE_WIDTHE"></span><span id="_CPPv2N15lv_style_prop_t14LV_STYLE_WIDTHE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a4298794f02ddc888c235013ee512dadd" class="target"></span>
+
enumerator LV_STYLE_WIDTH
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t18LV_STYLE_MIN_WIDTHE"></span><span id="_CPPv2N15lv_style_prop_t18LV_STYLE_MIN_WIDTHE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a6bbcfba7542ac3bf05c95181b805df0f" class="target"></span>enumerator LV_S[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t14LV_STYLE_WIDTHE]TYLE_MIN_WIDTH[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t18LV_STYLE_MIN_WIDTHE] <span id="_CPPv3N15lv_style_prop_t18LV_STYLE_MIN_WIDTHE"></span><span id="_CPPv2N15lv_style_prop_t18LV_STYLE_MIN_WIDTHE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a6bbcfba7542ac3bf05c95181b805df0f" class="target"></span>
+
enumerator LV_STYLE_MIN_WIDTH
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t18LV_STYLE_MAX_WIDTHE"></span><span id="_CPPv2N15lv_style_prop_t18LV_STYLE_MAX_WIDTHE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5afa697562e5fe5fe6cf3cb440b7ff1e7b" class="target"></span>enumerator LV_STYLE[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t18LV_STYLE_MIN_WIDTHE]_MAX_WIDTH[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t18LV_STYLE_MAX_WIDTHE] <span id="_CPPv3N15lv_style_prop_t18LV_STYLE_MAX_WIDTHE"></span><span id="_CPPv2N15lv_style_prop_t18LV_STYLE_MAX_WIDTHE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5afa697562e5fe5fe6cf3cb440b7ff1e7b" class="target"></span>
+
enumerator LV_STYLE_MAX_WIDTH
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t15LV_STYLE_HEIGHTE"></span><span id="_CPPv2N15lv_style_prop_t15LV_STYLE_HEIGHTE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a183006041efa030d1f2a0513c9f69d63" class="target"></span>enumerator LV_STYLE[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t18LV_STYLE_MAX_WIDTHE]_HEIGHT[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t15LV_STYLE_HEIGHTE] <span id="_CPPv3N15lv_style_prop_t15LV_STYLE_HEIGHTE"></span><span id="_CPPv2N15lv_style_prop_t15LV_STYLE_HEIGHTE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a183006041efa030d1f2a0513c9f69d63" class="target"></span>
+
enumerator LV_STYLE_HEIGHT
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t19LV_STYLE_MIN_HEIGHTE"></span><span id="_CPPv2N15lv_style_prop_t19LV_STYLE_MIN_HEIGHTE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5ab8d5c9ffcbfc73ddad0cd2d72f2353e5" class="target"></span>enumerator LV_ST[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t15LV_STYLE_HEIGHTE]YLE_MIN_HEIGHT[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t19LV_STYLE_MIN_HEIGHTE] <span id="_CPPv3N15lv_style_prop_t19LV_STYLE_MIN_HEIGHTE"></span><span id="_CPPv2N15lv_style_prop_t19LV_STYLE_MIN_HEIGHTE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5ab8d5c9ffcbfc73ddad0cd2d72f2353e5" class="target"></span>
+
enumerator LV_STYLE_MIN_HEIGHT
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t19LV_STYLE_MAX_HEIGHTE"></span><span id="_CPPv2N15lv_style_prop_t19LV_STYLE_MAX_HEIGHTE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a8dc059182c7d214476bfd6c6c00b5fe1" class="target"></span>enumerator LV_STYLE_[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t19LV_STYLE_MIN_HEIGHTE]MAX_HEIGHT[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t19LV_STYLE_MAX_HEIGHTE] <span id="_CPPv3N15lv_style_prop_t19LV_STYLE_MAX_HEIGHTE"></span><span id="_CPPv2N15lv_style_prop_t19LV_STYLE_MAX_HEIGHTE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a8dc059182c7d214476bfd6c6c00b5fe1" class="target"></span>
+
enumerator LV_STYLE_MAX_HEIGHT
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t10LV_STYLE_XE"></span><span id="_CPPv2N15lv_style_prop_t10LV_STYLE_XE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a9e77b92ca543806863b7a1c56e6174e8" class="target"></span>enumerator LV_STYLE_[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t19LV_STYLE_MAX_HEIGHTE]X[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t10LV_STYLE_XE] <span id="_CPPv3N15lv_style_prop_t10LV_STYLE_XE"></span><span id="_CPPv2N15lv_style_prop_t10LV_STYLE_XE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a9e77b92ca543806863b7a1c56e6174e8" class="target"></span>
+
enumerator LV_STYLE_X
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t10LV_STYLE_YE"></span><span id="_CPPv2N15lv_style_prop_t10LV_STYLE_YE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a8b98cbd657e6631c2d8402ea636af401" class="target"></span>enumerator [https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t10LV_STYLE_XE]LV_STYLE_Y[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t10LV_STYLE_YE] <span id="_CPPv3N15lv_style_prop_t10LV_STYLE_YE"></span><span id="_CPPv2N15lv_style_prop_t10LV_STYLE_YE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a8b98cbd657e6631c2d8402ea636af401" class="target"></span>
+
enumerator LV_STYLE_Y  
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t14LV_STYLE_ALIGNE"></span><span id="_CPPv2N15lv_style_prop_t14LV_STYLE_ALIGNE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a95e6250f0418713e61379e57695ab87b" class="target"></span>enumerator [https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t10LV_STYLE_YE]LV_STYLE_ALIGN[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t14LV_STYLE_ALIGNE] <span id="_CPPv3N15lv_style_prop_t14LV_STYLE_ALIGNE"></span><span id="_CPPv2N15lv_style_prop_t14LV_STYLE_ALIGNE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a95e6250f0418713e61379e57695ab87b" class="target"></span>
+
enumerator LV_STYLE_ALIGN  
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t24LV_STYLE_TRANSFORM_WIDTHE"></span><span id="_CPPv2N15lv_style_prop_t24LV_STYLE_TRANSFORM_WIDTHE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a309c354e04cbcd53ade911448040c566" class="target"></span>enumerator LV_S[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t14LV_STYLE_ALIGNE]TYLE_TRANSFORM_WIDTH[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t24LV_STYLE_TRANSFORM_WIDTHE] <span id="_CPPv3N15lv_style_prop_t24LV_STYLE_TRANSFORM_WIDTHE"></span><span id="_CPPv2N15lv_style_prop_t24LV_STYLE_TRANSFORM_WIDTHE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a309c354e04cbcd53ade911448040c566" class="target"></span>
+
enumerator LV_STYLE_TRANSFORM_WIDTH
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t25LV_STYLE_TRANSFORM_HEIGHTE"></span><span id="_CPPv2N15lv_style_prop_t25LV_STYLE_TRANSFORM_HEIGHTE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a64b7c3f18ce60350f476c149ea6263fb" class="target"></span>enumerator LV_STYLE_TRANS[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t24LV_STYLE_TRANSFORM_WIDTHE]FORM_HEIGHT[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t25LV_STYLE_TRANSFORM_HEIGHTE] <span id="_CPPv3N15lv_style_prop_t25LV_STYLE_TRANSFORM_HEIGHTE"></span><span id="_CPPv2N15lv_style_prop_t25LV_STYLE_TRANSFORM_HEIGHTE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a64b7c3f18ce60350f476c149ea6263fb" class="target"></span>
+
enumerator LV_STYLE_TRANSFORM_HEIGHT
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t20LV_STYLE_TRANSLATE_XE"></span><span id="_CPPv2N15lv_style_prop_t20LV_STYLE_TRANSLATE_XE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a825c46b0e982cf4d2a74ff6fb219d510" class="target"></span>enumerator LV_STYLE_TRANSL[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t25LV_STYLE_TRANSFORM_HEIGHTE]ATE_X[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t20LV_STYLE_TRANSLATE_XE] <span id="_CPPv3N15lv_style_prop_t20LV_STYLE_TRANSLATE_XE"></span><span id="_CPPv2N15lv_style_prop_t20LV_STYLE_TRANSLATE_XE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a825c46b0e982cf4d2a74ff6fb219d510" class="target"></span>
+
enumerator LV_STYLE_TRANSLATE_X
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t20LV_STYLE_TRANSLATE_YE"></span><span id="_CPPv2N15lv_style_prop_t20LV_STYLE_TRANSLATE_YE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5aac987efc8c11127afce2765e6d430a01" class="target"></span>enumerator LV_STYLE_T[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t20LV_STYLE_TRANSLATE_XE]RANSLATE_Y[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t20LV_STYLE_TRANSLATE_YE] <span id="_CPPv3N15lv_style_prop_t20LV_STYLE_TRANSLATE_YE"></span><span id="_CPPv2N15lv_style_prop_t20LV_STYLE_TRANSLATE_YE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5aac987efc8c11127afce2765e6d430a01" class="target"></span>
+
enumerator LV_STYLE_TRANSLATE_Y
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t23LV_STYLE_TRANSFORM_ZOOME"></span><span id="_CPPv2N15lv_style_prop_t23LV_STYLE_TRANSFORM_ZOOME"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5ad04b87050a31f462c63bbca33d40547c" class="target"></span>enumerator LV_STYLE_T[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t20LV_STYLE_TRANSLATE_YE]RANSFORM_ZOOM[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t23LV_STYLE_TRANSFORM_ZOOME] <span id="_CPPv3N15lv_style_prop_t23LV_STYLE_TRANSFORM_ZOOME"></span><span id="_CPPv2N15lv_style_prop_t23LV_STYLE_TRANSFORM_ZOOME"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5ad04b87050a31f462c63bbca33d40547c" class="target"></span>
+
enumerator LV_STYLE_TRANSFORM_ZOOM
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t24LV_STYLE_TRANSFORM_ANGLEE"></span><span id="_CPPv2N15lv_style_prop_t24LV_STYLE_TRANSFORM_ANGLEE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a813c5c30bcf1eb4767d85e7cd55f4887" class="target"></span>enumerator LV_STYLE_TRAN[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t23LV_STYLE_TRANSFORM_ZOOME]SFORM_ANGLE[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t24LV_STYLE_TRANSFORM_ANGLEE] <span id="_CPPv3N15lv_style_prop_t24LV_STYLE_TRANSFORM_ANGLEE"></span><span id="_CPPv2N15lv_style_prop_t24LV_STYLE_TRANSFORM_ANGLEE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a813c5c30bcf1eb4767d85e7cd55f4887" class="target"></span>
+
enumerator LV_STYLE_TRANSFORM_ANGLE
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t16LV_STYLE_PAD_TOPE"></span><span id="_CPPv2N15lv_style_prop_t16LV_STYLE_PAD_TOPE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a0fe4cc8e10d82471f041ccb9192ce09f" class="target"></span>enumerator LV_STYLE_PAD_T[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t24LV_STYLE_TRANSFORM_ANGLEE]OP[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t16LV_STYLE_PAD_TOPE] <span id="_CPPv3N15lv_style_prop_t16LV_STYLE_PAD_TOPE"></span><span id="_CPPv2N15lv_style_prop_t16LV_STYLE_PAD_TOPE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a0fe4cc8e10d82471f041ccb9192ce09f" class="target"></span>
+
enumerator LV_STYLE_PAD_TOP
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t19LV_STYLE_PAD_BOTTOME"></span><span id="_CPPv2N15lv_style_prop_t19LV_STYLE_PAD_BOTTOME"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5ad190bbf3997cb12d0726049fe165fe71" class="target"></span>enumerator LV_STY[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t16LV_STYLE_PAD_TOPE]LE_PAD_BOTTOM[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t19LV_STYLE_PAD_BOTTOME] <span id="_CPPv3N15lv_style_prop_t19LV_STYLE_PAD_BOTTOME"></span><span id="_CPPv2N15lv_style_prop_t19LV_STYLE_PAD_BOTTOME"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5ad190bbf3997cb12d0726049fe165fe71" class="target"></span>
+
enumerator LV_STYLE_PAD_BOTTOM
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t17LV_STYLE_PAD_LEFTE"></span><span id="_CPPv2N15lv_style_prop_t17LV_STYLE_PAD_LEFTE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5ad0df6ac274764ef270bbbd4e040394aa" class="target"></span>enumerator LV_STYLE_[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t19LV_STYLE_PAD_BOTTOME]PAD_LEFT[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t17LV_STYLE_PAD_LEFTE] <span id="_CPPv3N15lv_style_prop_t17LV_STYLE_PAD_LEFTE"></span><span id="_CPPv2N15lv_style_prop_t17LV_STYLE_PAD_LEFTE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5ad0df6ac274764ef270bbbd4e040394aa" class="target"></span>
+
enumerator LV_STYLE_PAD_LEFT
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t18LV_STYLE_PAD_RIGHTE"></span><span id="_CPPv2N15lv_style_prop_t18LV_STYLE_PAD_RIGHTE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5aa76bbe74749e9f4dabd69bcf0c734ce9" class="target"></span>enumerator LV_STYL[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t17LV_STYLE_PAD_LEFTE]E_PAD_RIGHT[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t18LV_STYLE_PAD_RIGHTE] <span id="_CPPv3N15lv_style_prop_t18LV_STYLE_PAD_RIGHTE"></span><span id="_CPPv2N15lv_style_prop_t18LV_STYLE_PAD_RIGHTE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5aa76bbe74749e9f4dabd69bcf0c734ce9" class="target"></span>
+
enumerator LV_STYLE_PAD_RIGHT
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t16LV_STYLE_PAD_ROWE"></span><span id="_CPPv2N15lv_style_prop_t16LV_STYLE_PAD_ROWE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a8845642416fe2e20fc360674b7ede916" class="target"></span>enumerator LV_STYLE[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t18LV_STYLE_PAD_RIGHTE]_PAD_ROW[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t16LV_STYLE_PAD_ROWE] <span id="_CPPv3N15lv_style_prop_t16LV_STYLE_PAD_ROWE"></span><span id="_CPPv2N15lv_style_prop_t16LV_STYLE_PAD_ROWE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a8845642416fe2e20fc360674b7ede916" class="target"></span>
+
enumerator LV_STYLE_PAD_ROW
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t19LV_STYLE_PAD_COLUMNE"></span><span id="_CPPv2N15lv_style_prop_t19LV_STYLE_PAD_COLUMNE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a4113e3338f8a54630fda7ee75974b81d" class="target"></span>enumerator LV_STY[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t16LV_STYLE_PAD_ROWE]LE_PAD_COLUMN[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t19LV_STYLE_PAD_COLUMNE] <span id="_CPPv3N15lv_style_prop_t19LV_STYLE_PAD_COLUMNE"></span><span id="_CPPv2N15lv_style_prop_t19LV_STYLE_PAD_COLUMNE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a4113e3338f8a54630fda7ee75974b81d" class="target"></span>
+
enumerator LV_STYLE_PAD_COLUMN
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t17LV_STYLE_BG_COLORE"></span><span id="_CPPv2N15lv_style_prop_t17LV_STYLE_BG_COLORE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a00e4bf2ad80199e8d4c664142004f4a7" class="target"></span>enumerator LV_STYLE_[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t19LV_STYLE_PAD_COLUMNE]BG_COLOR[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t17LV_STYLE_BG_COLORE] <span id="_CPPv3N15lv_style_prop_t17LV_STYLE_BG_COLORE"></span><span id="_CPPv2N15lv_style_prop_t17LV_STYLE_BG_COLORE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a00e4bf2ad80199e8d4c664142004f4a7" class="target"></span>
+
enumerator LV_STYLE_BG_COLOR
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t26LV_STYLE_BG_COLOR_FILTEREDE"></span><span id="_CPPv2N15lv_style_prop_t26LV_STYLE_BG_COLOR_FILTEREDE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a9fb205dbc553797734053d22bbb05aa4" class="target"></span>enumerator LV_STYL[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t17LV_STYLE_BG_COLORE]E_BG_COLOR_FILTERED[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t26LV_STYLE_BG_COLOR_FILTEREDE] <span id="_CPPv3N15lv_style_prop_t26LV_STYLE_BG_COLOR_FILTEREDE"></span><span id="_CPPv2N15lv_style_prop_t26LV_STYLE_BG_COLOR_FILTEREDE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a9fb205dbc553797734053d22bbb05aa4" class="target"></span>
+
enumerator LV_STYLE_BG_COLOR_FILTERED
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t15LV_STYLE_BG_OPAE"></span><span id="_CPPv2N15lv_style_prop_t15LV_STYLE_BG_OPAE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a4c2d7170ecfbc7630a7f0e421218fea2" class="target"></span>enumerator LV_STYLE_BG_OPA[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t15LV_STYLE_BG_OPAE][https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t26LV_STYLE_BG_COLOR_FILTEREDE] <span id="_CPPv3N15lv_style_prop_t15LV_STYLE_BG_OPAE"></span><span id="_CPPv2N15lv_style_prop_t15LV_STYLE_BG_OPAE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a4c2d7170ecfbc7630a7f0e421218fea2" class="target"></span>
+
enumerator LV_STYLE_BG_OPA  
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t22LV_STYLE_BG_GRAD_COLORE"></span><span id="_CPPv2N15lv_style_prop_t22LV_STYLE_BG_GRAD_COLORE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a8bca78022c1b4d9b8c317a0bb4e0cac5" class="target"></span>enumerator LV_ST[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t15LV_STYLE_BG_OPAE]YLE_BG_GRAD_COLOR[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t22LV_STYLE_BG_GRAD_COLORE] <span id="_CPPv3N15lv_style_prop_t22LV_STYLE_BG_GRAD_COLORE"></span><span id="_CPPv2N15lv_style_prop_t22LV_STYLE_BG_GRAD_COLORE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a8bca78022c1b4d9b8c317a0bb4e0cac5" class="target"></span>
+
enumerator LV_STYLE_BG_GRAD_COLOR
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t31LV_STYLE_BG_GRAD_COLOR_FILTEREDE"></span><span id="_CPPv2N15lv_style_prop_t31LV_STYLE_BG_GRAD_COLOR_FILTEREDE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a1c578e2d8b7ae6cd49503ed07e20aaad" class="target"></span>enumerator LV_STYLE_BG_[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t22LV_STYLE_BG_GRAD_COLORE]GRAD_COLOR_FILTERED[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t31LV_STYLE_BG_GRAD_COLOR_FILTEREDE] <span id="_CPPv3N15lv_style_prop_t31LV_STYLE_BG_GRAD_COLOR_FILTEREDE"></span><span id="_CPPv2N15lv_style_prop_t31LV_STYLE_BG_GRAD_COLOR_FILTEREDE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a1c578e2d8b7ae6cd49503ed07e20aaad" class="target"></span>
+
enumerator LV_STYLE_BG_GRAD_COLOR_FILTERED
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t20LV_STYLE_BG_GRAD_DIRE"></span><span id="_CPPv2N15lv_style_prop_t20LV_STYLE_BG_GRAD_DIRE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5abaa3845ade9d087992ad9c3a2dc5c358" class="target"></span>enumerator LV_STYLE_BG_GRAD_DIR[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t20LV_STYLE_BG_GRAD_DIRE][https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t31LV_STYLE_BG_GRAD_COLOR_FILTEREDE] <span id="_CPPv3N15lv_style_prop_t20LV_STYLE_BG_GRAD_DIRE"></span><span id="_CPPv2N15lv_style_prop_t20LV_STYLE_BG_GRAD_DIRE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5abaa3845ade9d087992ad9c3a2dc5c358" class="target"></span>
+
enumerator LV_STYLE_BG_GRAD_DIR  
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t21LV_STYLE_BG_MAIN_STOPE"></span><span id="_CPPv2N15lv_style_prop_t21LV_STYLE_BG_MAIN_STOPE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a058bc506bc1d94f401cd7782cf929ef3" class="target"></span>enumerator LV_STYLE_B[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t20LV_STYLE_BG_GRAD_DIRE]G_MAIN_STOP[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t21LV_STYLE_BG_MAIN_STOPE] <span id="_CPPv3N15lv_style_prop_t21LV_STYLE_BG_MAIN_STOPE"></span><span id="_CPPv2N15lv_style_prop_t21LV_STYLE_BG_MAIN_STOPE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a058bc506bc1d94f401cd7782cf929ef3" class="target"></span>
+
enumerator LV_STYLE_BG_MAIN_STOP
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t21LV_STYLE_BG_GRAD_STOPE"></span><span id="_CPPv2N15lv_style_prop_t21LV_STYLE_BG_GRAD_STOPE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5aa2c55537a62ef103a71b9488f59b1c07" class="target"></span>enumerator LV_STYLE_BG[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t21LV_STYLE_BG_MAIN_STOPE]_GRAD_STOP[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t21LV_STYLE_BG_GRAD_STOPE] <span id="_CPPv3N15lv_style_prop_t21LV_STYLE_BG_GRAD_STOPE"></span><span id="_CPPv2N15lv_style_prop_t21LV_STYLE_BG_GRAD_STOPE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5aa2c55537a62ef103a71b9488f59b1c07" class="target"></span>
+
enumerator LV_STYLE_BG_GRAD_STOP
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t16LV_STYLE_BG_GRADE"></span><span id="_CPPv2N15lv_style_prop_t16LV_STYLE_BG_GRADE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a7736767127e4bc0c9835b93c686e409a" class="target"></span>enumerator LV_STYLE_BG[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t21LV_STYLE_BG_GRAD_STOPE]_GRAD[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t16LV_STYLE_BG_GRADE] <span id="_CPPv3N15lv_style_prop_t16LV_STYLE_BG_GRADE"></span><span id="_CPPv2N15lv_style_prop_t16LV_STYLE_BG_GRADE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a7736767127e4bc0c9835b93c686e409a" class="target"></span>
+
enumerator LV_STYLE_BG_GRAD
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t23LV_STYLE_BG_DITHER_MODEE"></span><span id="_CPPv2N15lv_style_prop_t23LV_STYLE_BG_DITHER_MODEE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5abb6856b762b4ddc43c1b2ed4cb661123" class="target"></span>enumerator LV_STY[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t16LV_STYLE_BG_GRADE]LE_BG_DITHER_MODE[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t23LV_STYLE_BG_DITHER_MODEE] <span id="_CPPv3N15lv_style_prop_t23LV_STYLE_BG_DITHER_MODEE"></span><span id="_CPPv2N15lv_style_prop_t23LV_STYLE_BG_DITHER_MODEE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5abb6856b762b4ddc43c1b2ed4cb661123" class="target"></span>
+
enumerator LV_STYLE_BG_DITHER_MODE
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t19LV_STYLE_BG_IMG_SRCE"></span><span id="_CPPv2N15lv_style_prop_t19LV_STYLE_BG_IMG_SRCE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a3e4c6c674e1b87fdf7f3dc7b70c22340" class="target"></span>enumerator LV_STYLE_BG_I[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t23LV_STYLE_BG_DITHER_MODEE]MG_SRC[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t19LV_STYLE_BG_IMG_SRCE] <span id="_CPPv3N15lv_style_prop_t19LV_STYLE_BG_IMG_SRCE"></span><span id="_CPPv2N15lv_style_prop_t19LV_STYLE_BG_IMG_SRCE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a3e4c6c674e1b87fdf7f3dc7b70c22340" class="target"></span>
+
enumerator LV_STYLE_BG_IMG_SRC
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t19LV_STYLE_BG_IMG_OPAE"></span><span id="_CPPv2N15lv_style_prop_t19LV_STYLE_BG_IMG_OPAE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5ac0005865fd78c28429b04fbc649455de" class="target"></span>enumerator LV_STYLE_[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t19LV_STYLE_BG_IMG_SRCE]BG_IMG_OPA[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t19LV_STYLE_BG_IMG_OPAE] <span id="_CPPv3N15lv_style_prop_t19LV_STYLE_BG_IMG_OPAE"></span><span id="_CPPv2N15lv_style_prop_t19LV_STYLE_BG_IMG_OPAE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5ac0005865fd78c28429b04fbc649455de" class="target"></span>
+
enumerator LV_STYLE_BG_IMG_OPA
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t23LV_STYLE_BG_IMG_RECOLORE"></span><span id="_CPPv2N15lv_style_prop_t23LV_STYLE_BG_IMG_RECOLORE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a305ba0a8ea28606f95e4be420a73e892" class="target"></span>enumerator LV_STYLE_[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t19LV_STYLE_BG_IMG_OPAE]BG_IMG_RECOLOR[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t23LV_STYLE_BG_IMG_RECOLORE] <span id="_CPPv3N15lv_style_prop_t23LV_STYLE_BG_IMG_RECOLORE"></span><span id="_CPPv2N15lv_style_prop_t23LV_STYLE_BG_IMG_RECOLORE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a305ba0a8ea28606f95e4be420a73e892" class="target"></span>
+
enumerator LV_STYLE_BG_IMG_RECOLOR
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t32LV_STYLE_BG_IMG_RECOLOR_FILTEREDE"></span><span id="_CPPv2N15lv_style_prop_t32LV_STYLE_BG_IMG_RECOLOR_FILTEREDE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a56ed053fcd471590550ca8a5be733f19" class="target"></span>enumerator LV_STYLE_BG_I[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t23LV_STYLE_BG_IMG_RECOLORE]MG_RECOLOR_FILTERED[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t32LV_STYLE_BG_IMG_RECOLOR_FILTEREDE] <span id="_CPPv3N15lv_style_prop_t32LV_STYLE_BG_IMG_RECOLOR_FILTEREDE"></span><span id="_CPPv2N15lv_style_prop_t32LV_STYLE_BG_IMG_RECOLOR_FILTEREDE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a56ed053fcd471590550ca8a5be733f19" class="target"></span>
+
enumerator LV_STYLE_BG_IMG_RECOLOR_FILTERED
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t27LV_STYLE_BG_IMG_RECOLOR_OPAE"></span><span id="_CPPv2N15lv_style_prop_t27LV_STYLE_BG_IMG_RECOLOR_OPAE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5aefc61697abc2c81ec303d03ed420be74" class="target"></span>enumerator LV_STYLE_BG_IMG_RECOLO[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t32LV_STYLE_BG_IMG_RECOLOR_FILTEREDE]R_OPA[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t27LV_STYLE_BG_IMG_RECOLOR_OPAE] <span id="_CPPv3N15lv_style_prop_t27LV_STYLE_BG_IMG_RECOLOR_OPAE"></span><span id="_CPPv2N15lv_style_prop_t27LV_STYLE_BG_IMG_RECOLOR_OPAE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5aefc61697abc2c81ec303d03ed420be74" class="target"></span>
+
enumerator LV_STYLE_BG_IMG_RECOLOR_OPA
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t21LV_STYLE_BG_IMG_TILEDE"></span><span id="_CPPv2N15lv_style_prop_t21LV_STYLE_BG_IMG_TILEDE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5ac0e1801dd347404622227108c87dc1b3" class="target"></span>enumerator LV_STYLE_BG_IMG_T[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t27LV_STYLE_BG_IMG_RECOLOR_OPAE]ILED[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t21LV_STYLE_BG_IMG_TILEDE] <span id="_CPPv3N15lv_style_prop_t21LV_STYLE_BG_IMG_TILEDE"></span><span id="_CPPv2N15lv_style_prop_t21LV_STYLE_BG_IMG_TILEDE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5ac0e1801dd347404622227108c87dc1b3" class="target"></span>
+
enumerator LV_STYLE_BG_IMG_TILED
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t21LV_STYLE_BORDER_COLORE"></span><span id="_CPPv2N15lv_style_prop_t21LV_STYLE_BORDER_COLORE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a50b5a0ea0d705a85d48bc63de6ebead1" class="target"></span>enumerator LV_STYLE_BO[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t21LV_STYLE_BG_IMG_TILEDE]RDER_COLOR[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t21LV_STYLE_BORDER_COLORE] <span id="_CPPv3N15lv_style_prop_t21LV_STYLE_BORDER_COLORE"></span><span id="_CPPv2N15lv_style_prop_t21LV_STYLE_BORDER_COLORE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a50b5a0ea0d705a85d48bc63de6ebead1" class="target"></span>
+
enumerator LV_STYLE_BORDER_COLOR
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t30LV_STYLE_BORDER_COLOR_FILTEREDE"></span><span id="_CPPv2N15lv_style_prop_t30LV_STYLE_BORDER_COLOR_FILTEREDE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a22885f46dae20686e31f31c72f51734d" class="target"></span>enumerator LV_STYLE_BO[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t21LV_STYLE_BORDER_COLORE]RDER_COLOR_FILTERED[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t30LV_STYLE_BORDER_COLOR_FILTEREDE] <span id="_CPPv3N15lv_style_prop_t30LV_STYLE_BORDER_COLOR_FILTEREDE"></span><span id="_CPPv2N15lv_style_prop_t30LV_STYLE_BORDER_COLOR_FILTEREDE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a22885f46dae20686e31f31c72f51734d" class="target"></span>
+
enumerator LV_STYLE_BORDER_COLOR_FILTERED
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t19LV_STYLE_BORDER_OPAE"></span><span id="_CPPv2N15lv_style_prop_t19LV_STYLE_BORDER_OPAE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5ace7f1e66aeacd83e264622fc35d9dd17" class="target"></span>enumerator LV_STYLE_BORDER_OPA[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t19LV_STYLE_BORDER_OPAE][https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t30LV_STYLE_BORDER_COLOR_FILTEREDE] <span id="_CPPv3N15lv_style_prop_t19LV_STYLE_BORDER_OPAE"></span><span id="_CPPv2N15lv_style_prop_t19LV_STYLE_BORDER_OPAE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5ace7f1e66aeacd83e264622fc35d9dd17" class="target"></span>
+
enumerator LV_STYLE_BORDER_OPA  
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t21LV_STYLE_BORDER_WIDTHE"></span><span id="_CPPv2N15lv_style_prop_t21LV_STYLE_BORDER_WIDTHE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a2896ef95871ce62130dba5a32f4b61cc" class="target"></span>enumerator LV_STYLE_[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t19LV_STYLE_BORDER_OPAE]BORDER_WIDTH[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t21LV_STYLE_BORDER_WIDTHE] <span id="_CPPv3N15lv_style_prop_t21LV_STYLE_BORDER_WIDTHE"></span><span id="_CPPv2N15lv_style_prop_t21LV_STYLE_BORDER_WIDTHE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a2896ef95871ce62130dba5a32f4b61cc" class="target"></span>
+
enumerator LV_STYLE_BORDER_WIDTH
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t20LV_STYLE_BORDER_SIDEE"></span><span id="_CPPv2N15lv_style_prop_t20LV_STYLE_BORDER_SIDEE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a9d109fabf02b0680df972bd043909cdc" class="target"></span>enumerator LV_STYLE_BO[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t21LV_STYLE_BORDER_WIDTHE]RDER_SIDE[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t20LV_STYLE_BORDER_SIDEE] <span id="_CPPv3N15lv_style_prop_t20LV_STYLE_BORDER_SIDEE"></span><span id="_CPPv2N15lv_style_prop_t20LV_STYLE_BORDER_SIDEE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a9d109fabf02b0680df972bd043909cdc" class="target"></span>
+
enumerator LV_STYLE_BORDER_SIDE
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t20LV_STYLE_BORDER_POSTE"></span><span id="_CPPv2N15lv_style_prop_t20LV_STYLE_BORDER_POSTE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a7e05a7bf6905db200b5e95b433b1e035" class="target"></span>enumerator LV_STYLE_B[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t20LV_STYLE_BORDER_SIDEE]ORDER_POST[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t20LV_STYLE_BORDER_POSTE] <span id="_CPPv3N15lv_style_prop_t20LV_STYLE_BORDER_POSTE"></span><span id="_CPPv2N15lv_style_prop_t20LV_STYLE_BORDER_POSTE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a7e05a7bf6905db200b5e95b433b1e035" class="target"></span>
+
enumerator LV_STYLE_BORDER_POST
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t22LV_STYLE_OUTLINE_WIDTHE"></span><span id="_CPPv2N15lv_style_prop_t22LV_STYLE_OUTLINE_WIDTHE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a650e1c12b41abb707ff8d95a55af7f5b" class="target"></span>enumerator LV_STYLE_O[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t20LV_STYLE_BORDER_POSTE]UTLINE_WIDTH[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t22LV_STYLE_OUTLINE_WIDTHE] <span id="_CPPv3N15lv_style_prop_t22LV_STYLE_OUTLINE_WIDTHE"></span><span id="_CPPv2N15lv_style_prop_t22LV_STYLE_OUTLINE_WIDTHE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a650e1c12b41abb707ff8d95a55af7f5b" class="target"></span>
+
enumerator LV_STYLE_OUTLINE_WIDTH
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t22LV_STYLE_OUTLINE_COLORE"></span><span id="_CPPv2N15lv_style_prop_t22LV_STYLE_OUTLINE_COLORE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a5eaee7f66bdb8a0d9396d200d912bf54" class="target"></span>enumerator LV_STYLE_OUT[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t22LV_STYLE_OUTLINE_WIDTHE]LINE_COLOR[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t22LV_STYLE_OUTLINE_COLORE] <span id="_CPPv3N15lv_style_prop_t22LV_STYLE_OUTLINE_COLORE"></span><span id="_CPPv2N15lv_style_prop_t22LV_STYLE_OUTLINE_COLORE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a5eaee7f66bdb8a0d9396d200d912bf54" class="target"></span>
+
enumerator LV_STYLE_OUTLINE_COLOR
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t31LV_STYLE_OUTLINE_COLOR_FILTEREDE"></span><span id="_CPPv2N15lv_style_prop_t31LV_STYLE_OUTLINE_COLOR_FILTEREDE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a15637192be4acbaf0a0f3b5995ef1b9b" class="target"></span>enumerator LV_STYLE_OUT[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t22LV_STYLE_OUTLINE_COLORE]LINE_COLOR_FILTERED[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t31LV_STYLE_OUTLINE_COLOR_FILTEREDE] <span id="_CPPv3N15lv_style_prop_t31LV_STYLE_OUTLINE_COLOR_FILTEREDE"></span><span id="_CPPv2N15lv_style_prop_t31LV_STYLE_OUTLINE_COLOR_FILTEREDE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a15637192be4acbaf0a0f3b5995ef1b9b" class="target"></span>
+
enumerator LV_STYLE_OUTLINE_COLOR_FILTERED
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t20LV_STYLE_OUTLINE_OPAE"></span><span id="_CPPv2N15lv_style_prop_t20LV_STYLE_OUTLINE_OPAE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5af70d2b8922ef278f56a8d234ec4958b2" class="target"></span>enumerator LV_STYLE_OUTLINE_OPA[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t20LV_STYLE_OUTLINE_OPAE][https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t31LV_STYLE_OUTLINE_COLOR_FILTEREDE] <span id="_CPPv3N15lv_style_prop_t20LV_STYLE_OUTLINE_OPAE"></span><span id="_CPPv2N15lv_style_prop_t20LV_STYLE_OUTLINE_OPAE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5af70d2b8922ef278f56a8d234ec4958b2" class="target"></span>
+
enumerator LV_STYLE_OUTLINE_OPA  
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t20LV_STYLE_OUTLINE_PADE"></span><span id="_CPPv2N15lv_style_prop_t20LV_STYLE_OUTLINE_PADE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5ac9cd34443d6c81578a1e6e01e546e025" class="target"></span>enumerator LV_STYLE_O[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t20LV_STYLE_OUTLINE_OPAE]UTLINE_PAD[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t20LV_STYLE_OUTLINE_PADE] <span id="_CPPv3N15lv_style_prop_t20LV_STYLE_OUTLINE_PADE"></span><span id="_CPPv2N15lv_style_prop_t20LV_STYLE_OUTLINE_PADE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5ac9cd34443d6c81578a1e6e01e546e025" class="target"></span>
+
enumerator LV_STYLE_OUTLINE_PAD
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t21LV_STYLE_SHADOW_WIDTHE"></span><span id="_CPPv2N15lv_style_prop_t21LV_STYLE_SHADOW_WIDTHE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a14a7832787188fd66f7bf0e258d7f14b" class="target"></span>enumerator LV_STYLE_S[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t20LV_STYLE_OUTLINE_PADE]HADOW_WIDTH[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t21LV_STYLE_SHADOW_WIDTHE] <span id="_CPPv3N15lv_style_prop_t21LV_STYLE_SHADOW_WIDTHE"></span><span id="_CPPv2N15lv_style_prop_t21LV_STYLE_SHADOW_WIDTHE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a14a7832787188fd66f7bf0e258d7f14b" class="target"></span>
+
enumerator LV_STYLE_SHADOW_WIDTH
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t21LV_STYLE_SHADOW_OFS_XE"></span><span id="_CPPv2N15lv_style_prop_t21LV_STYLE_SHADOW_OFS_XE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5ae56347eef3b03da4d85c2c8895a7cb9d" class="target"></span>enumerator LV_STYLE_SH[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t21LV_STYLE_SHADOW_WIDTHE]ADOW_OFS_X[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t21LV_STYLE_SHADOW_OFS_XE] <span id="_CPPv3N15lv_style_prop_t21LV_STYLE_SHADOW_OFS_XE"></span><span id="_CPPv2N15lv_style_prop_t21LV_STYLE_SHADOW_OFS_XE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5ae56347eef3b03da4d85c2c8895a7cb9d" class="target"></span>
+
enumerator LV_STYLE_SHADOW_OFS_X
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t21LV_STYLE_SHADOW_OFS_YE"></span><span id="_CPPv2N15lv_style_prop_t21LV_STYLE_SHADOW_OFS_YE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5aff87561ebe058451082efea93f1bfbe4" class="target"></span>enumerator LV_STYLE_SH[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t21LV_STYLE_SHADOW_OFS_XE]ADOW_OFS_Y[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t21LV_STYLE_SHADOW_OFS_YE] <span id="_CPPv3N15lv_style_prop_t21LV_STYLE_SHADOW_OFS_YE"></span><span id="_CPPv2N15lv_style_prop_t21LV_STYLE_SHADOW_OFS_YE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5aff87561ebe058451082efea93f1bfbe4" class="target"></span>
+
enumerator LV_STYLE_SHADOW_OFS_Y
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t22LV_STYLE_SHADOW_SPREADE"></span><span id="_CPPv2N15lv_style_prop_t22LV_STYLE_SHADOW_SPREADE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5ad0c045b411826cda7be9805e36a79d2c" class="target"></span>enumerator LV_STYLE_SH[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t21LV_STYLE_SHADOW_OFS_YE]ADOW_SPREAD[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t22LV_STYLE_SHADOW_SPREADE] <span id="_CPPv3N15lv_style_prop_t22LV_STYLE_SHADOW_SPREADE"></span><span id="_CPPv2N15lv_style_prop_t22LV_STYLE_SHADOW_SPREADE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5ad0c045b411826cda7be9805e36a79d2c" class="target"></span>
+
enumerator LV_STYLE_SHADOW_SPREAD
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t21LV_STYLE_SHADOW_COLORE"></span><span id="_CPPv2N15lv_style_prop_t21LV_STYLE_SHADOW_COLORE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a2630810170c997c645fb888aedad37c4" class="target"></span>enumerator LV_STYLE_SHA[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t22LV_STYLE_SHADOW_SPREADE]DOW_COLOR[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t21LV_STYLE_SHADOW_COLORE] <span id="_CPPv3N15lv_style_prop_t21LV_STYLE_SHADOW_COLORE"></span><span id="_CPPv2N15lv_style_prop_t21LV_STYLE_SHADOW_COLORE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a2630810170c997c645fb888aedad37c4" class="target"></span>
+
enumerator LV_STYLE_SHADOW_COLOR
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t30LV_STYLE_SHADOW_COLOR_FILTEREDE"></span><span id="_CPPv2N15lv_style_prop_t30LV_STYLE_SHADOW_COLOR_FILTEREDE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a8711ccd156aa04e0669e0559e6079e4e" class="target"></span>enumerator LV_STYLE_SH[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t21LV_STYLE_SHADOW_COLORE]ADOW_COLOR_FILTERED[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t30LV_STYLE_SHADOW_COLOR_FILTEREDE] <span id="_CPPv3N15lv_style_prop_t30LV_STYLE_SHADOW_COLOR_FILTEREDE"></span><span id="_CPPv2N15lv_style_prop_t30LV_STYLE_SHADOW_COLOR_FILTEREDE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a8711ccd156aa04e0669e0559e6079e4e" class="target"></span>
+
enumerator LV_STYLE_SHADOW_COLOR_FILTERED
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t19LV_STYLE_SHADOW_OPAE"></span><span id="_CPPv2N15lv_style_prop_t19LV_STYLE_SHADOW_OPAE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a23e09366fb33c049e08fa740f18fded7" class="target"></span>enumerator LV_STYLE_SHADOW_OPA[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t19LV_STYLE_SHADOW_OPAE][https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t30LV_STYLE_SHADOW_COLOR_FILTEREDE] <span id="_CPPv3N15lv_style_prop_t19LV_STYLE_SHADOW_OPAE"></span><span id="_CPPv2N15lv_style_prop_t19LV_STYLE_SHADOW_OPAE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a23e09366fb33c049e08fa740f18fded7" class="target"></span>
+
enumerator LV_STYLE_SHADOW_OPA  
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t16LV_STYLE_IMG_OPAE"></span><span id="_CPPv2N15lv_style_prop_t16LV_STYLE_IMG_OPAE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a7b8c7fde51c170dbf69f38062920b6fa" class="target"></span>enumerator LV_STYLE_[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t19LV_STYLE_SHADOW_OPAE]IMG_OPA[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t16LV_STYLE_IMG_OPAE] <span id="_CPPv3N15lv_style_prop_t16LV_STYLE_IMG_OPAE"></span><span id="_CPPv2N15lv_style_prop_t16LV_STYLE_IMG_OPAE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a7b8c7fde51c170dbf69f38062920b6fa" class="target"></span>
+
enumerator LV_STYLE_IMG_OPA
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t20LV_STYLE_IMG_RECOLORE"></span><span id="_CPPv2N15lv_style_prop_t20LV_STYLE_IMG_RECOLORE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a5f5f4003b24586b12fd84d1818bf3a9c" class="target"></span>enumerator LV_STY[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t16LV_STYLE_IMG_OPAE]LE_IMG_RECOLOR[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t20LV_STYLE_IMG_RECOLORE] <span id="_CPPv3N15lv_style_prop_t20LV_STYLE_IMG_RECOLORE"></span><span id="_CPPv2N15lv_style_prop_t20LV_STYLE_IMG_RECOLORE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a5f5f4003b24586b12fd84d1818bf3a9c" class="target"></span>
+
enumerator LV_STYLE_IMG_RECOLOR
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t29LV_STYLE_IMG_RECOLOR_FILTEREDE"></span><span id="_CPPv2N15lv_style_prop_t29LV_STYLE_IMG_RECOLOR_FILTEREDE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5ab44c0d68b849d7884b278f2f7be0898e" class="target"></span>enumerator LV_STYLE_I[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t20LV_STYLE_IMG_RECOLORE]MG_RECOLOR_FILTERED[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t29LV_STYLE_IMG_RECOLOR_FILTEREDE] <span id="_CPPv3N15lv_style_prop_t29LV_STYLE_IMG_RECOLOR_FILTEREDE"></span><span id="_CPPv2N15lv_style_prop_t29LV_STYLE_IMG_RECOLOR_FILTEREDE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5ab44c0d68b849d7884b278f2f7be0898e" class="target"></span>
+
enumerator LV_STYLE_IMG_RECOLOR_FILTERED
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t24LV_STYLE_IMG_RECOLOR_OPAE"></span><span id="_CPPv2N15lv_style_prop_t24LV_STYLE_IMG_RECOLOR_OPAE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5aaf3dc88d6dc4d333167fbfd21b9d4ada" class="target"></span>enumerator LV_STYLE_IMG_RECOLO[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t29LV_STYLE_IMG_RECOLOR_FILTEREDE]R_OPA[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t24LV_STYLE_IMG_RECOLOR_OPAE] <span id="_CPPv3N15lv_style_prop_t24LV_STYLE_IMG_RECOLOR_OPAE"></span><span id="_CPPv2N15lv_style_prop_t24LV_STYLE_IMG_RECOLOR_OPAE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5aaf3dc88d6dc4d333167fbfd21b9d4ada" class="target"></span>
+
enumerator LV_STYLE_IMG_RECOLOR_OPA
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t19LV_STYLE_LINE_WIDTHE"></span><span id="_CPPv2N15lv_style_prop_t19LV_STYLE_LINE_WIDTHE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a7d14298dd68a5e003d6a92725c47f0c2" class="target"></span>enumerator LV_STYLE_LINE_[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t24LV_STYLE_IMG_RECOLOR_OPAE]WIDTH[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t19LV_STYLE_LINE_WIDTHE] <span id="_CPPv3N15lv_style_prop_t19LV_STYLE_LINE_WIDTHE"></span><span id="_CPPv2N15lv_style_prop_t19LV_STYLE_LINE_WIDTHE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a7d14298dd68a5e003d6a92725c47f0c2" class="target"></span>
+
enumerator LV_STYLE_LINE_WIDTH
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t24LV_STYLE_LINE_DASH_WIDTHE"></span><span id="_CPPv2N15lv_style_prop_t24LV_STYLE_LINE_DASH_WIDTHE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a2d8e246b389b10007c9a49f6304cb715" class="target"></span>enumerator LV_STYLE_[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t19LV_STYLE_LINE_WIDTHE]LINE_DASH_WIDTH[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t24LV_STYLE_LINE_DASH_WIDTHE] <span id="_CPPv3N15lv_style_prop_t24LV_STYLE_LINE_DASH_WIDTHE"></span><span id="_CPPv2N15lv_style_prop_t24LV_STYLE_LINE_DASH_WIDTHE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a2d8e246b389b10007c9a49f6304cb715" class="target"></span>
+
enumerator LV_STYLE_LINE_DASH_WIDTH
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t22LV_STYLE_LINE_DASH_GAPE"></span><span id="_CPPv2N15lv_style_prop_t22LV_STYLE_LINE_DASH_GAPE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a9202fcd1a89ef9fc52f7e139491e73d0" class="target"></span>enumerator LV_STYLE_LINE_[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t24LV_STYLE_LINE_DASH_WIDTHE]DASH_GAP[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t22LV_STYLE_LINE_DASH_GAPE] <span id="_CPPv3N15lv_style_prop_t22LV_STYLE_LINE_DASH_GAPE"></span><span id="_CPPv2N15lv_style_prop_t22LV_STYLE_LINE_DASH_GAPE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a9202fcd1a89ef9fc52f7e139491e73d0" class="target"></span>
+
enumerator LV_STYLE_LINE_DASH_GAP
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t21LV_STYLE_LINE_ROUNDEDE"></span><span id="_CPPv2N15lv_style_prop_t21LV_STYLE_LINE_ROUNDEDE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5ac29934ddf7119bd4a71cf97ed5e65129" class="target"></span>enumerator LV_STYLE_LIN[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t22LV_STYLE_LINE_DASH_GAPE]E_ROUNDED[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t21LV_STYLE_LINE_ROUNDEDE] <span id="_CPPv3N15lv_style_prop_t21LV_STYLE_LINE_ROUNDEDE"></span><span id="_CPPv2N15lv_style_prop_t21LV_STYLE_LINE_ROUNDEDE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5ac29934ddf7119bd4a71cf97ed5e65129" class="target"></span>
+
enumerator LV_STYLE_LINE_ROUNDED
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t19LV_STYLE_LINE_COLORE"></span><span id="_CPPv2N15lv_style_prop_t19LV_STYLE_LINE_COLORE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a77fd66346bf0071c40bc33d6d73e5900" class="target"></span>enumerator LV_STYLE_LI[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t21LV_STYLE_LINE_ROUNDEDE]NE_COLOR[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t19LV_STYLE_LINE_COLORE] <span id="_CPPv3N15lv_style_prop_t19LV_STYLE_LINE_COLORE"></span><span id="_CPPv2N15lv_style_prop_t19LV_STYLE_LINE_COLORE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a77fd66346bf0071c40bc33d6d73e5900" class="target"></span>
+
enumerator LV_STYLE_LINE_COLOR
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t28LV_STYLE_LINE_COLOR_FILTEREDE"></span><span id="_CPPv2N15lv_style_prop_t28LV_STYLE_LINE_COLOR_FILTEREDE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a3805061b9d8d2d28ccee0dbd7431c315" class="target"></span>enumerator LV_STYLE_[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t19LV_STYLE_LINE_COLORE]LINE_COLOR_FILTERED[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t28LV_STYLE_LINE_COLOR_FILTEREDE] <span id="_CPPv3N15lv_style_prop_t28LV_STYLE_LINE_COLOR_FILTEREDE"></span><span id="_CPPv2N15lv_style_prop_t28LV_STYLE_LINE_COLOR_FILTEREDE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a3805061b9d8d2d28ccee0dbd7431c315" class="target"></span>
+
enumerator LV_STYLE_LINE_COLOR_FILTERED
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t17LV_STYLE_LINE_OPAE"></span><span id="_CPPv2N15lv_style_prop_t17LV_STYLE_LINE_OPAE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a541b3a01d2febc558ab3d3ad1d3880ad" class="target"></span>enumerator LV_STYLE_LINE_OPA[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t17LV_STYLE_LINE_OPAE][https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t28LV_STYLE_LINE_COLOR_FILTEREDE] <span id="_CPPv3N15lv_style_prop_t17LV_STYLE_LINE_OPAE"></span><span id="_CPPv2N15lv_style_prop_t17LV_STYLE_LINE_OPAE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a541b3a01d2febc558ab3d3ad1d3880ad" class="target"></span>
+
enumerator LV_STYLE_LINE_OPA  
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t18LV_STYLE_ARC_WIDTHE"></span><span id="_CPPv2N15lv_style_prop_t18LV_STYLE_ARC_WIDTHE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a0bcb421ac733d452919bd6c0ad937f33" class="target"></span>enumerator LV_STYL[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t17LV_STYLE_LINE_OPAE]E_ARC_WIDTH[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t18LV_STYLE_ARC_WIDTHE] <span id="_CPPv3N15lv_style_prop_t18LV_STYLE_ARC_WIDTHE"></span><span id="_CPPv2N15lv_style_prop_t18LV_STYLE_ARC_WIDTHE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a0bcb421ac733d452919bd6c0ad937f33" class="target"></span>
+
enumerator LV_STYLE_ARC_WIDTH
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t20LV_STYLE_ARC_ROUNDEDE"></span><span id="_CPPv2N15lv_style_prop_t20LV_STYLE_ARC_ROUNDEDE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5aec30d4fa627830cf4cd1daf0903080ff" class="target"></span>enumerator LV_STYLE[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t18LV_STYLE_ARC_WIDTHE]_ARC_ROUNDED[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t20LV_STYLE_ARC_ROUNDEDE] <span id="_CPPv3N15lv_style_prop_t20LV_STYLE_ARC_ROUNDEDE"></span><span id="_CPPv2N15lv_style_prop_t20LV_STYLE_ARC_ROUNDEDE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5aec30d4fa627830cf4cd1daf0903080ff" class="target"></span>
+
enumerator LV_STYLE_ARC_ROUNDED
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t18LV_STYLE_ARC_COLORE"></span><span id="_CPPv2N15lv_style_prop_t18LV_STYLE_ARC_COLORE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5adae2e85d2e707fa368c0f411a4d5bc73" class="target"></span>enumerator LV_STYLE_A[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t20LV_STYLE_ARC_ROUNDEDE]RC_COLOR[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t18LV_STYLE_ARC_COLORE] <span id="_CPPv3N15lv_style_prop_t18LV_STYLE_ARC_COLORE"></span><span id="_CPPv2N15lv_style_prop_t18LV_STYLE_ARC_COLORE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5adae2e85d2e707fa368c0f411a4d5bc73" class="target"></span>
+
enumerator LV_STYLE_ARC_COLOR
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t27LV_STYLE_ARC_COLOR_FILTEREDE"></span><span id="_CPPv2N15lv_style_prop_t27LV_STYLE_ARC_COLOR_FILTEREDE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a83948ace22647529a79d34f31cbda96f" class="target"></span>enumerator LV_STYLE[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t18LV_STYLE_ARC_COLORE]_ARC_COLOR_FILTERED[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t27LV_STYLE_ARC_COLOR_FILTEREDE] <span id="_CPPv3N15lv_style_prop_t27LV_STYLE_ARC_COLOR_FILTEREDE"></span><span id="_CPPv2N15lv_style_prop_t27LV_STYLE_ARC_COLOR_FILTEREDE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a83948ace22647529a79d34f31cbda96f" class="target"></span>
+
enumerator LV_STYLE_ARC_COLOR_FILTERED
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t16LV_STYLE_ARC_OPAE"></span><span id="_CPPv2N15lv_style_prop_t16LV_STYLE_ARC_OPAE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a59d8df8f87fd7141c03d34bff80ded0e" class="target"></span>enumerator LV_STYLE_ARC_OPA[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t16LV_STYLE_ARC_OPAE][https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t27LV_STYLE_ARC_COLOR_FILTEREDE] <span id="_CPPv3N15lv_style_prop_t16LV_STYLE_ARC_OPAE"></span><span id="_CPPv2N15lv_style_prop_t16LV_STYLE_ARC_OPAE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a59d8df8f87fd7141c03d34bff80ded0e" class="target"></span>
+
enumerator LV_STYLE_ARC_OPA  
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t20LV_STYLE_ARC_IMG_SRCE"></span><span id="_CPPv2N15lv_style_prop_t20LV_STYLE_ARC_IMG_SRCE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a0a35a155bcb433a4d69a06cacfcb2201" class="target"></span>enumerator LV_STY[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t16LV_STYLE_ARC_OPAE]LE_ARC_IMG_SRC[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t20LV_STYLE_ARC_IMG_SRCE] <span id="_CPPv3N15lv_style_prop_t20LV_STYLE_ARC_IMG_SRCE"></span><span id="_CPPv2N15lv_style_prop_t20LV_STYLE_ARC_IMG_SRCE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a0a35a155bcb433a4d69a06cacfcb2201" class="target"></span>
+
enumerator LV_STYLE_ARC_IMG_SRC
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t19LV_STYLE_TEXT_COLORE"></span><span id="_CPPv2N15lv_style_prop_t19LV_STYLE_TEXT_COLORE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5afef020eaf46b86637c128b886c2ebb7e" class="target"></span>enumerator LV_STYLE_T[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t20LV_STYLE_ARC_IMG_SRCE]EXT_COLOR[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t19LV_STYLE_TEXT_COLORE] <span id="_CPPv3N15lv_style_prop_t19LV_STYLE_TEXT_COLORE"></span><span id="_CPPv2N15lv_style_prop_t19LV_STYLE_TEXT_COLORE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5afef020eaf46b86637c128b886c2ebb7e" class="target"></span>
+
enumerator LV_STYLE_TEXT_COLOR
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t28LV_STYLE_TEXT_COLOR_FILTEREDE"></span><span id="_CPPv2N15lv_style_prop_t28LV_STYLE_TEXT_COLOR_FILTEREDE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a20cdc39c05c7eeef02b424d0738299b2" class="target"></span>enumerator LV_STYLE_[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t19LV_STYLE_TEXT_COLORE]TEXT_COLOR_FILTERED[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t28LV_STYLE_TEXT_COLOR_FILTEREDE] <span id="_CPPv3N15lv_style_prop_t28LV_STYLE_TEXT_COLOR_FILTEREDE"></span><span id="_CPPv2N15lv_style_prop_t28LV_STYLE_TEXT_COLOR_FILTEREDE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a20cdc39c05c7eeef02b424d0738299b2" class="target"></span>
+
enumerator LV_STYLE_TEXT_COLOR_FILTERED
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t17LV_STYLE_TEXT_OPAE"></span><span id="_CPPv2N15lv_style_prop_t17LV_STYLE_TEXT_OPAE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a542321c8e9dcd11f09981dfa897b67e2" class="target"></span>enumerator LV_STYLE_TEXT_OPA[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t17LV_STYLE_TEXT_OPAE][https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t28LV_STYLE_TEXT_COLOR_FILTEREDE] <span id="_CPPv3N15lv_style_prop_t17LV_STYLE_TEXT_OPAE"></span><span id="_CPPv2N15lv_style_prop_t17LV_STYLE_TEXT_OPAE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a542321c8e9dcd11f09981dfa897b67e2" class="target"></span>
+
enumerator LV_STYLE_TEXT_OPA  
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t18LV_STYLE_TEXT_FONTE"></span><span id="_CPPv2N15lv_style_prop_t18LV_STYLE_TEXT_FONTE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5acf3784b34547b4f097afbc150c92038e" class="target"></span>enumerator LV_STYL[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t17LV_STYLE_TEXT_OPAE]E_TEXT_FONT[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t18LV_STYLE_TEXT_FONTE] <span id="_CPPv3N15lv_style_prop_t18LV_STYLE_TEXT_FONTE"></span><span id="_CPPv2N15lv_style_prop_t18LV_STYLE_TEXT_FONTE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5acf3784b34547b4f097afbc150c92038e" class="target"></span>
+
enumerator LV_STYLE_TEXT_FONT
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t26LV_STYLE_TEXT_LETTER_SPACEE"></span><span id="_CPPv2N15lv_style_prop_t26LV_STYLE_TEXT_LETTER_SPACEE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a5eb48e12a28cea15b1fca641503d9257" class="target"></span>enumerator LV_STYLE[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t18LV_STYLE_TEXT_FONTE]_TEXT_LETTER_SPACE[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t26LV_STYLE_TEXT_LETTER_SPACEE] <span id="_CPPv3N15lv_style_prop_t26LV_STYLE_TEXT_LETTER_SPACEE"></span><span id="_CPPv2N15lv_style_prop_t26LV_STYLE_TEXT_LETTER_SPACEE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a5eb48e12a28cea15b1fca641503d9257" class="target"></span>
+
enumerator LV_STYLE_TEXT_LETTER_SPACE
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t24LV_STYLE_TEXT_LINE_SPACEE"></span><span id="_CPPv2N15lv_style_prop_t24LV_STYLE_TEXT_LINE_SPACEE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a8df5b2ddb21e48851984ec1ae4f532c2" class="target"></span>enumerator LV_STYLE_TEXT_LI[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t26LV_STYLE_TEXT_LETTER_SPACEE]NE_SPACE[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t24LV_STYLE_TEXT_LINE_SPACEE] <span id="_CPPv3N15lv_style_prop_t24LV_STYLE_TEXT_LINE_SPACEE"></span><span id="_CPPv2N15lv_style_prop_t24LV_STYLE_TEXT_LINE_SPACEE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a8df5b2ddb21e48851984ec1ae4f532c2" class="target"></span>
+
enumerator LV_STYLE_TEXT_LINE_SPACE
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t19LV_STYLE_TEXT_DECORE"></span><span id="_CPPv2N15lv_style_prop_t19LV_STYLE_TEXT_DECORE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a6bf173539e68d078f19d30494d69d87e" class="target"></span>enumerator LV_STYLE_TEXT_[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t24LV_STYLE_TEXT_LINE_SPACEE]DECOR[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t19LV_STYLE_TEXT_DECORE] <span id="_CPPv3N15lv_style_prop_t19LV_STYLE_TEXT_DECORE"></span><span id="_CPPv2N15lv_style_prop_t19LV_STYLE_TEXT_DECORE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a6bf173539e68d078f19d30494d69d87e" class="target"></span>
+
enumerator LV_STYLE_TEXT_DECOR
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t19LV_STYLE_TEXT_ALIGNE"></span><span id="_CPPv2N15lv_style_prop_t19LV_STYLE_TEXT_ALIGNE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a38f6e40c61be3b8650d3c23e49cfbffe" class="target"></span>enumerator LV_STYLE_[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t19LV_STYLE_TEXT_DECORE]TEXT_ALIGN[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t19LV_STYLE_TEXT_ALIGNE] <span id="_CPPv3N15lv_style_prop_t19LV_STYLE_TEXT_ALIGNE"></span><span id="_CPPv2N15lv_style_prop_t19LV_STYLE_TEXT_ALIGNE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a38f6e40c61be3b8650d3c23e49cfbffe" class="target"></span>
+
enumerator LV_STYLE_TEXT_ALIGN
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t15LV_STYLE_RADIUSE"></span><span id="_CPPv2N15lv_style_prop_t15LV_STYLE_RADIUSE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5ac1c2396b3e2d419d051faf39526e0561" class="target"></span>enumerator LV_STYLE_[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t19LV_STYLE_TEXT_ALIGNE]RADIUS[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t15LV_STYLE_RADIUSE] <span id="_CPPv3N15lv_style_prop_t15LV_STYLE_RADIUSE"></span><span id="_CPPv2N15lv_style_prop_t15LV_STYLE_RADIUSE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5ac1c2396b3e2d419d051faf39526e0561" class="target"></span>
+
enumerator LV_STYLE_RADIUS
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t20LV_STYLE_CLIP_CORNERE"></span><span id="_CPPv2N15lv_style_prop_t20LV_STYLE_CLIP_CORNERE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a77e1e40c320f1879c531ac525e03ced7" class="target"></span>enumerator LV_ST[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t15LV_STYLE_RADIUSE]YLE_CLIP_CORNER[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t20LV_STYLE_CLIP_CORNERE] <span id="_CPPv3N15lv_style_prop_t20LV_STYLE_CLIP_CORNERE"></span><span id="_CPPv2N15lv_style_prop_t20LV_STYLE_CLIP_CORNERE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a77e1e40c320f1879c531ac525e03ced7" class="target"></span>
+
enumerator LV_STYLE_CLIP_CORNER
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t12LV_STYLE_OPAE"></span><span id="_CPPv2N15lv_style_prop_t12LV_STYLE_OPAE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a4f7aa641a54c9785b1b718ab9cde1c46" class="target"></span>enumerator LV_STYLE_O[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t20LV_STYLE_CLIP_CORNERE]PA[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t12LV_STYLE_OPAE] <span id="_CPPv3N15lv_style_prop_t12LV_STYLE_OPAE"></span><span id="_CPPv2N15lv_style_prop_t12LV_STYLE_OPAE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a4f7aa641a54c9785b1b718ab9cde1c46" class="target"></span>
+
enumerator LV_STYLE_OPA
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t25LV_STYLE_COLOR_FILTER_DSCE"></span><span id="_CPPv2N15lv_style_prop_t25LV_STYLE_COLOR_FILTER_DSCE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a09a665d3377b1fbfac4768a3fc82e58b" class="target"></span>enumerator LV[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t12LV_STYLE_OPAE]_STYLE_COLOR_FILTER_DSC[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t25LV_STYLE_COLOR_FILTER_DSCE] <span id="_CPPv3N15lv_style_prop_t25LV_STYLE_COLOR_FILTER_DSCE"></span><span id="_CPPv2N15lv_style_prop_t25LV_STYLE_COLOR_FILTER_DSCE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a09a665d3377b1fbfac4768a3fc82e58b" class="target"></span>
+
enumerator LV_STYLE_COLOR_FILTER_DSC
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t25LV_STYLE_COLOR_FILTER_OPAE"></span><span id="_CPPv2N15lv_style_prop_t25LV_STYLE_COLOR_FILTER_OPAE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a015040677123f0b48d8d75efabb9d7f7" class="target"></span>enumerator LV_STYLE_COLOR_[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t25LV_STYLE_COLOR_FILTER_DSCE]FILTER_OPA[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t25LV_STYLE_COLOR_FILTER_OPAE] <span id="_CPPv3N15lv_style_prop_t25LV_STYLE_COLOR_FILTER_OPAE"></span><span id="_CPPv2N15lv_style_prop_t25LV_STYLE_COLOR_FILTER_OPAE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a015040677123f0b48d8d75efabb9d7f7" class="target"></span>
+
enumerator LV_STYLE_COLOR_FILTER_OPA
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t18LV_STYLE_ANIM_TIMEE"></span><span id="_CPPv2N15lv_style_prop_t18LV_STYLE_ANIM_TIMEE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5ab5f285f612cd680545776fc525591d8e" class="target"></span>enumerator LV_STYLE_ANIM_T[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t25LV_STYLE_COLOR_FILTER_OPAE]IME[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t18LV_STYLE_ANIM_TIMEE] <span id="_CPPv3N15lv_style_prop_t18LV_STYLE_ANIM_TIMEE"></span><span id="_CPPv2N15lv_style_prop_t18LV_STYLE_ANIM_TIMEE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5ab5f285f612cd680545776fc525591d8e" class="target"></span>
+
enumerator LV_STYLE_ANIM_TIME
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t19LV_STYLE_ANIM_SPEEDE"></span><span id="_CPPv2N15lv_style_prop_t19LV_STYLE_ANIM_SPEEDE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a574a1d63330ddd9322a3db5f217c770d" class="target"></span>enumerator LV_STYLE[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t18LV_STYLE_ANIM_TIMEE]_ANIM_SPEED[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t19LV_STYLE_ANIM_SPEEDE] <span id="_CPPv3N15lv_style_prop_t19LV_STYLE_ANIM_SPEEDE"></span><span id="_CPPv2N15lv_style_prop_t19LV_STYLE_ANIM_SPEEDE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a574a1d63330ddd9322a3db5f217c770d" class="target"></span>
+
enumerator LV_STYLE_ANIM_SPEED
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t19LV_STYLE_TRANSITIONE"></span><span id="_CPPv2N15lv_style_prop_t19LV_STYLE_TRANSITIONE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a589b440938488f39cadd783b0d4203c7" class="target"></span>enumerator LV_STYLE_[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t19LV_STYLE_ANIM_SPEEDE]TRANSITION[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t19LV_STYLE_TRANSITIONE] <span id="_CPPv3N15lv_style_prop_t19LV_STYLE_TRANSITIONE"></span><span id="_CPPv2N15lv_style_prop_t19LV_STYLE_TRANSITIONE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a589b440938488f39cadd783b0d4203c7" class="target"></span>
+
enumerator LV_STYLE_TRANSITION
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t19LV_STYLE_BLEND_MODEE"></span><span id="_CPPv2N15lv_style_prop_t19LV_STYLE_BLEND_MODEE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a7586dffafca0b3ca912a04aa897dcd53" class="target"></span>enumerator LV_STYLE_[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t19LV_STYLE_TRANSITIONE]BLEND_MODE[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t19LV_STYLE_BLEND_MODEE] <span id="_CPPv3N15lv_style_prop_t19LV_STYLE_BLEND_MODEE"></span><span id="_CPPv2N15lv_style_prop_t19LV_STYLE_BLEND_MODEE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a7586dffafca0b3ca912a04aa897dcd53" class="target"></span>
+
enumerator LV_STYLE_BLEND_MODE
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t15LV_STYLE_LAYOUTE"></span><span id="_CPPv2N15lv_style_prop_t15LV_STYLE_LAYOUTE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a703e553e655494b3e3aced1cbe415b79" class="target"></span>enumerator LV_STYLE_[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t19LV_STYLE_BLEND_MODEE]LAYOUT[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t15LV_STYLE_LAYOUTE] <span id="_CPPv3N15lv_style_prop_t15LV_STYLE_LAYOUTE"></span><span id="_CPPv2N15lv_style_prop_t15LV_STYLE_LAYOUTE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a703e553e655494b3e3aced1cbe415b79" class="target"></span>
+
enumerator LV_STYLE_LAYOUT
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t17LV_STYLE_BASE_DIRE"></span><span id="_CPPv2N15lv_style_prop_t17LV_STYLE_BASE_DIRE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a78919eef3d8073b960019b625adb76b3" class="target"></span>enumerator LV_ST[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t15LV_STYLE_LAYOUTE]YLE_BASE_DIR[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t17LV_STYLE_BASE_DIRE] <span id="_CPPv3N15lv_style_prop_t17LV_STYLE_BASE_DIRE"></span><span id="_CPPv2N15lv_style_prop_t17LV_STYLE_BASE_DIRE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a78919eef3d8073b960019b625adb76b3" class="target"></span>
+
enumerator LV_STYLE_BASE_DIR
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t28_LV_STYLE_LAST_BUILT_IN_PROPE"></span><span id="_CPPv2N15lv_style_prop_t28_LV_STYLE_LAST_BUILT_IN_PROPE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a894747b6d6aefc9a50c5df235bb3bd30" class="target"></span>enumerator _LV_STY[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t17LV_STYLE_BASE_DIRE]LE_LAST_BUILT_IN_PROP[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t28_LV_STYLE_LAST_BUILT_IN_PROPE] <span id="_CPPv3N15lv_style_prop_t28_LV_STYLE_LAST_BUILT_IN_PROPE"></span><span id="_CPPv2N15lv_style_prop_t28_LV_STYLE_LAST_BUILT_IN_PROPE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5a894747b6d6aefc9a50c5df235bb3bd30" class="target"></span>
+
enumerator _LV_STYLE_LAST_BUILT_IN_PROP
 
:
 
:
  
; <span id="_CPPv3N15lv_style_prop_t17LV_STYLE_PROP_ANYE"></span><span id="_CPPv2N15lv_style_prop_t17LV_STYLE_PROP_ANYE"></span><span id="lv__style_8h_1a1cc3fc02ad523b88130a21e3e7d116a5ac23c8c352f7ce756f7ea8b76d4cfac1e" class="target"></span>enumerator LV_STYLE_PROP_ANY[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N15lv_style_prop_t28_LV_STYLE_LAST_BUILT_IN_PROPE]
+
enumerator LV_STYLE_PROP_ANY
  
  
690行目: 680行目:
 
Functions
 
Functions
  
; <span id="_CPPv319LV_EXPORT_CONST_INT16LV_IMG_ZOOM_NONE"></span><span id="_CPPv219LV_EXPORT_CONST_INT16LV_IMG_ZOOM_NONE"></span><span id="LV_EXPORT_CONST_INT__LV_IMG_ZOOM_NONE"></span><span id="lv__style_8h_1a45fcdfa00d0aca4da4f8b252f1ec2ece" class="target"></span>LV_EXPORT_CONST_INT(LV_IMG_ZOOM_NONE)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv419LV_EXPORT_CONST_INT16LV_IMG_ZOOM_NONE] <span id="_CPPv319LV_EXPORT_CONST_INT16LV_IMG_ZOOM_NONE"></span><span id="_CPPv219LV_EXPORT_CONST_INT16LV_IMG_ZOOM_NONE"></span><span id="LV_EXPORT_CONST_INT__LV_IMG_ZOOM_NONE"></span><span id="lv__style_8h_1a45fcdfa00d0aca4da4f8b252f1ec2ece" class="target"></span>
+
LV_EXPORT_CONST_INT(LV_IMG_ZOOM_NONE)  
 
:
 
:
  
; <span id="_CPPv313lv_style_initP10lv_style_t"></span><span id="_CPPv213lv_style_initP10lv_style_t"></span><span id="lv_style_init__lv_style_tP"></span><span id="lv__style_8h_1a327db2c3050bd2d1a1693aa6981205dd" class="target"></span>void lv_style_init(lv_style[https://docs.lvgl.io/8.2/overview/style.html#_CPPv419LV_EXPORT_CONST_INT16LV_IMG_ZOOM_NONE]_t *style)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv413lv_style_initP10lv_style_t] <span id="_CPPv313lv_style_initP10lv_style_t"></span><span id="_CPPv213lv_style_initP10lv_style_t"></span><span id="lv_style_init__lv_style_tP"></span><span id="lv__style_8h_1a327db2c3050bd2d1a1693aa6981205dd" class="target"></span>
+
void lv_style_init(lv_style_t *style)  
: Initialize a style  Note  Do not [https://docs.lvgl.io/8.2/overview/style.html#_CPPv413lv_style_initP10lv_style_t]call <code>lv_style_init</code> on styles that already have some properties because this function won't free the used memory, just sets a default state for the style. In other words be sure to initialize styles only once!
+
: Initialize a style  Note  Do not call <code style="color: #bb0000;">lv_style_init</code> on styles that already have some properties because this function won't free the used memory, just sets a default state for the style. In other words be sure to initialize styles only once!
:; Parameters
+
: Parameters
 
:: style -- pointer to a style to initialize
 
:: style -- pointer to a style to initialize
  
; <span id="_CPPv314lv_style_resetP10lv_style_t"></span><span id="_CPPv214lv_style_resetP10lv_style_t"></span><span id="lv_style_reset__lv_style_tP"></span><span id="lv__style_8h_1afd91dc8011c22491bae7010959267741" class="target"></span>void lv_style_reset(lv_style_t *style)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv414lv_style_resetP10lv_style_t] <span id="_CPPv314lv_style_resetP10lv_style_t"></span><span id="_CPPv214lv_style_resetP10lv_style_t"></span><span id="lv_style_reset__lv_style_tP"></span><span id="lv__style_8h_1afd91dc8011c22491bae7010959267741" class="target"></span>
+
void lv_style_reset(lv_style_t *style)  
: Clear all properties from a style [https://docs.lvgl.io/8.2/overview/style.html#_CPPv414lv_style_resetP10lv_style_t]and free all allocated memories.
+
: Clear all properties from a style and free all allocated memories.
:; Parameters
+
: Parameters
 
:: style -- pointer to a style
 
:: style -- pointer to a style
  
; <span id="_CPPv322lv_style_register_propv"></span><span id="_CPPv222lv_style_register_propv"></span><span id="lv_style_register_prop__void"></span><span id="lv__style_8h_1afe546274b3ecb8cc8aa5f4fb514e7767" class="target"></span>lv_style_prop_t lv_style_register_prop(void)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv422lv_style_register_propv] <span id="_CPPv322lv_style_register_propv"></span><span id="_CPPv222lv_style_register_propv"></span><span id="lv_style_register_prop__void"></span><span id="lv__style_8h_1afe546274b3ecb8cc8aa5f4fb514e7767" class="target"></span>
+
lv_style_prop_t lv_style_register_prop(void)  
 
:
 
:
  
; <span id="_CPPv320lv_style_remove_propP10lv_style_t15lv_style_prop_t"></span><span id="_CPPv220lv_style_remove_propP10lv_style_t15lv_style_prop_t"></span><span id="lv_style_remove_prop__lv_style_tP.lv_style_prop_t"></span><span id="lv__style_8h_1a7d2d6138592056144847db78feba2320" class="target"></span>bool lv_style_remove_prop(lv_style[https://docs.lvgl.io/8.2/overview/style.html#_CPPv422lv_style_register_propv]_t *style, lv_style_prop_t prop)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv420lv_style_remove_propP10lv_style_t15lv_style_prop_t] <span id="_CPPv320lv_style_remove_propP10lv_style_t15lv_style_prop_t"></span><span id="_CPPv220lv_style_remove_propP10lv_style_t15lv_style_prop_t"></span><span id="lv_style_remove_prop__lv_style_tP.lv_style_prop_t"></span><span id="lv__style_8h_1a7d2d6138592056144847db78feba2320" class="target"></span>
+
bool lv_style_remove_prop(lv_style_t *style, lv_style_prop_t prop)  
 
: Remove a property from a style
 
: Remove a property from a style
:; Parameters
+
: Parameters
::* style -- poi[https://docs.lvgl.io/8.2/overview/style.html#_CPPv420lv_style_remove_propP10lv_style_t15lv_style_prop_t]nter to a style
+
::* style -- pointer to a style
 
::* prop -- a style property ORed with a state.
 
::* prop -- a style property ORed with a state.
:; Returns
+
: Returns
 
:: true: the property was found and removed; false: the property wasn't found
 
:: true: the property was found and removed; false: the property wasn't found
  
; <span id="_CPPv317lv_style_set_propP10lv_style_t15lv_style_prop_t16lv_style_value_t"></span><span id="_CPPv217lv_style_set_propP10lv_style_t15lv_style_prop_t16lv_style_value_t"></span><span id="lv_style_set_prop__lv_style_tP.lv_style_prop_t.lv_style_value_t"></span><span id="lv__style_8h_1a29e7e4bbafc2bcc964bbff48942d894c" class="target"></span>void lv_style_set_prop(lv_style_t *style, lv_style_prop_t prop, lv_style_value_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv417lv_style_set_propP10lv_style_t15lv_style_prop_t16lv_style_value_t] <span id="_CPPv317lv_style_set_propP10lv_style_t15lv_style_prop_t16lv_style_value_t"></span><span id="_CPPv217lv_style_set_propP10lv_style_t15lv_style_prop_t16lv_style_value_t"></span><span id="lv_style_set_prop__lv_style_tP.lv_style_prop_t.lv_style_value_t"></span><span id="lv__style_8h_1a29e7e4bbafc2bcc964bbff48942d894c" class="target"></span>
+
void lv_style_set_prop(lv_style_t *style, lv_style_prop_t prop, lv_style_value_t value)  
: Set the value of property in a style. This function shouldn't be used directly by t[https://docs.lvgl.io/8.2/overview/style.html#_CPPv417lv_style_set_propP10lv_style_t15lv_style_prop_t16lv_style_value_t]he user. Instead use <code>lv_style_set_<prop_name>()</code>. E.g. <code>lv_style_set_bg_color()</code>
+
: Set the value of property in a style. This function shouldn't be used directly by the user. Instead use <code style="color: #bb0000;">lv_style_set_<prop_name>()</code>. E.g. <code style="color: #bb0000;">lv_style_set_bg_color()</code>
:; Parameters
+
: Parameters
 
::* style -- pointer to style
 
::* style -- pointer to style
::* prop -- the ID of a property (e.g. <code>LV_STYLE_BG_COLOR</code>)
+
::* prop -- the ID of a property (e.g. <code style="color: #bb0000;">LV_STYLE_BG_COLOR</code>)
::* value -- <code>lv_style_value_t</code> variable in which a field is set according to the type of <code>prop</code>
+
::* value -- <code style="color: #bb0000;">lv_style_value_t</code> variable in which a field is set according to the type of <code style="color: #bb0000;">prop</code>
  
; <span id="_CPPv317lv_style_get_propPK10lv_style_t15lv_style_prop_tP16lv_style_value_t"></span><span id="_CPPv217lv_style_get_propPK10lv_style_t15lv_style_prop_tP16lv_style_value_t"></span><span id="lv_style_get_prop__lv_style_tCP.lv_style_prop_t.lv_style_value_tP"></span><span id="lv__style_8h_1a68484ae2c970774490de6e1f17062627" class="target"></span>lv_res_t lv_style_get_prop(const lv_style_t *style, lv_style_prop_t prop, lv_style_value_t *value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv417lv_style_get_propPK10lv_style_t15lv_style_prop_tP16lv_style_value_t] <span id="_CPPv317lv_style_get_propPK10lv_style_t15lv_style_prop_tP16lv_style_value_t"></span><span id="_CPPv217lv_style_get_propPK10lv_style_t15lv_style_prop_tP16lv_style_value_t"></span><span id="lv_style_get_prop__lv_style_tCP.lv_style_prop_t.lv_style_value_tP"></span><span id="lv__style_8h_1a68484ae2c970774490de6e1f17062627" class="target"></span>
+
lv_res_t lv_style_get_prop(const lv_style_t *style, lv_style_prop_t prop, lv_style_value_t *value)  
: Get the value of a property  Note  For performance reasons there are no sanity check on <code>style</code> [https://docs.lvgl.io/8.2/overview/style.html#_CPPv417lv_style_get_propPK10lv_style_t15lv_style_prop_tP16lv_style_value_t]
+
: Get the value of a property  Note  For performance reasons there are no sanity check on <code style="color: #bb0000;">style</code>  
:; Parameters
+
: Parameters
 
::* style -- pointer to a style
 
::* style -- pointer to a style
 
::* prop -- the ID of a property
 
::* prop -- the ID of a property
::* value -- pointer to a <code>lv_style_value_t</code> variable to store the value
+
::* value -- pointer to a <code style="color: #bb0000;">lv_style_value_t</code> variable to store the value
:; Returns
+
: Returns
:: LV_RES_INV: the property wasn't found in the style (<code>value</code> is unchanged) LV_RES_OK: the property was fond, and <code>value</code> is set accordingly
+
:: LV_RES_INV: the property wasn't found in the style (<code style="color: #bb0000;">value</code> is unchanged) LV_RES_OK: the property was fond, and <code style="color: #bb0000;">value</code> is set accordingly
  
; <span id="_CPPv325lv_style_get_prop_inlinedPK10lv_style_t15lv_style_prop_tP16lv_style_value_t"></span><span id="_CPPv225lv_style_get_prop_inlinedPK10lv_style_t15lv_style_prop_tP16lv_style_value_t"></span><span id="lv_style_get_prop_inlined__lv_style_tCP.lv_style_prop_t.lv_style_value_tP"></span><span id="lv__style_8h_1a2b7e48d5e0e1e4d19aaf3466ad8d2bfe" class="target"></span>static inline lv_res_t lv_style_get_prop_inlined(const lv_style_t *style, lv_style_prop_t prop, lv_style_value_t *value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv425lv_style_get_prop_inlinedPK10lv_style_t15lv_style_prop_tP16lv_style_value_t] <span id="_CPPv325lv_style_get_prop_inlinedPK10lv_style_t15lv_style_prop_tP16lv_style_value_t"></span><span id="_CPPv225lv_style_get_prop_inlinedPK10lv_style_t15lv_style_prop_tP16lv_style_value_t"></span><span id="lv_style_get_prop_inlined__lv_style_tCP.lv_style_prop_t.lv_style_value_tP"></span><span id="lv__style_8h_1a2b7e48d5e0e1e4d19aaf3466ad8d2bfe" class="target"></span>
+
static inline lv_res_t lv_style_get_prop_inlined(const lv_style_t *style, lv_style_prop_t prop, lv_style_value_t *value)  
: Get the value of a property  Note  For performance reasons there are no sanity check on <code>style</code>  Note  This function i[https://docs.lvgl.io/8.2/overview/style.html#_CPPv425lv_style_get_prop_inlinedPK10lv_style_t15lv_style_prop_tP16lv_style_value_t]s the same as lv_style_get_prop but inlined. Use it only on performance critical places
+
: Get the value of a property  Note  For performance reasons there are no sanity check on <code style="color: #bb0000;">style</code>  Note  This function is the same as lv_style_get_prop but inlined. Use it only on performance critical places
:; Parameters
+
: Parameters
 
::* style -- pointer to a style
 
::* style -- pointer to a style
 
::* prop -- the ID of a property
 
::* prop -- the ID of a property
::* value -- pointer to a <code>lv_style_value_t</code> variable to store the value
+
::* value -- pointer to a <code style="color: #bb0000;">lv_style_value_t</code> variable to store the value
:; Returns
+
: Returns
:: LV_RES_INV: the property wasn't found in the style (<code>value</code> is unchanged) LV_RES_OK: the property was fond, and <code>value</code> is set accordingly
+
:: LV_RES_INV: the property wasn't found in the style (<code style="color: #bb0000;">value</code> is unchanged) LV_RES_OK: the property was fond, and <code style="color: #bb0000;">value</code> is set accordingly
  
; <span id="_CPPv328lv_style_transition_dsc_initP25lv_style_transition_dsc_tA_K15lv_style_prop_t17lv_anim_path_cb_t8uint32_t8uint32_tPv"></span><span id="_CPPv228lv_style_transition_dsc_initP25lv_style_transition_dsc_tA_K15lv_style_prop_t17lv_anim_path_cb_t8uint32_t8uint32_tPv"></span><span id="lv_style_transition_dsc_init__lv_style_transition_dsc_tP.lv_style_prop_tCA.lv_anim_path_cb_t.uint32_t.uint32_t.voidP"></span><span id="lv__style_8h_1a410dd81df9cd14067e90f2db56363289" class="target"></span>void lv_style_transition_dsc_init(lv_style_transition_dsc_t *tr, const lv_style_prop_t props[], lv_anim_path_cb_t path_cb, uint32_t time, uint32_t delay, void *user_data)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv428lv_style_transition_dsc_initP25lv_style_transition_dsc_tA_K15lv_style_prop_t17lv_anim_path_cb_t8uint32_t8uint32_tPv] <span id="_CPPv328lv_style_transition_dsc_initP25lv_style_transition_dsc_tA_K15lv_style_prop_t17lv_anim_path_cb_t8uint32_t8uint32_tPv"></span><span id="_CPPv228lv_style_transition_dsc_initP25lv_style_transition_dsc_tA_K15lv_style_prop_t17lv_anim_path_cb_t8uint32_t8uint32_tPv"></span><span id="lv_style_transition_dsc_init__lv_style_transition_dsc_tP.lv_style_prop_tCA.lv_anim_path_cb_t.uint32_t.uint32_t.voidP"></span><span id="lv__style_8h_1a410dd81df9cd14067e90f2db56363289" class="target"></span>
+
void lv_style_transition_dsc_init(lv_style_transition_dsc_t *tr, const lv_style_prop_t props[], lv_anim_path_cb_t path_cb, uint32_t time, uint32_t delay, void *user_data)  
 
:
 
:
  
; <span id="_CPPv325lv_style_prop_get_default15lv_style_prop_t"></span><span id="_CPPv225lv_style_prop_get_default15lv_style_prop_t"></span><span id="lv_style_prop_get_default__lv_style_prop_t"></span><span id="lv__style_8h_1ac0c2eb5a726aea484d0254282be82538" class="target"></span>lv_style_value_t lv_style_prop_get_default(lv_style_prop_t prop)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv425lv_style_prop_get_default15lv_style_prop_t] <span id="_CPPv325lv_style_prop_get_default15lv_style_prop_t"></span><span id="_CPPv225lv_style_prop_get_default15lv_style_prop_t"></span><span id="lv_style_prop_get_default__lv_style_prop_t"></span><span id="lv__style_8h_1ac0c2eb5a726aea484d0254282be82538" class="target"></span>
+
lv_style_value_t lv_style_prop_get_default(lv_style_prop_t prop)  
 
: Get the default value of a property
 
: Get the default value of a property
:; Parameters
+
: Parameters
:: prop --[https://docs.lvgl.io/8.2/overview/style.html#_CPPv425lv_style_prop_get_default15lv_style_prop_t] the ID of a property
+
:: prop -- the ID of a property
:; Retur[https://docs.lvgl.io/8.2/overview/style.html#_CPPv428lv_style_transition_dsc_initP25lv_style_transition_dsc_tA_K15lv_style_prop_t17lv_anim_path_cb_t8uint32_t8uint32_tPv]ns
+
: Returns
 
:: the default value
 
:: the default value
  
; <span id="_CPPv317lv_style_is_emptyPK10lv_style_t"></span><span id="_CPPv217lv_style_is_emptyPK10lv_style_t"></span><span id="lv_style_is_empty__lv_style_tCP"></span><span id="lv__style_8h_1a3343d3e8d42132d6e280b80f0995eb64" class="target"></span>bool lv_style_is_empty(const lv_style_t *style)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv417lv_style_is_emptyPK10lv_style_t] <span id="_CPPv317lv_style_is_emptyPK10lv_style_t"></span><span id="_CPPv217lv_style_is_emptyPK10lv_style_t"></span><span id="lv_style_is_empty__lv_style_tCP"></span><span id="lv__style_8h_1a3343d3e8d42132d6e280b80f0995eb64" class="target"></span>
+
bool lv_style_is_empty(const lv_style_t *style)  
: Checks if a style is empty (has no properti[https://docs.lvgl.io/8.2/overview/style.html#_CPPv417lv_style_is_emptyPK10lv_style_t]es)
+
: Checks if a style is empty (has no properties)
:; Parameters
+
: Parameters
 
:: style -- pointer to a style
 
:: style -- pointer to a style
:; Returns
+
: Returns
 
:: true if the style is empty
 
:: true if the style is empty
  
; <span id="_CPPv324_lv_style_get_prop_group15lv_style_prop_t"></span><span id="_CPPv224_lv_style_get_prop_group15lv_style_prop_t"></span><span id="_lv_style_get_prop_group__lv_style_prop_t"></span><span id="lv__style_8h_1a2843a91a10d17b909ac91509449a279c" class="target"></span>uint8_t _lv_style_get_prop_group(lv_style_prop_t prop)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv424_lv_style_get_prop_group15lv_style_prop_t] <span id="_CPPv324_lv_style_get_prop_group15lv_style_prop_t"></span><span id="_CPPv224_lv_style_get_prop_group15lv_style_prop_t"></span><span id="_lv_style_get_prop_group__lv_style_prop_t"></span><span id="lv__style_8h_1a2843a91a10d17b909ac91509449a279c" class="target"></span>
+
uint8_t _lv_style_get_prop_group(lv_style_prop_t prop)  
: Tell the group of a property. If the a property fr[https://docs.lvgl.io/8.2/overview/style.html#_CPPv424_lv_style_get_prop_group15lv_style_prop_t]om a group is set in a style the (1 << group) bit of style->has_group is set. It allows early skipping the style if the property is not exists in the style at all.
+
: Tell the group of a property. If the a property from a group is set in a style the (1 << group) bit of style->has_group is set. It allows early skipping the style if the property is not exists in the style at all.
:; Parameters
+
: Parameters
 
:: prop -- a style property
 
:: prop -- a style property
:; Returns
+
: Returns
 
:: the group [0..7] 7 means all the custom properties with index > 112
 
:: the group [0..7] 7 means all the custom properties with index > 112
  
; <span id="_CPPv317lv_style_set_sizeP10lv_style_t10lv_coord_t"></span><span id="_CPPv217lv_style_set_sizeP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_size__lv_style_tP.lv_coord_t"></span><span id="lv__style_8h_1a1a19f093c8ff1d9c0ee3363d45d6dfae" class="target"></span>static inline void lv_style_set_size(lv_style_t *style, lv_coord_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv417lv_style_set_sizeP10lv_style_t10lv_coord_t] <span id="_CPPv317lv_style_set_sizeP10lv_style_t10lv_coord_t"></span><span id="_CPPv217lv_style_set_sizeP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_size__lv_style_tP.lv_coord_t"></span><span id="lv__style_8h_1a1a19f093c8ff1d9c0ee3363d45d6dfae" class="target"></span>
+
static inline void lv_style_set_size(lv_style_t *style, lv_coord_t value)  
 
:
 
:
  
; <span id="_CPPv320lv_style_set_pad_allP10lv_style_t10lv_coord_t"></span><span id="_CPPv220lv_style_set_pad_allP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_pad_all__lv_style_tP.lv_coord_t"></span><span id="lv__style_8h_1ac537b3da5cb5632eebedfefc48b1b534" class="target"></span>static inline void lv_style_set_pad_all(lv_style_t *style, lv_c[https://docs.lvgl.io/8.2/overview/style.html#_CPPv417lv_style_set_sizeP10lv_style_t10lv_coord_t]oord_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv420lv_style_set_pad_allP10lv_style_t10lv_coord_t] <span id="_CPPv320lv_style_set_pad_allP10lv_style_t10lv_coord_t"></span><span id="_CPPv220lv_style_set_pad_allP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_pad_all__lv_style_tP.lv_coord_t"></span><span id="lv__style_8h_1ac537b3da5cb5632eebedfefc48b1b534" class="target"></span>
+
static inline void lv_style_set_pad_all(lv_style_t *style, lv_coord_t value)  
 
:
 
:
  
; <span id="_CPPv320lv_style_set_pad_horP10lv_style_t10lv_coord_t"></span><span id="_CPPv220lv_style_set_pad_horP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_pad_hor__lv_style_tP.lv_coord_t"></span><span id="lv__style_8h_1a7fae67bcb304ed4e13c21365f05488e7" class="target"></span>static inline void lv_style_set_pad_hor(lv_style_t *style, lv_coor[https://docs.lvgl.io/8.2/overview/style.html#_CPPv420lv_style_set_pad_allP10lv_style_t10lv_coord_t]d_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv420lv_style_set_pad_horP10lv_style_t10lv_coord_t] <span id="_CPPv320lv_style_set_pad_horP10lv_style_t10lv_coord_t"></span><span id="_CPPv220lv_style_set_pad_horP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_pad_hor__lv_style_tP.lv_coord_t"></span><span id="lv__style_8h_1a7fae67bcb304ed4e13c21365f05488e7" class="target"></span>
+
static inline void lv_style_set_pad_hor(lv_style_t *style, lv_coord_t value)  
 
:
 
:
  
; <span id="_CPPv320lv_style_set_pad_verP10lv_style_t10lv_coord_t"></span><span id="_CPPv220lv_style_set_pad_verP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_pad_ver__lv_style_tP.lv_coord_t"></span><span id="lv__style_8h_1a1309ff73996258602f56f4af1b68d832" class="target"></span>static inline void lv_style_set_pad_ver(lv_style_t *style, lv_coor[https://docs.lvgl.io/8.2/overview/style.html#_CPPv420lv_style_set_pad_horP10lv_style_t10lv_coord_t]d_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv420lv_style_set_pad_verP10lv_style_t10lv_coord_t] <span id="_CPPv320lv_style_set_pad_verP10lv_style_t10lv_coord_t"></span><span id="_CPPv220lv_style_set_pad_verP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_pad_ver__lv_style_tP.lv_coord_t"></span><span id="lv__style_8h_1a1309ff73996258602f56f4af1b68d832" class="target"></span>
+
static inline void lv_style_set_pad_ver(lv_style_t *style, lv_coord_t value)  
 
:
 
:
  
; <span id="_CPPv320lv_style_set_pad_gapP10lv_style_t10lv_coord_t"></span><span id="_CPPv220lv_style_set_pad_gapP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_pad_gap__lv_style_tP.lv_coord_t"></span><span id="lv__style_8h_1a22feaf52c9d886aeed38ecdbd11cbce9" class="target"></span>static inline void lv_style_set_pad_gap(lv_style_t *style, lv_coor[https://docs.lvgl.io/8.2/overview/style.html#_CPPv420lv_style_set_pad_verP10lv_style_t10lv_coord_t]d_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv420lv_style_set_pad_gapP10lv_style_t10lv_coord_t] <span id="_CPPv320lv_style_set_pad_gapP10lv_style_t10lv_coord_t"></span><span id="_CPPv220lv_style_set_pad_gapP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_pad_gap__lv_style_tP.lv_coord_t"></span><span id="lv__style_8h_1a22feaf52c9d886aeed38ecdbd11cbce9" class="target"></span>
+
static inline void lv_style_set_pad_gap(lv_style_t *style, lv_coord_t value)  
 
:
 
:
  
; <span id="_CPPv318lv_gradient_stop_t"></span><span id="_CPPv218lv_gradient_stop_t"></span><span id="lv_gradient_stop_t"></span><span id="structlv__gradient__stop__t" class="target"></span>struct lv_gradient_stop_t[https://docs.lvgl.io/8.2/overview/style.html#_CPPv418lv_gradient_stop_t] <span id="_CPPv318lv_gradient_stop_t"></span><span id="_CPPv218lv_gradient_stop_t"></span><span id="lv_gradient_stop_t"></span><span id="structlv__gradient__stop__t" class="target"></span>
+
struct lv_gradient_stop_t  
: ''#include <lv_style.h>''[https://docs.lvgl.io/8.2/overview/style.html#_CPPv418lv_gradient_stop_t] A gradient s[https://docs.lvgl.io/8.2/overview/style.html#_CPPv420lv_style_set_pad_gapP10lv_style_t10lv_coord_t]top definition. This matches a color and a position in a virtual 0-255 scale.  Public Members
+
: ''#include <lv_style.h>'' A gradient stop definition. This matches a color and a position in a virtual 0-255 scale.  Public Members
:; <span id="_CPPv3N18lv_gradient_stop_t5colorE"></span><span id="_CPPv2N18lv_gradient_stop_t5colorE"></span><span id="lv_gradient_stop_t::color__lv_color_t"></span><span id="structlv__gradient__stop__t_1a7eb2e8afc8c04f93ffc718c24a8396ef" class="target"></span>lv_color_t color[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N18lv_gradient_stop_t5colorE] <span id="_CPPv3N18lv_gradient_stop_t5colorE"></span><span id="_CPPv2N18lv_gradient_stop_t5colorE"></span><span id="lv_gradient_stop_t::color__lv_color_t"></span><span id="structlv__gradient__stop__t_1a7eb2e8afc8c04f93ffc718c24a8396ef" class="target"></span>
+
: lv_color_t color  
:: The stop col[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N18lv_gradient_stop_t5colorE]or
+
:: The stop color
:; <span id="_CPPv3N18lv_gradient_stop_t4fracE"></span><span id="_CPPv2N18lv_gradient_stop_t4fracE"></span><span id="lv_gradient_stop_t::frac__uint8_t"></span><span id="structlv__gradient__stop__t_1ae7f259746900ef125e568ddc79beda02" class="target"></span>uint8_t frac[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N18lv_gradient_stop_t4fracE] <span id="_CPPv3N18lv_gradient_stop_t4fracE"></span><span id="_CPPv2N18lv_gradient_stop_t4fracE"></span><span id="lv_gradient_stop_t::frac__uint8_t"></span><span id="structlv__gradient__stop__t_1ae7f259746900ef125e568ddc79beda02" class="target"></span>
+
: uint8_t frac  
:: The stop[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N18lv_gradient_stop_t4fracE] position in 1/255 unit
+
:: The stop position in 1/255 unit
  
; struct lv_grad_dsc_t[https://docs.lvgl.io/8.2/overview/style.html#_CPPv413lv_grad_dsc_t]
+
struct lv_grad_dsc_t
: ''#include <lv_sty''[https://docs.lvgl.io/8.2/overview/style.html#_CPPv413lv_grad_dsc_t]''le.h>'' A descriptor of a gradient.  Public Members
+
: ''#include <lv_sty''''le.h>'' A descriptor of a gradient.  Public Members
:; <span id="_CPPv3N13lv_grad_dsc_t5stopsE"></span><span id="_CPPv2N13lv_grad_dsc_t5stopsE"></span><span id="lv_grad_dsc_t::stops__lv_gradient_stop_tA"></span><span id="structlv__grad__dsc__t_1aef52df36a9ba617bf65e71ead1f94105" class="target"></span>lv_gradient_stop_t stops[LV_GRADIENT_MAX_STOPS][https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N13lv_grad_dsc_t5stopsE] <span id="_CPPv3N13lv_grad_dsc_t5stopsE"></span><span id="_CPPv2N13lv_grad_dsc_t5stopsE"></span><span id="lv_grad_dsc_t::stops__lv_gradient_stop_tA"></span><span id="structlv__grad__dsc__t_1aef52df36a9ba617bf65e71ead1f94105" class="target"></span>
+
: lv_gradient_stop_t stops[LV_GRADIENT_MAX_STOPS]  
 
:: A gradient stop array
 
:: A gradient stop array
:; <span id="_CPPv3N13lv_grad_dsc_t11stops_countE"></span><span id="_CPPv2N13lv_grad_dsc_t11stops_countE"></span><span id="lv_grad_dsc_t::stops_count__uint8_t"></span><span id="structlv__grad__dsc__t_1a9bc6aa40e9b42a10389d99877cdb65ac" class="target"></span>uint8_t stops_co[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N13lv_grad_dsc_t5stopsE]unt[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N13lv_grad_dsc_t11stops_countE] <span id="_CPPv3N13lv_grad_dsc_t11stops_countE"></span><span id="_CPPv2N13lv_grad_dsc_t11stops_countE"></span><span id="lv_grad_dsc_t::stops_count__uint8_t"></span><span id="structlv__grad__dsc__t_1a9bc6aa40e9b42a10389d99877cdb65ac" class="target"></span>
+
: uint8_t stops_count
:: The number of u[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N13lv_grad_dsc_t11stops_countE]sed stops in the array
+
:: The number of used stops in the array
:; <span id="_CPPv3N13lv_grad_dsc_t3dirE"></span><span id="_CPPv2N13lv_grad_dsc_t3dirE"></span><span id="lv_grad_dsc_t::dir__lv_grad_dir_t"></span><span id="structlv__grad__dsc__t_1a63223754438f889dc8b358701f301b5f" class="target"></span>lv_grad_dir_t dir[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N13lv_grad_dsc_t3dirE] <span id="_CPPv3N13lv_grad_dsc_t3dirE"></span><span id="_CPPv2N13lv_grad_dsc_t3dirE"></span><span id="lv_grad_dsc_t::dir__lv_grad_dir_t"></span><span id="structlv__grad__dsc__t_1a63223754438f889dc8b358701f301b5f" class="target"></span>
+
: lv_grad_dir_t dir  
:: The gradient [https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N13lv_grad_dsc_t3dirE]direction. Any of LV_GRAD_DIR_HOR, LV_GRAD_DIR_VER, LV_GRAD_DIR_NONE
+
:: The gradient direction. Any of LV_GRAD_DIR_HOR, LV_GRAD_DIR_VER, LV_GRAD_DIR_NONE
:; <span id="_CPPv3N13lv_grad_dsc_t6ditherE"></span><span id="_CPPv2N13lv_grad_dsc_t6ditherE"></span><span id="lv_grad_dsc_t::dither__lv_dither_mode_t"></span><span id="structlv__grad__dsc__t_1abab13dc2759b597005b6bce3ba0b008e" class="target"></span>lv_dither_mode_t dither[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N13lv_grad_dsc_t6ditherE] <span id="_CPPv3N13lv_grad_dsc_t6ditherE"></span><span id="_CPPv2N13lv_grad_dsc_t6ditherE"></span><span id="lv_grad_dsc_t::dither__lv_dither_mode_t"></span><span id="structlv__grad__dsc__t_1abab13dc2759b597005b6bce3ba0b008e" class="target"></span>
+
: lv_dither_mode_t dither  
:: Whether to dither t[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N13lv_grad_dsc_t6ditherE]he gradient or not. Any of LV_DITHER_NONE, LV_DITHER_ORDERED, LV_DITHER_ERR_DIFF
+
:: Whether to dither the gradient or not. Any of LV_DITHER_NONE, LV_DITHER_ORDERED, LV_DITHER_ERR_DIFF
  
; <span id="_CPPv316lv_style_value_t"></span><span id="_CPPv216lv_style_value_t"></span><span id="unionlv__style__value__t" class="target"></span>union lv_style_value_t[https://docs.lvgl.io/8.2/overview/style.html#_CPPv416lv_style_value_t] <span id="_CPPv316lv_style_value_t"></span><span id="_CPPv216lv_style_value_t"></span><span id="unionlv__style__value__t" class="target"></span>
+
union lv_style_value_t  
: ''#include <lv_style''[https://docs.lvgl.io/8.2/overview/style.html#_CPPv416lv_style_value_t]''.h>'' A common type to handle all the property types in the same way.  Public Members
+
: ''#include <lv_style''''.h>'' A common type to handle all the property types in the same way.  Public Members
:; <span id="_CPPv3N16lv_style_value_t3numE"></span><span id="_CPPv2N16lv_style_value_t3numE"></span><span id="lv_style_value_t::num__int32_t"></span><span id="unionlv__style__value__t_1a6daa225f23d73c54762739757d59ee6b" class="target"></span>int32_t num[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N16lv_style_value_t3numE] <span id="_CPPv3N16lv_style_value_t3numE"></span><span id="_CPPv2N16lv_style_value_t3numE"></span><span id="lv_style_value_t::num__int32_t"></span><span id="unionlv__style__value__t_1a6daa225f23d73c54762739757d59ee6b" class="target"></span>
+
: int32_t num  
:: Number [https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N16lv_style_value_t3numE]integer number (opacity, enums, booleans or "normal" numbers)
+
:: Number integer number (opacity, enums, booleans or "normal" numbers)
:; <span id="_CPPv3N16lv_style_value_t3ptrE"></span><span id="_CPPv2N16lv_style_value_t3ptrE"></span><span id="lv_style_value_t::ptr__voidCP"></span><span id="unionlv__style__value__t_1a1ec5ca1a76462368a2e92cebd40de345" class="target"></span>const void *ptr[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N16lv_style_value_t3ptrE] <span id="_CPPv3N16lv_style_value_t3ptrE"></span><span id="_CPPv2N16lv_style_value_t3ptrE"></span><span id="lv_style_value_t::ptr__voidCP"></span><span id="unionlv__style__value__t_1a1ec5ca1a76462368a2e92cebd40de345" class="target"></span>
+
: const void *ptr  
:: Constant po[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N16lv_style_value_t3ptrE]inters (font, cone text, etc)
+
:: Constant pointers (font, cone text, etc)
:; <span id="_CPPv3N16lv_style_value_t5colorE"></span><span id="_CPPv2N16lv_style_value_t5colorE"></span><span id="lv_style_value_t::color__lv_color_t"></span><span id="unionlv__style__value__t_1aa9831331f2edec01437f22c91a0491e8" class="target"></span>lv_color_t color[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N16lv_style_value_t5colorE] <span id="_CPPv3N16lv_style_value_t5colorE"></span><span id="_CPPv2N16lv_style_value_t5colorE"></span><span id="lv_style_value_t::color__lv_color_t"></span><span id="unionlv__style__value__t_1aa9831331f2edec01437f22c91a0491e8" class="target"></span>
+
: lv_color_t color  
 
:: Colors
 
:: Colors
  
[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N16lv_style_value_t5colorE]
 
; <span id="_CPPv325lv_style_transition_dsc_t"></span><span id="_CPPv225lv_style_transition_dsc_t"></span><span id="lv_style_transition_dsc_t"></span><span id="structlv__style__transition__dsc__t" class="target"></span>struct lv_style_transition_dsc_t[https://docs.lvgl.io/8.2/overview/style.html#_CPPv425lv_style_transition_dsc_t] <span id="_CPPv325lv_style_transition_dsc_t"></span><span id="_CPPv225lv_style_transition_dsc_t"></span><span id="lv_style_transition_dsc_t"></span><span id="structlv__style__transition__dsc__t" class="target"></span>
 
: ''#include <lv_style.h>'' Descr[https://docs.lvgl.io/8.2/overview/style.html#_CPPv425lv_style_transition_dsc_t]iptor for style transitions  Public Members
 
:; <span id="_CPPv3N25lv_style_transition_dsc_t5propsE"></span><span id="_CPPv2N25lv_style_transition_dsc_t5propsE"></span><span id="lv_style_transition_dsc_t::props__lv_style_prop_tCP"></span><span id="structlv__style__transition__dsc__t_1a3140e03dc30085c0da114be4e4b5e798" class="target"></span>const lv_style_prop_t *props[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N25lv_style_transition_dsc_t5propsE] <span id="_CPPv3N25lv_style_transition_dsc_t5propsE"></span><span id="_CPPv2N25lv_style_transition_dsc_t5propsE"></span><span id="lv_style_transition_dsc_t::props__lv_style_prop_tCP"></span><span id="structlv__style__transition__dsc__t_1a3140e03dc30085c0da114be4e4b5e798" class="target"></span>
 
:: An array with the proper[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N25lv_style_transition_dsc_t5propsE]ties to animate.
 
:; <span id="_CPPv3N25lv_style_transition_dsc_t9user_dataE"></span><span id="_CPPv2N25lv_style_transition_dsc_t9user_dataE"></span><span id="lv_style_transition_dsc_t::user_data__voidP"></span><span id="structlv__style__transition__dsc__t_1aa7830f3fd31d9e13f332650d9375c306" class="target"></span>void *user_data[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N25lv_style_transition_dsc_t9user_dataE] <span id="_CPPv3N25lv_style_transition_dsc_t9user_dataE"></span><span id="_CPPv2N25lv_style_transition_dsc_t9user_dataE"></span><span id="lv_style_transition_dsc_t::user_data__voidP"></span><span id="structlv__style__transition__dsc__t_1aa7830f3fd31d9e13f332650d9375c306" class="target"></span>
 
:: A custom us[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N25lv_style_transition_dsc_t9user_dataE]er data that will be passed to the animation's user_data
 
:; <span id="_CPPv3N25lv_style_transition_dsc_t8path_xcbE"></span><span id="_CPPv2N25lv_style_transition_dsc_t8path_xcbE"></span><span id="lv_style_transition_dsc_t::path_xcb__lv_anim_path_cb_t"></span><span id="structlv__style__transition__dsc__t_1ab7e4ac4109a90047977035fd5cfdc0b4" class="target"></span>lv_anim_path_cb_t path_xcb[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N25lv_style_transition_dsc_t8path_xcbE] <span id="_CPPv3N25lv_style_transition_dsc_t8path_xcbE"></span><span id="_CPPv2N25lv_style_transition_dsc_t8path_xcbE"></span><span id="lv_style_transition_dsc_t::path_xcb__lv_anim_path_cb_t"></span><span id="structlv__style__transition__dsc__t_1ab7e4ac4109a90047977035fd5cfdc0b4" class="target"></span>
 
:: A path for the animati[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N25lv_style_transition_dsc_t8path_xcbE]on.
 
:; <span id="_CPPv3N25lv_style_transition_dsc_t4timeE"></span><span id="_CPPv2N25lv_style_transition_dsc_t4timeE"></span><span id="lv_style_transition_dsc_t::time__uint32_t"></span><span id="structlv__style__transition__dsc__t_1a10c17acddbb516b677dc09e427c6cdfb" class="target"></span>uint32_t time[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N25lv_style_transition_dsc_t4timeE] <span id="_CPPv3N25lv_style_transition_dsc_t4timeE"></span><span id="_CPPv2N25lv_style_transition_dsc_t4timeE"></span><span id="lv_style_transition_dsc_t::time__uint32_t"></span><span id="structlv__style__transition__dsc__t_1a10c17acddbb516b677dc09e427c6cdfb" class="target"></span>
 
:: Duration [https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N25lv_style_transition_dsc_t4timeE]of the transition in [ms]
 
:; <span id="_CPPv3N25lv_style_transition_dsc_t5delayE"></span><span id="_CPPv2N25lv_style_transition_dsc_t5delayE"></span><span id="lv_style_transition_dsc_t::delay__uint32_t"></span><span id="structlv__style__transition__dsc__t_1aa6fbfa99780fab4796cea342f38a0b42" class="target"></span>uint32_t delay[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N25lv_style_transition_dsc_t5delayE] <span id="_CPPv3N25lv_style_transition_dsc_t5delayE"></span><span id="_CPPv2N25lv_style_transition_dsc_t5delayE"></span><span id="lv_style_transition_dsc_t::delay__uint32_t"></span><span id="structlv__style__transition__dsc__t_1aa6fbfa99780fab4796cea342f38a0b42" class="target"></span>
 
:: Delay befo[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N25lv_style_transition_dsc_t5delayE]re the transition in [ms]
 
  
; <span id="_CPPv321lv_style_const_prop_t"></span><span id="_CPPv221lv_style_const_prop_t"></span><span id="lv_style_const_prop_t"></span><span id="structlv__style__const__prop__t" class="target"></span>struct lv_style_const_prop_t[https://docs.lvgl.io/8.2/overview/style.html#_CPPv421lv_style_const_prop_t] <span id="_CPPv321lv_style_const_prop_t"></span><span id="_CPPv221lv_style_const_prop_t"></span><span id="lv_style_const_prop_t"></span><span id="structlv__style__const__prop__t" class="target"></span>
+
struct lv_style_transition_dsc_t
: ''#include <lv_style.h>'' D[https://docs.lvgl.io/8.2/overview/style.html#_CPPv421lv_style_const_prop_t]escriptor of a constant style property.  Public Members
+
: ''#include <lv_style.h>'' Descriptor for style transitions  Public Members
:; <span id="_CPPv3N21lv_style_const_prop_t4propE"></span><span id="_CPPv2N21lv_style_const_prop_t4propE"></span><span id="lv_style_const_prop_t::prop__lv_style_prop_t"></span><span id="structlv__style__const__prop__t_1a4b2661ac1fe7070d7176d6668c4881ce" class="target"></span>lv_style_prop_t prop[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N21lv_style_const_prop_t4propE] <span id="_CPPv3N21lv_style_const_prop_t4propE"></span><span id="_CPPv2N21lv_style_const_prop_t4propE"></span><span id="lv_style_const_prop_t::prop__lv_style_prop_t"></span><span id="structlv__style__const__prop__t_1a4b2661ac1fe7070d7176d6668c4881ce" class="target"></span>
+
: const lv_style_prop_t *props
 +
:: An array with the properties to animate.
 +
: void *user_data
 +
:: A custom user data that will be passed to the animation's user_data
 +
: lv_anim_path_cb_t path_xcb
 +
:: A path for the animation.
 +
: uint32_t time
 +
:: Duration of the transition in [ms]
 +
: uint32_t delay
 +
:: Delay before the transition in [ms]
 +
 
 +
struct lv_style_const_prop_t  
 +
: ''#include <lv_style.h>'' Descriptor of a constant style property.  Public Members
 +
: lv_style_prop_t prop  
 
::
 
::
:; <span id="_CPPv3N21lv_style_const_prop_t5valueE"></span><span id="_CPPv2N21lv_style_const_prop_t5valueE"></span><span id="lv_style_const_prop_t::value__lv_style_value_t"></span><span id="structlv__style__const__prop__t_1a842bc179e1d28935ca87514ced2a2beb" class="target"></span>lv_style_v[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N21lv_style_const_prop_t4propE]alue_t value[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N21lv_style_const_prop_t5valueE] <span id="_CPPv3N21lv_style_const_prop_t5valueE"></span><span id="_CPPv2N21lv_style_const_prop_t5valueE"></span><span id="lv_style_const_prop_t::value__lv_style_value_t"></span><span id="structlv__style__const__prop__t_1a842bc179e1d28935ca87514ced2a2beb" class="target"></span>
+
: lv_style_value_t value  
 
::
 
::
  
; <span id="_CPPv310lv_style_t"></span><span id="_CPPv210lv_style_t"></span><span id="lv_style_t"></span><span id="structlv__style__t" class="target"></span>struct lv_[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N21lv_style_const_prop_t5valueE]style_t[https://docs.lvgl.io/8.2/overview/style.html#_CPPv410lv_style_t] <span id="_CPPv310lv_style_t"></span><span id="_CPPv210lv_style_t"></span><span id="lv_style_t"></span><span id="structlv__style__t" class="target"></span>
+
struct lv_style_t  
: ''#include <lv_''[https://docs.lvgl.io/8.2/overview/style.html#_CPPv410lv_style_t]''style.h>'' Descriptor of a style (a collection of properties and values).  Public Members
+
: ''#include <lv_''''style.h>'' Descriptor of a style (a collection of properties and values).  Public Members
:; <span id="_CPPv3N10lv_style_t8sentinelE"></span><span id="_CPPv2N10lv_style_t8sentinelE"></span><span id="lv_style_t::sentinel__uint32_t"></span><span id="structlv__style__t_1a224f5df27e61983c7529532c829e5a47" class="target"></span>uint32_t sentinel[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N10lv_style_t8sentinelE] <span id="_CPPv3N10lv_style_t8sentinelE"></span><span id="_CPPv2N10lv_style_t8sentinelE"></span><span id="lv_style_t::sentinel__uint32_t"></span><span id="structlv__style__t_1a224f5df27e61983c7529532c829e5a47" class="target"></span>
+
: uint32_t sentinel  
 
::
 
::
:; <span id="_CPPv3N10lv_style_t6value1E"></span><span id="_CPPv2N10lv_style_t6value1E"></span><span id="lv_style_t::value1__lv_style_value_t"></span><span id="structlv__style__t_1adf199b523ec95d17a644255be350bdc3" class="target"></span>lv_styl[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N10lv_style_t8sentinelE]e_value_t value1[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N10lv_style_t6value1E] <span id="_CPPv3N10lv_style_t6value1E"></span><span id="_CPPv2N10lv_style_t6value1E"></span><span id="lv_style_t::value1__lv_style_value_t"></span><span id="structlv__style__t_1adf199b523ec95d17a644255be350bdc3" class="target"></span>
+
: lv_style_value_t value1  
 
::
 
::
:; <span id="_CPPv3N10lv_style_t16values_and_propsE"></span><span id="_CPPv2N10lv_style_t16values_and_propsE"></span><span id="lv_style_t::values_and_props__uint8_tP"></span><span id="structlv__style__t_1a7b4271468b96fe9fb5181996fc8fa506" class="target"></span>uint8_t *valu[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N10lv_style_t6value1E]es_and_props[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N10lv_style_t16values_and_propsE] <span id="_CPPv3N10lv_style_t16values_and_propsE"></span><span id="_CPPv2N10lv_style_t16values_and_propsE"></span><span id="lv_style_t::values_and_props__uint8_tP"></span><span id="structlv__style__t_1a7b4271468b96fe9fb5181996fc8fa506" class="target"></span>
+
: uint8_t *values_and_props
 
::
 
::
:; <span id="_CPPv3N10lv_style_t11const_propsE"></span><span id="_CPPv2N10lv_style_t11const_propsE"></span><span id="lv_style_t::const_props__lv_style_const_prop_tCP"></span><span id="structlv__style__t_1ad803cba185ee38cac18c79ac1113fc50" class="target"></span>const lv_style_[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N10lv_style_t16values_and_propsE]const_prop_t *const_props[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N10lv_style_t11const_propsE] <span id="_CPPv3N10lv_style_t11const_propsE"></span><span id="_CPPv2N10lv_style_t11const_propsE"></span><span id="lv_style_t::const_props__lv_style_const_prop_tCP"></span><span id="structlv__style__t_1ad803cba185ee38cac18c79ac1113fc50" class="target"></span>
+
: const lv_style_const_prop_t *const_props  
 
::
 
::
:; <span id="_CPPv3N10lv_style_t3v_pE"></span><span id="_CPPv2N10lv_style_t3v_pE"></span><span id="structlv__style__t_1a5a4f5c58b1eb7bfcc5a2618b1b0a6cd1" class="target"></span><nowiki>union lv_style_t::[anonymous] </nowiki>[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N10lv_style_t11const_propsE]v_p[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N10lv_style_t3v_pE] <span id="_CPPv3N10lv_style_t3v_pE"></span><span id="_CPPv2N10lv_style_t3v_pE"></span><span id="structlv__style__t_1a5a4f5c58b1eb7bfcc5a2618b1b0a6cd1" class="target"></span>
+
: <nowiki>union lv_style_t::[anonymous] </nowiki>v_p  
 
::
 
::
:; <span id="_CPPv3N10lv_style_t5prop1E"></span><span id="_CPPv2N10lv_style_t5prop1E"></span><span id="lv_style_t::prop1__uint16_t"></span><span id="structlv__style__t_1a460a9466bd1218b0e3b5d5bcfe7bf914" class="target"></span>uint16_t prop1[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N10lv_style_t5prop1E] <span id="_CPPv3N10lv_style_t5prop1E"></span><span id="_CPPv2N10lv_style_t5prop1E"></span><span id="lv_style_t::prop1__uint16_t"></span><span id="structlv__style__t_1a460a9466bd1218b0e3b5d5bcfe7bf914" class="target"></span>
+
: uint16_t prop1  
:: [https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N10lv_style_t3v_pE]
+
::  
:; <span id="_CPPv3N10lv_style_t8is_constE"></span><span id="_CPPv2N10lv_style_t8is_constE"></span><span id="lv_style_t::is_const__uint16_t"></span><span id="structlv__style__t_1a701ccddff4dc91ec32cc136e28c1a57d" class="target"></span>uint[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N10lv_style_t5prop1E]16_t is_const[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N10lv_style_t8is_constE] <span id="_CPPv3N10lv_style_t8is_constE"></span><span id="_CPPv2N10lv_style_t8is_constE"></span><span id="lv_style_t::is_const__uint16_t"></span><span id="structlv__style__t_1a701ccddff4dc91ec32cc136e28c1a57d" class="target"></span>
+
: uint16_t is_const  
 
::
 
::
:; <span id="_CPPv3N10lv_style_t9has_groupE"></span><span id="_CPPv2N10lv_style_t9has_groupE"></span><span id="lv_style_t::has_group__uint8_t"></span><span id="structlv__style__t_1a4fc3b69ed07adcfd3c60b2f974d83118" class="target"></span>uint8_t[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N10lv_style_t8is_constE] has_group[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N10lv_style_t9has_groupE] <span id="_CPPv3N10lv_style_t9has_groupE"></span><span id="_CPPv2N10lv_style_t9has_groupE"></span><span id="lv_style_t::has_group__uint8_t"></span><span id="structlv__style__t_1a4fc3b69ed07adcfd3c60b2f974d83118" class="target"></span>
+
: uint8_t has_group  
 
::
 
::
:; <span id="_CPPv3N10lv_style_t8prop_cntE"></span><span id="_CPPv2N10lv_style_t8prop_cntE"></span><span id="lv_style_t::prop_cnt__uint8_t"></span><span id="structlv__style__t_1a9917583e63aebe6757c0ffe37ae6a835" class="target"></span>uint8_t[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N10lv_style_t9has_groupE] prop_cnt
+
: uint8_t prop_cnt
  
 
Typedefs
 
Typedefs
  
; <span id="_CPPv319lv_theme_apply_cb_t"></span><span id="_CPPv219lv_theme_apply_cb_t"></span><span id="lv_theme_apply_cb_t"></span><span id="lv__theme_8h_1aee175627f6b196b5a887be29fac663d5" class="target"></span>typedef void (*lv_theme_apply_cb_t)(struct _lv_theme_t*, lv_obj_t*)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv419lv_theme_apply_cb_t] <span id="_CPPv319lv_theme_apply_cb_t"></span><span id="_CPPv219lv_theme_apply_cb_t"></span><span id="lv_theme_apply_cb_t"></span><span id="lv__theme_8h_1aee175627f6b196b5a887be29fac663d5" class="target"></span>
+
typedef void (*lv_theme_apply_cb_t)(struct _lv_theme_t*, lv_obj_t*)  
 
:
 
:
  
; <span id="_CPPv310lv_theme_t"></span><span id="_CPPv210lv_theme_t"></span><span id="lv_theme_t"></span><span id="lv__theme_8h_1a028e2d4002c963c60ebd3cc2641da3c1" class="target"></span>typedef struct _lv_theme_t lv_theme_t[https://docs.lvgl.io/8.2/overview/style.html#_CPPv410lv_theme_t] <span id="_CPPv310lv_theme_t"></span><span id="_CPPv210lv_theme_t"></span><span id="lv_theme_t"></span><span id="lv__theme_8h_1a028e2d4002c963c60ebd3cc2641da3c1" class="target"></span>
+
typedef struct _lv_theme_t lv_theme_t  
 
:
 
:
  
 
Functions
 
Functions
  
[https://docs.lvgl.io/8.2/overview/style.html#_CPPv419lv_theme_apply_cb_t]
+
 
; <span id="_CPPv321lv_theme_get_from_objP8lv_obj_t"></span><span id="_CPPv221lv_theme_get_from_objP8lv_obj_t"></span><span id="lv_theme_get_from_obj__lv_obj_tP"></span><span id="lv__theme_8h_1a549412ae8aac0781e2bff67a2f4ead10" class="target"></span>lv_theme_t *lv_t[https://docs.lvgl.io/8.2/overview/style.html#_CPPv410lv_theme_t]heme_get_from_obj(lv_obj_t *obj)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv421lv_theme_get_from_objP8lv_obj_t] <span id="_CPPv321lv_theme_get_from_objP8lv_obj_t"></span><span id="_CPPv221lv_theme_get_from_objP8lv_obj_t"></span><span id="lv_theme_get_from_obj__lv_obj_tP"></span><span id="lv__theme_8h_1a549412ae8aac0781e2bff67a2f4ead10" class="target"></span>
+
lv_theme_t *lv_theme_get_from_obj(lv_obj_t *obj)  
: Get the theme assigned to the display of the[https://docs.lvgl.io/8.2/overview/style.html#_CPPv421lv_theme_get_from_objP8lv_obj_t] object
+
: Get the theme assigned to the display of the object
:; Parameters
+
: Parameters
 
:: obj -- pointer to a theme object
 
:: obj -- pointer to a theme object
:; Returns
+
: Returns
 
:: the theme of the object's display (can be NULL)
 
:: the theme of the object's display (can be NULL)
  
; <span id="_CPPv314lv_theme_applyP8lv_obj_t"></span><span id="_CPPv214lv_theme_applyP8lv_obj_t"></span><span id="lv_theme_apply__lv_obj_tP"></span><span id="lv__theme_8h_1a1189bd78ec6e36276136f9a8b0f1bbe6" class="target"></span>void lv_theme_apply(lv_obj_t *obj)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv414lv_theme_applyP8lv_obj_t] <span id="_CPPv314lv_theme_applyP8lv_obj_t"></span><span id="_CPPv214lv_theme_applyP8lv_obj_t"></span><span id="lv_theme_apply__lv_obj_tP"></span><span id="lv__theme_8h_1a1189bd78ec6e36276136f9a8b0f1bbe6" class="target"></span>
+
void lv_theme_apply(lv_obj_t *obj)  
: Apply the active theme on an o[https://docs.lvgl.io/8.2/overview/style.html#_CPPv414lv_theme_applyP8lv_obj_t]bject
+
: Apply the active theme on an object
:; Parameters
+
: Parameters
 
:: obj -- pointer to an object
 
:: obj -- pointer to an object
  
; <span id="_CPPv319lv_theme_set_parentP10lv_theme_tP10lv_theme_t"></span><span id="_CPPv219lv_theme_set_parentP10lv_theme_tP10lv_theme_t"></span><span id="lv_theme_set_parent__lv_theme_tP.lv_theme_tP"></span><span id="lv__theme_8h_1a454062e635ca006907cadeb784cdb991" class="target"></span>void lv_theme_set_parent(lv_theme_t *new_theme, lv_theme_t *parent)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv419lv_theme_set_parentP10lv_theme_tP10lv_theme_t] <span id="_CPPv319lv_theme_set_parentP10lv_theme_tP10lv_theme_t"></span><span id="_CPPv219lv_theme_set_parentP10lv_theme_tP10lv_theme_t"></span><span id="lv_theme_set_parent__lv_theme_tP.lv_theme_tP"></span><span id="lv__theme_8h_1a454062e635ca006907cadeb784cdb991" class="target"></span>
+
void lv_theme_set_parent(lv_theme_t *new_theme, lv_theme_t *parent)  
: Set a base theme for a theme. The styles from the base them wil[https://docs.lvgl.io/8.2/overview/style.html#_CPPv419lv_theme_set_parentP10lv_theme_tP10lv_theme_t]l be added before the styles of the current theme. Arbitrary long chain of themes can be created by setting base themes.
+
: Set a base theme for a theme. The styles from the base them will be added before the styles of the current theme. Arbitrary long chain of themes can be created by setting base themes.
:; Parameters
+
: Parameters
 
::* new_theme -- pointer to theme which base should be set
 
::* new_theme -- pointer to theme which base should be set
 
::* parent -- pointer to the base theme
 
::* parent -- pointer to the base theme
  
; <span id="_CPPv321lv_theme_set_apply_cbP10lv_theme_t19lv_theme_apply_cb_t"></span><span id="_CPPv221lv_theme_set_apply_cbP10lv_theme_t19lv_theme_apply_cb_t"></span><span id="lv_theme_set_apply_cb__lv_theme_tP.lv_theme_apply_cb_t"></span><span id="lv__theme_8h_1a519b48f3d3453b8087d09f706bd6bef1" class="target"></span>void lv_theme_set_apply_cb(lv_theme_t *theme, lv_theme_apply_cb_t apply_cb)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv421lv_theme_set_apply_cbP10lv_theme_t19lv_theme_apply_cb_t] <span id="_CPPv321lv_theme_set_apply_cbP10lv_theme_t19lv_theme_apply_cb_t"></span><span id="_CPPv221lv_theme_set_apply_cbP10lv_theme_t19lv_theme_apply_cb_t"></span><span id="lv_theme_set_apply_cb__lv_theme_tP.lv_theme_apply_cb_t"></span><span id="lv__theme_8h_1a519b48f3d3453b8087d09f706bd6bef1" class="target"></span>
+
void lv_theme_set_apply_cb(lv_theme_t *theme, lv_theme_apply_cb_t apply_cb)  
: Set an apply callback for a theme. The apply callback is used to add st[https://docs.lvgl.io/8.2/overview/style.html#_CPPv421lv_theme_set_apply_cbP10lv_theme_t19lv_theme_apply_cb_t]yles to different objects
+
: Set an apply callback for a theme. The apply callback is used to add styles to different objects
:; Parameters
+
: Parameters
 
::* theme -- pointer to theme which callback should be set
 
::* theme -- pointer to theme which callback should be set
 
::* apply_cb -- pointer to the callback
 
::* apply_cb -- pointer to the callback
  
; <span id="_CPPv323lv_theme_get_font_smallP8lv_obj_t"></span><span id="_CPPv223lv_theme_get_font_smallP8lv_obj_t"></span><span id="lv_theme_get_font_small__lv_obj_tP"></span><span id="lv__theme_8h_1a066f2e235bc86ac443c6ad281ec60c55" class="target"></span>const lv_font_t *lv_theme_get_font_small(lv_obj_t *obj)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv423lv_theme_get_font_smallP8lv_obj_t] <span id="_CPPv323lv_theme_get_font_smallP8lv_obj_t"></span><span id="_CPPv223lv_theme_get_font_smallP8lv_obj_t"></span><span id="lv_theme_get_font_small__lv_obj_tP"></span><span id="lv__theme_8h_1a066f2e235bc86ac443c6ad281ec60c55" class="target"></span>
+
const lv_font_t *lv_theme_get_font_small(lv_obj_t *obj)  
 
: Get the small font of the theme
 
: Get the small font of the theme
:; Parameters
+
: Parameters
:: ob[https://docs.lvgl.io/8.2/overview/style.html#_CPPv423lv_theme_get_font_smallP8lv_obj_t]j -- pointer to an object
+
:: obj -- pointer to an object
:; Returns
+
: Returns
 
:: pointer to the font
 
:: pointer to the font
  
; <span id="_CPPv324lv_theme_get_font_normalP8lv_obj_t"></span><span id="_CPPv224lv_theme_get_font_normalP8lv_obj_t"></span><span id="lv_theme_get_font_normal__lv_obj_tP"></span><span id="lv__theme_8h_1ae39614a72a7bac35f6457fef5443a8a5" class="target"></span>const lv_font_t *lv_theme_get_font_normal(lv_obj_t *obj)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv424lv_theme_get_font_normalP8lv_obj_t] <span id="_CPPv324lv_theme_get_font_normalP8lv_obj_t"></span><span id="_CPPv224lv_theme_get_font_normalP8lv_obj_t"></span><span id="lv_theme_get_font_normal__lv_obj_tP"></span><span id="lv__theme_8h_1ae39614a72a7bac35f6457fef5443a8a5" class="target"></span>
+
const lv_font_t *lv_theme_get_font_normal(lv_obj_t *obj)  
 
: Get the normal font of the theme
 
: Get the normal font of the theme
:; Parameters
+
: Parameters
:: ob[https://docs.lvgl.io/8.2/overview/style.html#_CPPv424lv_theme_get_font_normalP8lv_obj_t]j -- pointer to an object
+
:: obj -- pointer to an object
:; Returns
+
: Returns
 
:: pointer to the font
 
:: pointer to the font
  
; <span id="_CPPv323lv_theme_get_font_largeP8lv_obj_t"></span><span id="_CPPv223lv_theme_get_font_largeP8lv_obj_t"></span><span id="lv_theme_get_font_large__lv_obj_tP"></span><span id="lv__theme_8h_1ac8bb1152a5edc4b2b06cf4cb2485e63b" class="target"></span>const lv_font_t *lv_theme_get_font_large(lv_obj_t *obj)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv423lv_theme_get_font_largeP8lv_obj_t] <span id="_CPPv323lv_theme_get_font_largeP8lv_obj_t"></span><span id="_CPPv223lv_theme_get_font_largeP8lv_obj_t"></span><span id="lv_theme_get_font_large__lv_obj_tP"></span><span id="lv__theme_8h_1ac8bb1152a5edc4b2b06cf4cb2485e63b" class="target"></span>
+
const lv_font_t *lv_theme_get_font_large(lv_obj_t *obj)  
 
: Get the subtitle font of the theme
 
: Get the subtitle font of the theme
:; Parameters
+
: Parameters
:: [https://docs.lvgl.io/8.2/overview/style.html#_CPPv423lv_theme_get_font_largeP8lv_obj_t] obj -- pointer to an object
+
:: obj -- pointer to an object
:; Returns
+
: Returns
 
:: pointer to the font
 
:: pointer to the font
  
; <span id="_CPPv326lv_theme_get_color_primaryP8lv_obj_t"></span><span id="_CPPv226lv_theme_get_color_primaryP8lv_obj_t"></span><span id="lv_theme_get_color_primary__lv_obj_tP"></span><span id="lv__theme_8h_1a0d54a894f6bf25edbf4995a79f195638" class="target"></span>lv_color_t lv_theme_get_color_primary(lv_obj_t *obj)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv426lv_theme_get_color_primaryP8lv_obj_t] <span id="_CPPv326lv_theme_get_color_primaryP8lv_obj_t"></span><span id="_CPPv226lv_theme_get_color_primaryP8lv_obj_t"></span><span id="lv_theme_get_color_primary__lv_obj_tP"></span><span id="lv__theme_8h_1a0d54a894f6bf25edbf4995a79f195638" class="target"></span>
+
lv_color_t lv_theme_get_color_primary(lv_obj_t *obj)  
 
: Get the primary color of the theme
 
: Get the primary color of the theme
:; Parameters[https://docs.lvgl.io/8.2/overview/style.html#_CPPv426lv_theme_get_color_primaryP8lv_obj_t]
+
: Parameters
 
:: obj -- pointer to an object
 
:: obj -- pointer to an object
:; Returns
+
: Returns
 
:: the color
 
:: the color
  
; <span id="_CPPv328lv_theme_get_color_secondaryP8lv_obj_t"></span><span id="_CPPv228lv_theme_get_color_secondaryP8lv_obj_t"></span><span id="lv_theme_get_color_secondary__lv_obj_tP"></span><span id="lv__theme_8h_1ad089978aed897d2c32fb8b2489e239aa" class="target"></span>lv_color_t lv_theme_get_color_secondary(lv_obj_t *obj)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv428lv_theme_get_color_secondaryP8lv_obj_t] <span id="_CPPv328lv_theme_get_color_secondaryP8lv_obj_t"></span><span id="_CPPv228lv_theme_get_color_secondaryP8lv_obj_t"></span><span id="lv_theme_get_color_secondary__lv_obj_tP"></span><span id="lv__theme_8h_1ad089978aed897d2c32fb8b2489e239aa" class="target"></span>
+
lv_color_t lv_theme_get_color_secondary(lv_obj_t *obj)  
 
: Get the secondary color of the theme
 
: Get the secondary color of the theme
:; Parameters[https://docs.lvgl.io/8.2/overview/style.html#_CPPv428lv_theme_get_color_secondaryP8lv_obj_t]
+
: Parameters
 
:: obj -- pointer to an object
 
:: obj -- pointer to an object
:; Returns
+
: Returns
 
:: the color
 
:: the color
  
; <span id="_CPPv311_lv_theme_t"></span><span id="_CPPv211_lv_theme_t"></span><span id="_lv_theme_t"></span><span id="struct__lv__theme__t" class="target"></span>struct _lv_theme_t[https://docs.lvgl.io/8.2/overview/style.html#_CPPv411_lv_theme_t] <span id="_CPPv311_lv_theme_t"></span><span id="_CPPv211_lv_theme_t"></span><span id="_lv_theme_t"></span><span id="struct__lv__theme__t" class="target"></span>
+
struct _lv_theme_t  
: Public Members[https://docs.lvgl.io/8.2/overview/style.html#_CPPv411_lv_theme_t]
+
: Public Members
:; <span id="_CPPv3N11_lv_theme_t8apply_cbE"></span><span id="_CPPv2N11_lv_theme_t8apply_cbE"></span><span id="_lv_theme_t::apply_cb__lv_theme_apply_cb_t"></span><span id="struct__lv__theme__t_1afdcd5f4cc8b69d66774fa59354e456c3" class="target"></span>lv_theme_apply_cb_t apply_cb[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N11_lv_theme_t8apply_cbE] <span id="_CPPv3N11_lv_theme_t8apply_cbE"></span><span id="_CPPv2N11_lv_theme_t8apply_cbE"></span><span id="_lv_theme_t::apply_cb__lv_theme_apply_cb_t"></span><span id="struct__lv__theme__t_1afdcd5f4cc8b69d66774fa59354e456c3" class="target"></span>
+
: lv_theme_apply_cb_t apply_cb  
 
::
 
::
:; <span id="_CPPv3N11_lv_theme_t6parentE"></span><span id="_CPPv2N11_lv_theme_t6parentE"></span><span id="_lv_theme_t::parent___lv_theme_tP"></span><span id="struct__lv__theme__t_1abd82cf0edfed752683cd843b8254cd25" class="target"></span>struct _lv_theme_t[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N11_lv_theme_t8apply_cbE] *parent[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N11_lv_theme_t6parentE] <span id="_CPPv3N11_lv_theme_t6parentE"></span><span id="_CPPv2N11_lv_theme_t6parentE"></span><span id="_lv_theme_t::parent___lv_theme_tP"></span><span id="struct__lv__theme__t_1abd82cf0edfed752683cd843b8254cd25" class="target"></span>
+
: struct _lv_theme_t *parent  
:: Apply the current them[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N11_lv_theme_t6parentE]e's style on top of this theme.
+
:: Apply the current theme's style on top of this theme.
:; <span id="_CPPv3N11_lv_theme_t9user_dataE"></span><span id="_CPPv2N11_lv_theme_t9user_dataE"></span><span id="_lv_theme_t::user_data__voidP"></span><span id="struct__lv__theme__t_1ad8228ef9435918bda4cd726ad56283e7" class="target"></span>void *user_data[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N11_lv_theme_t9user_dataE] <span id="_CPPv3N11_lv_theme_t9user_dataE"></span><span id="_CPPv2N11_lv_theme_t9user_dataE"></span><span id="_lv_theme_t::user_data__voidP"></span><span id="struct__lv__theme__t_1ad8228ef9435918bda4cd726ad56283e7" class="target"></span>
+
: void *user_data  
 
::
 
::
:; <span id="_CPPv3N11_lv_theme_t4dispE"></span><span id="_CPPv2N11_lv_theme_t4dispE"></span><span id="_lv_theme_t::disp___lv_disp_tP"></span><span id="struct__lv__theme__t_1adb00588d976275c443b12ba979af2dc3" class="target"></span>struc[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N11_lv_theme_t9user_dataE]t _lv_disp_t *disp[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N11_lv_theme_t4dispE] <span id="_CPPv3N11_lv_theme_t4dispE"></span><span id="_CPPv2N11_lv_theme_t4dispE"></span><span id="_lv_theme_t::disp___lv_disp_tP"></span><span id="struct__lv__theme__t_1adb00588d976275c443b12ba979af2dc3" class="target"></span>
+
: struct _lv_disp_t *disp  
 
::
 
::
:; <span id="_CPPv3N11_lv_theme_t13color_primaryE"></span><span id="_CPPv2N11_lv_theme_t13color_primaryE"></span><span id="_lv_theme_t::color_primary__lv_color_t"></span><span id="struct__lv__theme__t_1a9c89cb48faebdb6f948b9ef2c26cf43b" class="target"></span>lv_color_t co[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N11_lv_theme_t4dispE]lor_primary[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N11_lv_theme_t13color_primaryE] <span id="_CPPv3N11_lv_theme_t13color_primaryE"></span><span id="_CPPv2N11_lv_theme_t13color_primaryE"></span><span id="_lv_theme_t::color_primary__lv_color_t"></span><span id="struct__lv__theme__t_1a9c89cb48faebdb6f948b9ef2c26cf43b" class="target"></span>
+
: lv_color_t color_primary
 
::
 
::
:; <span id="_CPPv3N11_lv_theme_t15color_secondaryE"></span><span id="_CPPv2N11_lv_theme_t15color_secondaryE"></span><span id="_lv_theme_t::color_secondary__lv_color_t"></span><span id="struct__lv__theme__t_1aacb9014f400e490c87dd17ba9c36551d" class="target"></span>lv_color_t col[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N11_lv_theme_t13color_primaryE]or_secondary[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N11_lv_theme_t15color_secondaryE] <span id="_CPPv3N11_lv_theme_t15color_secondaryE"></span><span id="_CPPv2N11_lv_theme_t15color_secondaryE"></span><span id="_lv_theme_t::color_secondary__lv_color_t"></span><span id="struct__lv__theme__t_1aacb9014f400e490c87dd17ba9c36551d" class="target"></span>
+
: lv_color_t color_secondary
 
::
 
::
:; <span id="_CPPv3N11_lv_theme_t10font_smallE"></span><span id="_CPPv2N11_lv_theme_t10font_smallE"></span><span id="_lv_theme_t::font_small__lv_font_tCP"></span><span id="struct__lv__theme__t_1a1cf7c76c97ce0ba177dd318f08166066" class="target"></span>const lv_font_t [https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N11_lv_theme_t15color_secondaryE]*font_small[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N11_lv_theme_t10font_smallE] <span id="_CPPv3N11_lv_theme_t10font_smallE"></span><span id="_CPPv2N11_lv_theme_t10font_smallE"></span><span id="_lv_theme_t::font_small__lv_font_tCP"></span><span id="struct__lv__theme__t_1a1cf7c76c97ce0ba177dd318f08166066" class="target"></span>
+
: const lv_font_t *font_small  
 
::
 
::
:; <span id="_CPPv3N11_lv_theme_t11font_normalE"></span><span id="_CPPv2N11_lv_theme_t11font_normalE"></span><span id="_lv_theme_t::font_normal__lv_font_tCP"></span><span id="struct__lv__theme__t_1a652f050438f5525e36392a85a64c0204" class="target"></span>const lv_font_t *[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N11_lv_theme_t10font_smallE]font_normal[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N11_lv_theme_t11font_normalE] <span id="_CPPv3N11_lv_theme_t11font_normalE"></span><span id="_CPPv2N11_lv_theme_t11font_normalE"></span><span id="_lv_theme_t::font_normal__lv_font_tCP"></span><span id="struct__lv__theme__t_1a652f050438f5525e36392a85a64c0204" class="target"></span>
+
: const lv_font_t *font_normal  
 
::
 
::
:; <span id="_CPPv3N11_lv_theme_t10font_largeE"></span><span id="_CPPv2N11_lv_theme_t10font_largeE"></span><span id="_lv_theme_t::font_large__lv_font_tCP"></span><span id="struct__lv__theme__t_1ace34cf6ea1a92036f1a0b5f962f304cf" class="target"></span>const lv_font_t *f[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N11_lv_theme_t11font_normalE]ont_large[https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N11_lv_theme_t10font_largeE] <span id="_CPPv3N11_lv_theme_t10font_largeE"></span><span id="_CPPv2N11_lv_theme_t10font_largeE"></span><span id="_lv_theme_t::font_large__lv_font_tCP"></span><span id="struct__lv__theme__t_1ace34cf6ea1a92036f1a0b5f962f304cf" class="target"></span>
+
: const lv_font_t *font_large
 
::
 
::
:; <span id="_CPPv3N11_lv_theme_t5flagsE"></span><span id="_CPPv2N11_lv_theme_t5flagsE"></span><span id="_lv_theme_t::flags__uint32_t"></span><span id="struct__lv__theme__t_1a04d271501d5d6dac9968a6c5092427ad" class="target"></span>uint32_t flags [https://docs.lvgl.io/8.2/overview/style.html#_CPPv4N11_lv_theme_t10font_largeE]
+
: uint32_t flags  
 
Functions
 
Functions
  
; <span id="_CPPv322lv_obj_get_style_widthPK9_lv_obj_t8uint32_t"></span><span id="_CPPv222lv_obj_get_style_widthPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_width___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a65b9aa11e3320fce64916f13d4107e8c" class="target"></span>static inline lv_coord_t lv_obj_get_style_width(const struct _lv_obj_t *obj, uint32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv422lv_obj_get_style_widthPK9_lv_obj_t8uint32_t] <span id="_CPPv322lv_obj_get_style_widthPK9_lv_obj_t8uint32_t"></span><span id="_CPPv222lv_obj_get_style_widthPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_width___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a65b9aa11e3320fce64916f13d4107e8c" class="target"></span>
+
static inline lv_coord_t lv_obj_get_style_width(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv326lv_obj_get_style_min_widthPK9_lv_obj_t8uint32_t"></span><span id="_CPPv226lv_obj_get_style_min_widthPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_min_width___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1aa3f9e367b5d87b19928a75c1f2ec47ac" class="target"></span>static inline lv_coord_t lv_obj_get_style_min_width(const struct _lv_obj_t *obj, [https://docs.lvgl.io/8.2/overview/style.html#_CPPv422lv_obj_get_style_widthPK9_lv_obj_t8uint32_t]uint32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv426lv_obj_get_style_min_widthPK9_lv_obj_t8uint32_t] <span id="_CPPv326lv_obj_get_style_min_widthPK9_lv_obj_t8uint32_t"></span><span id="_CPPv226lv_obj_get_style_min_widthPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_min_width___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1aa3f9e367b5d87b19928a75c1f2ec47ac" class="target"></span>
+
static inline lv_coord_t lv_obj_get_style_min_width(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv326lv_obj_get_style_max_widthPK9_lv_obj_t8uint32_t"></span><span id="_CPPv226lv_obj_get_style_max_widthPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_max_width___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1af0223bfcd44152538b026139f694dbed" class="target"></span>static inline lv_coord_t lv_obj_get_style_max_width(const struct _lv_obj_t *obj, uint[https://docs.lvgl.io/8.2/overview/style.html#_CPPv426lv_obj_get_style_min_widthPK9_lv_obj_t8uint32_t]32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv426lv_obj_get_style_max_widthPK9_lv_obj_t8uint32_t] <span id="_CPPv326lv_obj_get_style_max_widthPK9_lv_obj_t8uint32_t"></span><span id="_CPPv226lv_obj_get_style_max_widthPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_max_width___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1af0223bfcd44152538b026139f694dbed" class="target"></span>
+
static inline lv_coord_t lv_obj_get_style_max_width(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv323lv_obj_get_style_heightPK9_lv_obj_t8uint32_t"></span><span id="_CPPv223lv_obj_get_style_heightPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_height___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1adb784713d38a0844972f27daad30f5ea" class="target"></span>static inline lv_coord_t lv_obj_get_style_height(const struct _lv_obj_t *obj, uint32_[https://docs.lvgl.io/8.2/overview/style.html#_CPPv426lv_obj_get_style_max_widthPK9_lv_obj_t8uint32_t]t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv423lv_obj_get_style_heightPK9_lv_obj_t8uint32_t] <span id="_CPPv323lv_obj_get_style_heightPK9_lv_obj_t8uint32_t"></span><span id="_CPPv223lv_obj_get_style_heightPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_height___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1adb784713d38a0844972f27daad30f5ea" class="target"></span>
+
static inline lv_coord_t lv_obj_get_style_height(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv327lv_obj_get_style_min_heightPK9_lv_obj_t8uint32_t"></span><span id="_CPPv227lv_obj_get_style_min_heightPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_min_height___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1ae3f09350b59f382f792202125a097053" class="target"></span>static inline lv_coord_t lv_obj_get_style_min_height(const struct _lv_obj_t *obj, [https://docs.lvgl.io/8.2/overview/style.html#_CPPv423lv_obj_get_style_heightPK9_lv_obj_t8uint32_t]uint32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_get_style_min_heightPK9_lv_obj_t8uint32_t] <span id="_CPPv327lv_obj_get_style_min_heightPK9_lv_obj_t8uint32_t"></span><span id="_CPPv227lv_obj_get_style_min_heightPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_min_height___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1ae3f09350b59f382f792202125a097053" class="target"></span>
+
static inline lv_coord_t lv_obj_get_style_min_height(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv327lv_obj_get_style_max_heightPK9_lv_obj_t8uint32_t"></span><span id="_CPPv227lv_obj_get_style_max_heightPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_max_height___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a515dfb3b15a402dd0661b8480bb3ded1" class="target"></span>static inline lv_coord_t lv_obj_get_style_max_height(const struct _lv_obj_t *obj, uint[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_get_style_min_heightPK9_lv_obj_t8uint32_t]32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_get_style_max_heightPK9_lv_obj_t8uint32_t] <span id="_CPPv327lv_obj_get_style_max_heightPK9_lv_obj_t8uint32_t"></span><span id="_CPPv227lv_obj_get_style_max_heightPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_max_height___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a515dfb3b15a402dd0661b8480bb3ded1" class="target"></span>
+
static inline lv_coord_t lv_obj_get_style_max_height(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv318lv_obj_get_style_xPK9_lv_obj_t8uint32_t"></span><span id="_CPPv218lv_obj_get_style_xPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_x___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1ad852468806b201f2072a04c74afa7883" class="target"></span>static inline lv_coord_t lv_obj_get_style_x(const struct _lv_obj_t *obj, uint32_t part[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_get_style_max_heightPK9_lv_obj_t8uint32_t])[https://docs.lvgl.io/8.2/overview/style.html#_CPPv418lv_obj_get_style_xPK9_lv_obj_t8uint32_t] <span id="_CPPv318lv_obj_get_style_xPK9_lv_obj_t8uint32_t"></span><span id="_CPPv218lv_obj_get_style_xPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_x___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1ad852468806b201f2072a04c74afa7883" class="target"></span>
+
static inline lv_coord_t lv_obj_get_style_x(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv318lv_obj_get_style_yPK9_lv_obj_t8uint32_t"></span><span id="_CPPv218lv_obj_get_style_yPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_y___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a0f48f981f6d9cfbf9bcebcec5f50d2f8" class="target"></span>static inline lv_coord_t lv_obj_get_style_y(const struct _lv_obj_t *obj, uint[https://docs.lvgl.io/8.2/overview/style.html#_CPPv418lv_obj_get_style_xPK9_lv_obj_t8uint32_t]32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv418lv_obj_get_style_yPK9_lv_obj_t8uint32_t] <span id="_CPPv318lv_obj_get_style_yPK9_lv_obj_t8uint32_t"></span><span id="_CPPv218lv_obj_get_style_yPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_y___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a0f48f981f6d9cfbf9bcebcec5f50d2f8" class="target"></span>
+
static inline lv_coord_t lv_obj_get_style_y(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv322lv_obj_get_style_alignPK9_lv_obj_t8uint32_t"></span><span id="_CPPv222lv_obj_get_style_alignPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_align___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a46944d02453ba0ba2ca555ac0a1f3b85" class="target"></span>static inline lv_align_t lv_obj_get_style_align(const struct _lv_obj_t *obj, [https://docs.lvgl.io/8.2/overview/style.html#_CPPv418lv_obj_get_style_yPK9_lv_obj_t8uint32_t]uint32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv422lv_obj_get_style_alignPK9_lv_obj_t8uint32_t] <span id="_CPPv322lv_obj_get_style_alignPK9_lv_obj_t8uint32_t"></span><span id="_CPPv222lv_obj_get_style_alignPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_align___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a46944d02453ba0ba2ca555ac0a1f3b85" class="target"></span>
+
static inline lv_align_t lv_obj_get_style_align(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv332lv_obj_get_style_transform_widthPK9_lv_obj_t8uint32_t"></span><span id="_CPPv232lv_obj_get_style_transform_widthPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_transform_width___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1ac2a87da068f6e0a151e2bb50b35eeb72" class="target"></span>static inline lv_coord_t lv_obj_get_style_transform_width(const struct _lv_obj_t [https://docs.lvgl.io/8.2/overview/style.html#_CPPv422lv_obj_get_style_alignPK9_lv_obj_t8uint32_t]*obj, uint32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv432lv_obj_get_style_transform_widthPK9_lv_obj_t8uint32_t] <span id="_CPPv332lv_obj_get_style_transform_widthPK9_lv_obj_t8uint32_t"></span><span id="_CPPv232lv_obj_get_style_transform_widthPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_transform_width___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1ac2a87da068f6e0a151e2bb50b35eeb72" class="target"></span>
+
static inline lv_coord_t lv_obj_get_style_transform_width(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv333lv_obj_get_style_transform_heightPK9_lv_obj_t8uint32_t"></span><span id="_CPPv233lv_obj_get_style_transform_heightPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_transform_height___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a6d4dbfd2efc360cc1f21311af9d6457a" class="target"></span>static inline lv_coord_t lv_obj_get_style_transform_height(const struct _lv_obj_t *obj, uin[https://docs.lvgl.io/8.2/overview/style.html#_CPPv432lv_obj_get_style_transform_widthPK9_lv_obj_t8uint32_t]t32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv433lv_obj_get_style_transform_heightPK9_lv_obj_t8uint32_t] <span id="_CPPv333lv_obj_get_style_transform_heightPK9_lv_obj_t8uint32_t"></span><span id="_CPPv233lv_obj_get_style_transform_heightPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_transform_height___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a6d4dbfd2efc360cc1f21311af9d6457a" class="target"></span>
+
static inline lv_coord_t lv_obj_get_style_transform_height(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv328lv_obj_get_style_translate_xPK9_lv_obj_t8uint32_t"></span><span id="_CPPv228lv_obj_get_style_translate_xPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_translate_x___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a7d8184d425efe92283ee0b9732354b82" class="target"></span>static inline lv_coord_t lv_obj_get_style_translate_x(const struct _lv_obj_t *obj, uint32_t [https://docs.lvgl.io/8.2/overview/style.html#_CPPv433lv_obj_get_style_transform_heightPK9_lv_obj_t8uint32_t]part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv428lv_obj_get_style_translate_xPK9_lv_obj_t8uint32_t] <span id="_CPPv328lv_obj_get_style_translate_xPK9_lv_obj_t8uint32_t"></span><span id="_CPPv228lv_obj_get_style_translate_xPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_translate_x___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a7d8184d425efe92283ee0b9732354b82" class="target"></span>
+
static inline lv_coord_t lv_obj_get_style_translate_x(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv328lv_obj_get_style_translate_yPK9_lv_obj_t8uint32_t"></span><span id="_CPPv228lv_obj_get_style_translate_yPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_translate_y___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a9ced0731adcf7a265a2e5a1f1ec6f5d8" class="target"></span>static inline lv_coord_t lv_obj_get_style_translate_y(const struct _lv_obj_t *obj, uint[https://docs.lvgl.io/8.2/overview/style.html#_CPPv428lv_obj_get_style_translate_xPK9_lv_obj_t8uint32_t]32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv428lv_obj_get_style_translate_yPK9_lv_obj_t8uint32_t] <span id="_CPPv328lv_obj_get_style_translate_yPK9_lv_obj_t8uint32_t"></span><span id="_CPPv228lv_obj_get_style_translate_yPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_translate_y___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a9ced0731adcf7a265a2e5a1f1ec6f5d8" class="target"></span>
+
static inline lv_coord_t lv_obj_get_style_translate_y(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv331lv_obj_get_style_transform_zoomPK9_lv_obj_t8uint32_t"></span><span id="_CPPv231lv_obj_get_style_transform_zoomPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_transform_zoom___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1aac997c0cf8072b031c08f79eb519b06d" class="target"></span>static inline lv_coord_t lv_obj_get_style_transform_zoom(const struct _lv_obj_t *obj, u[https://docs.lvgl.io/8.2/overview/style.html#_CPPv428lv_obj_get_style_translate_yPK9_lv_obj_t8uint32_t]int32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv431lv_obj_get_style_transform_zoomPK9_lv_obj_t8uint32_t] <span id="_CPPv331lv_obj_get_style_transform_zoomPK9_lv_obj_t8uint32_t"></span><span id="_CPPv231lv_obj_get_style_transform_zoomPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_transform_zoom___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1aac997c0cf8072b031c08f79eb519b06d" class="target"></span>
+
static inline lv_coord_t lv_obj_get_style_transform_zoom(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv332lv_obj_get_style_transform_anglePK9_lv_obj_t8uint32_t"></span><span id="_CPPv232lv_obj_get_style_transform_anglePK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_transform_angle___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a8b71ced2c37330f59fb1377ffce397f7" class="target"></span>static inline lv_coord_t lv_obj_get_style_transform_angle(const struct _lv_obj_t *obj, uin[https://docs.lvgl.io/8.2/overview/style.html#_CPPv431lv_obj_get_style_transform_zoomPK9_lv_obj_t8uint32_t]t32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv432lv_obj_get_style_transform_anglePK9_lv_obj_t8uint32_t] <span id="_CPPv332lv_obj_get_style_transform_anglePK9_lv_obj_t8uint32_t"></span><span id="_CPPv232lv_obj_get_style_transform_anglePK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_transform_angle___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a8b71ced2c37330f59fb1377ffce397f7" class="target"></span>
+
static inline lv_coord_t lv_obj_get_style_transform_angle(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv324lv_obj_get_style_pad_topPK9_lv_obj_t8uint32_t"></span><span id="_CPPv224lv_obj_get_style_pad_topPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_pad_top___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a59f86013ef651b3d3c9e979e1258a010" class="target"></span>static inline lv_coord_t lv_obj_get_style_pad_top(const struct _lv_obj_t *obj, uint32_t par[https://docs.lvgl.io/8.2/overview/style.html#_CPPv432lv_obj_get_style_transform_anglePK9_lv_obj_t8uint32_t]t)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv424lv_obj_get_style_pad_topPK9_lv_obj_t8uint32_t] <span id="_CPPv324lv_obj_get_style_pad_topPK9_lv_obj_t8uint32_t"></span><span id="_CPPv224lv_obj_get_style_pad_topPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_pad_top___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a59f86013ef651b3d3c9e979e1258a010" class="target"></span>
+
static inline lv_coord_t lv_obj_get_style_pad_top(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv327lv_obj_get_style_pad_bottomPK9_lv_obj_t8uint32_t"></span><span id="_CPPv227lv_obj_get_style_pad_bottomPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_pad_bottom___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a5ab9f3b451d8a80729b5ec7f11558e96" class="target"></span>static inline lv_coord_t lv_obj_get_style_pad_bottom(const struct _lv_obj_t *obj, u[https://docs.lvgl.io/8.2/overview/style.html#_CPPv424lv_obj_get_style_pad_topPK9_lv_obj_t8uint32_t]int32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_get_style_pad_bottomPK9_lv_obj_t8uint32_t] <span id="_CPPv327lv_obj_get_style_pad_bottomPK9_lv_obj_t8uint32_t"></span><span id="_CPPv227lv_obj_get_style_pad_bottomPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_pad_bottom___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a5ab9f3b451d8a80729b5ec7f11558e96" class="target"></span>
+
static inline lv_coord_t lv_obj_get_style_pad_bottom(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv325lv_obj_get_style_pad_leftPK9_lv_obj_t8uint32_t"></span><span id="_CPPv225lv_obj_get_style_pad_leftPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_pad_left___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1af1793dbe11abc26fa1e72a44282f21e6" class="target"></span>static inline lv_coord_t lv_obj_get_style_pad_left(const struct _lv_obj_t *obj, uint32[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_get_style_pad_bottomPK9_lv_obj_t8uint32_t]_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv425lv_obj_get_style_pad_leftPK9_lv_obj_t8uint32_t] <span id="_CPPv325lv_obj_get_style_pad_leftPK9_lv_obj_t8uint32_t"></span><span id="_CPPv225lv_obj_get_style_pad_leftPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_pad_left___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1af1793dbe11abc26fa1e72a44282f21e6" class="target"></span>
+
static inline lv_coord_t lv_obj_get_style_pad_left(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv326lv_obj_get_style_pad_rightPK9_lv_obj_t8uint32_t"></span><span id="_CPPv226lv_obj_get_style_pad_rightPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_pad_right___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a01211c076546ee039791ad006c46ef03" class="target"></span>static inline lv_coord_t lv_obj_get_style_pad_right(const struct _lv_obj_t *obj, uin[https://docs.lvgl.io/8.2/overview/style.html#_CPPv425lv_obj_get_style_pad_leftPK9_lv_obj_t8uint32_t]t32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv426lv_obj_get_style_pad_rightPK9_lv_obj_t8uint32_t] <span id="_CPPv326lv_obj_get_style_pad_rightPK9_lv_obj_t8uint32_t"></span><span id="_CPPv226lv_obj_get_style_pad_rightPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_pad_right___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a01211c076546ee039791ad006c46ef03" class="target"></span>
+
static inline lv_coord_t lv_obj_get_style_pad_right(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv324lv_obj_get_style_pad_rowPK9_lv_obj_t8uint32_t"></span><span id="_CPPv224lv_obj_get_style_pad_rowPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_pad_row___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a75828667c020a1963fafbff216b1a475" class="target"></span>static inline lv_coord_t lv_obj_get_style_pad_row(const struct _lv_obj_t *obj, uint32[https://docs.lvgl.io/8.2/overview/style.html#_CPPv426lv_obj_get_style_pad_rightPK9_lv_obj_t8uint32_t]_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv424lv_obj_get_style_pad_rowPK9_lv_obj_t8uint32_t] <span id="_CPPv324lv_obj_get_style_pad_rowPK9_lv_obj_t8uint32_t"></span><span id="_CPPv224lv_obj_get_style_pad_rowPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_pad_row___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a75828667c020a1963fafbff216b1a475" class="target"></span>
+
static inline lv_coord_t lv_obj_get_style_pad_row(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv327lv_obj_get_style_pad_columnPK9_lv_obj_t8uint32_t"></span><span id="_CPPv227lv_obj_get_style_pad_columnPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_pad_column___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a36b84e0345853348bcd6059bf605e468" class="target"></span>static inline lv_coord_t lv_obj_get_style_pad_column(const struct _lv_obj_t *obj, u[https://docs.lvgl.io/8.2/overview/style.html#_CPPv424lv_obj_get_style_pad_rowPK9_lv_obj_t8uint32_t]int32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_get_style_pad_columnPK9_lv_obj_t8uint32_t] <span id="_CPPv327lv_obj_get_style_pad_columnPK9_lv_obj_t8uint32_t"></span><span id="_CPPv227lv_obj_get_style_pad_columnPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_pad_column___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a36b84e0345853348bcd6059bf605e468" class="target"></span>
+
static inline lv_coord_t lv_obj_get_style_pad_column(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv325lv_obj_get_style_bg_colorPK9_lv_obj_t8uint32_t"></span><span id="_CPPv225lv_obj_get_style_bg_colorPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_bg_color___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1af32ca58be02acc80f0bea8b2e894083f" class="target"></span>static inline lv_color_t lv_obj_get_style_bg_color(const struct _lv_obj_t *obj, uint32[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_get_style_pad_columnPK9_lv_obj_t8uint32_t]_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv425lv_obj_get_style_bg_colorPK9_lv_obj_t8uint32_t] <span id="_CPPv325lv_obj_get_style_bg_colorPK9_lv_obj_t8uint32_t"></span><span id="_CPPv225lv_obj_get_style_bg_colorPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_bg_color___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1af32ca58be02acc80f0bea8b2e894083f" class="target"></span>
+
static inline lv_color_t lv_obj_get_style_bg_color(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv334lv_obj_get_style_bg_color_filteredPK9_lv_obj_t8uint32_t"></span><span id="_CPPv234lv_obj_get_style_bg_color_filteredPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_bg_color_filtered___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1ad41263df42a3518e5d9c0c22f590b1d8" class="target"></span>static inline lv_color_t lv_obj_get_style_bg_color_filtered(const struct _lv_obj_t *[https://docs.lvgl.io/8.2/overview/style.html#_CPPv425lv_obj_get_style_bg_colorPK9_lv_obj_t8uint32_t]obj, uint32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv434lv_obj_get_style_bg_color_filteredPK9_lv_obj_t8uint32_t] <span id="_CPPv334lv_obj_get_style_bg_color_filteredPK9_lv_obj_t8uint32_t"></span><span id="_CPPv234lv_obj_get_style_bg_color_filteredPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_bg_color_filtered___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1ad41263df42a3518e5d9c0c22f590b1d8" class="target"></span>
+
static inline lv_color_t lv_obj_get_style_bg_color_filtered(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv323lv_obj_get_style_bg_opaPK9_lv_obj_t8uint32_t"></span><span id="_CPPv223lv_obj_get_style_bg_opaPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_bg_opa___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a5cf0270c1a6f4ecad0413c784f963630" class="target"></span>static inline lv_opa_t lv_obj_get_style_bg_opa(const struct _lv_obj_t *obj, uint32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv423lv_obj_get_style_bg_opaPK9_lv_obj_t8uint32_t] <span id="_CPPv323lv_obj_get_style_bg_opaPK9_lv_obj_t8uint32_t"></span><span id="_CPPv223lv_obj_get_style_bg_opaPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_bg_opa___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a5cf0270c1a6f4ecad0413c784f963630" class="target"></span> [https://docs.lvgl.io/8.2/overview/style.html#_CPPv434lv_obj_get_style_bg_color_filteredPK9_lv_obj_t8uint32_t]
+
static inline lv_opa_t lv_obj_get_style_bg_opa(const struct _lv_obj_t *obj, uint32_t part)
 
:
 
:
  
; <span id="_CPPv330lv_obj_get_style_bg_grad_colorPK9_lv_obj_t8uint32_t"></span><span id="_CPPv230lv_obj_get_style_bg_grad_colorPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_bg_grad_color___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a6537889ff48c4c236b1fcf86d223b909" class="target"></span>static inline lv_color_t lv_obj_get_style_bg_grad_color(const struct _lv_obj_t *[https://docs.lvgl.io/8.2/overview/style.html#_CPPv423lv_obj_get_style_bg_opaPK9_lv_obj_t8uint32_t]obj, uint32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv430lv_obj_get_style_bg_grad_colorPK9_lv_obj_t8uint32_t] <span id="_CPPv330lv_obj_get_style_bg_grad_colorPK9_lv_obj_t8uint32_t"></span><span id="_CPPv230lv_obj_get_style_bg_grad_colorPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_bg_grad_color___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a6537889ff48c4c236b1fcf86d223b909" class="target"></span>
+
static inline lv_color_t lv_obj_get_style_bg_grad_color(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv339lv_obj_get_style_bg_grad_color_filteredPK9_lv_obj_t8uint32_t"></span><span id="_CPPv239lv_obj_get_style_bg_grad_color_filteredPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_bg_grad_color_filtered___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a4bc2a937ca57af337efbe7a8bf1fb7a2" class="target"></span>static inline lv_color_t lv_obj_get_style_bg_grad_color_filtered(const struct _lv_obj_t *[https://docs.lvgl.io/8.2/overview/style.html#_CPPv430lv_obj_get_style_bg_grad_colorPK9_lv_obj_t8uint32_t]obj, uint32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv439lv_obj_get_style_bg_grad_color_filteredPK9_lv_obj_t8uint32_t] <span id="_CPPv339lv_obj_get_style_bg_grad_color_filteredPK9_lv_obj_t8uint32_t"></span><span id="_CPPv239lv_obj_get_style_bg_grad_color_filteredPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_bg_grad_color_filtered___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a4bc2a937ca57af337efbe7a8bf1fb7a2" class="target"></span>
+
static inline lv_color_t lv_obj_get_style_bg_grad_color_filtered(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv328lv_obj_get_style_bg_grad_dirPK9_lv_obj_t8uint32_t"></span><span id="_CPPv228lv_obj_get_style_bg_grad_dirPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_bg_grad_dir___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1ae9e9982d1068c60337fd50add8c740c9" class="target"></span>static inline lv_grad_dir_t lv_obj_get_style_bg_grad_dir(const struct _lv_obj_t *obj, uint32_t par[https://docs.lvgl.io/8.2/overview/style.html#_CPPv439lv_obj_get_style_bg_grad_color_filteredPK9_lv_obj_t8uint32_t]t)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv428lv_obj_get_style_bg_grad_dirPK9_lv_obj_t8uint32_t] <span id="_CPPv328lv_obj_get_style_bg_grad_dirPK9_lv_obj_t8uint32_t"></span><span id="_CPPv228lv_obj_get_style_bg_grad_dirPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_bg_grad_dir___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1ae9e9982d1068c60337fd50add8c740c9" class="target"></span>
+
static inline lv_grad_dir_t lv_obj_get_style_bg_grad_dir(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv329lv_obj_get_style_bg_main_stopPK9_lv_obj_t8uint32_t"></span><span id="_CPPv229lv_obj_get_style_bg_main_stopPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_bg_main_stop___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a0787fbaf3fcc2e0bedf59e23b9a1e206" class="target"></span>static inline lv_coord_t lv_obj_get_style_bg_main_stop(const struct _lv_obj_t *obj, uint32[https://docs.lvgl.io/8.2/overview/style.html#_CPPv428lv_obj_get_style_bg_grad_dirPK9_lv_obj_t8uint32_t]_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv429lv_obj_get_style_bg_main_stopPK9_lv_obj_t8uint32_t] <span id="_CPPv329lv_obj_get_style_bg_main_stopPK9_lv_obj_t8uint32_t"></span><span id="_CPPv229lv_obj_get_style_bg_main_stopPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_bg_main_stop___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a0787fbaf3fcc2e0bedf59e23b9a1e206" class="target"></span>
+
static inline lv_coord_t lv_obj_get_style_bg_main_stop(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv329lv_obj_get_style_bg_grad_stopPK9_lv_obj_t8uint32_t"></span><span id="_CPPv229lv_obj_get_style_bg_grad_stopPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_bg_grad_stop___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a288dff7e5e9544604789c5b048806b31" class="target"></span>static inline lv_coord_t lv_obj_get_style_bg_grad_stop(const struct _lv_obj_t *obj, uint[https://docs.lvgl.io/8.2/overview/style.html#_CPPv429lv_obj_get_style_bg_main_stopPK9_lv_obj_t8uint32_t]32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv429lv_obj_get_style_bg_grad_stopPK9_lv_obj_t8uint32_t] <span id="_CPPv329lv_obj_get_style_bg_grad_stopPK9_lv_obj_t8uint32_t"></span><span id="_CPPv229lv_obj_get_style_bg_grad_stopPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_bg_grad_stop___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a288dff7e5e9544604789c5b048806b31" class="target"></span>
+
static inline lv_coord_t lv_obj_get_style_bg_grad_stop(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv324lv_obj_get_style_bg_gradPK9_lv_obj_t8uint32_t"></span><span id="_CPPv224lv_obj_get_style_bg_gradPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_bg_grad___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1aad3c4e654ab98041d8047f0b946d0524" class="target"></span>static inline const lv_grad_dsc_t *lv_obj_get_style_bg_grad(const struct _lv_obj_t *obj,[https://docs.lvgl.io/8.2/overview/style.html#_CPPv429lv_obj_get_style_bg_grad_stopPK9_lv_obj_t8uint32_t] uint32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv424lv_obj_get_style_bg_gradPK9_lv_obj_t8uint32_t] <span id="_CPPv324lv_obj_get_style_bg_gradPK9_lv_obj_t8uint32_t"></span><span id="_CPPv224lv_obj_get_style_bg_gradPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_bg_grad___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1aad3c4e654ab98041d8047f0b946d0524" class="target"></span>
+
static inline const lv_grad_dsc_t *lv_obj_get_style_bg_grad(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv331lv_obj_get_style_bg_dither_modePK9_lv_obj_t8uint32_t"></span><span id="_CPPv231lv_obj_get_style_bg_dither_modePK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_bg_dither_mode___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a3749ae61049786aea842c5ea0b92493f" class="target"></span>static inline lv_dither_mode_t lv_obj_get_style_bg_dither_mode(const struct _lv_obj_t *obj, u[https://docs.lvgl.io/8.2/overview/style.html#_CPPv424lv_obj_get_style_bg_gradPK9_lv_obj_t8uint32_t]int32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv431lv_obj_get_style_bg_dither_modePK9_lv_obj_t8uint32_t] <span id="_CPPv331lv_obj_get_style_bg_dither_modePK9_lv_obj_t8uint32_t"></span><span id="_CPPv231lv_obj_get_style_bg_dither_modePK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_bg_dither_mode___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a3749ae61049786aea842c5ea0b92493f" class="target"></span>
+
static inline lv_dither_mode_t lv_obj_get_style_bg_dither_mode(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv327lv_obj_get_style_bg_img_srcPK9_lv_obj_t8uint32_t"></span><span id="_CPPv227lv_obj_get_style_bg_img_srcPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_bg_img_src___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a3e3e4d60810bf5f7f54795fd0295a4ed" class="target"></span>static inline const void *lv_obj_get_style_bg_img_src(const struct _lv_obj_t *obj, uint32_t part[https://docs.lvgl.io/8.2/overview/style.html#_CPPv431lv_obj_get_style_bg_dither_modePK9_lv_obj_t8uint32_t])[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_get_style_bg_img_srcPK9_lv_obj_t8uint32_t] <span id="_CPPv327lv_obj_get_style_bg_img_srcPK9_lv_obj_t8uint32_t"></span><span id="_CPPv227lv_obj_get_style_bg_img_srcPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_bg_img_src___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a3e3e4d60810bf5f7f54795fd0295a4ed" class="target"></span>
+
static inline const void *lv_obj_get_style_bg_img_src(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv327lv_obj_get_style_bg_img_opaPK9_lv_obj_t8uint32_t"></span><span id="_CPPv227lv_obj_get_style_bg_img_opaPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_bg_img_opa___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1ab5061bf36d396b35401e09acabeb1f11" class="target"></span>static inline lv_opa_t lv_obj_get_style_bg_img_opa(const struct _lv_obj_t *obj, uint32_[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_get_style_bg_img_srcPK9_lv_obj_t8uint32_t]t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_get_style_bg_img_opaPK9_lv_obj_t8uint32_t] <span id="_CPPv327lv_obj_get_style_bg_img_opaPK9_lv_obj_t8uint32_t"></span><span id="_CPPv227lv_obj_get_style_bg_img_opaPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_bg_img_opa___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1ab5061bf36d396b35401e09acabeb1f11" class="target"></span>
+
static inline lv_opa_t lv_obj_get_style_bg_img_opa(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv331lv_obj_get_style_bg_img_recolorPK9_lv_obj_t8uint32_t"></span><span id="_CPPv231lv_obj_get_style_bg_img_recolorPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_bg_img_recolor___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1abc5c98a1f8a3e643ad9eaa75591e8905" class="target"></span>static inline lv_color_t lv_obj_get_style_bg_img_recolor(const struct _lv_obj_t *obj[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_get_style_bg_img_opaPK9_lv_obj_t8uint32_t], uint32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv431lv_obj_get_style_bg_img_recolorPK9_lv_obj_t8uint32_t] <span id="_CPPv331lv_obj_get_style_bg_img_recolorPK9_lv_obj_t8uint32_t"></span><span id="_CPPv231lv_obj_get_style_bg_img_recolorPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_bg_img_recolor___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1abc5c98a1f8a3e643ad9eaa75591e8905" class="target"></span>
+
static inline lv_color_t lv_obj_get_style_bg_img_recolor(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv340lv_obj_get_style_bg_img_recolor_filteredPK9_lv_obj_t8uint32_t"></span><span id="_CPPv240lv_obj_get_style_bg_img_recolor_filteredPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_bg_img_recolor_filtered___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1ad67e4234e760ddf7ee1aa3b866445edc" class="target"></span>static inline lv_color_t lv_obj_get_style_bg_img_recolor_filtered(const struct _lv_obj_t *[https://docs.lvgl.io/8.2/overview/style.html#_CPPv431lv_obj_get_style_bg_img_recolorPK9_lv_obj_t8uint32_t]obj, uint32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv440lv_obj_get_style_bg_img_recolor_filteredPK9_lv_obj_t8uint32_t] <span id="_CPPv340lv_obj_get_style_bg_img_recolor_filteredPK9_lv_obj_t8uint32_t"></span><span id="_CPPv240lv_obj_get_style_bg_img_recolor_filteredPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_bg_img_recolor_filtered___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1ad67e4234e760ddf7ee1aa3b866445edc" class="target"></span>
+
static inline lv_color_t lv_obj_get_style_bg_img_recolor_filtered(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv335lv_obj_get_style_bg_img_recolor_opaPK9_lv_obj_t8uint32_t"></span><span id="_CPPv235lv_obj_get_style_bg_img_recolor_opaPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_bg_img_recolor_opa___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a9860384d4685a803705bab5c92d3ccba" class="target"></span>static inline lv_opa_t lv_obj_get_style_bg_img_recolor_opa(const struct _lv_obj_t *obj, uint32_t pa[https://docs.lvgl.io/8.2/overview/style.html#_CPPv440lv_obj_get_style_bg_img_recolor_filteredPK9_lv_obj_t8uint32_t]rt)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv435lv_obj_get_style_bg_img_recolor_opaPK9_lv_obj_t8uint32_t] <span id="_CPPv335lv_obj_get_style_bg_img_recolor_opaPK9_lv_obj_t8uint32_t"></span><span id="_CPPv235lv_obj_get_style_bg_img_recolor_opaPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_bg_img_recolor_opa___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a9860384d4685a803705bab5c92d3ccba" class="target"></span>
+
static inline lv_opa_t lv_obj_get_style_bg_img_recolor_opa(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv329lv_obj_get_style_bg_img_tiledPK9_lv_obj_t8uint32_t"></span><span id="_CPPv229lv_obj_get_style_bg_img_tiledPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_bg_img_tiled___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1af1af2fe1e2244c779f9ac3c4798aff25" class="target"></span>static inline bool lv_obj_get_style_bg_img_tiled(const struct _lv_obj_t *obj, uint32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv435lv_obj_get_style_bg_img_recolor_opaPK9_lv_obj_t8uint32_t][https://docs.lvgl.io/8.2/overview/style.html#_CPPv429lv_obj_get_style_bg_img_tiledPK9_lv_obj_t8uint32_t] <span id="_CPPv329lv_obj_get_style_bg_img_tiledPK9_lv_obj_t8uint32_t"></span><span id="_CPPv229lv_obj_get_style_bg_img_tiledPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_bg_img_tiled___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1af1af2fe1e2244c779f9ac3c4798aff25" class="target"></span>
+
static inline bool lv_obj_get_style_bg_img_tiled(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv329lv_obj_get_style_border_colorPK9_lv_obj_t8uint32_t"></span><span id="_CPPv229lv_obj_get_style_border_colorPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_border_color___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a2ea0f013860572c577ac207710868fcd" class="target"></span>static inline lv_color_t lv_obj_get_style_border_color(const struct _lv_obj_t *obj[https://docs.lvgl.io/8.2/overview/style.html#_CPPv429lv_obj_get_style_bg_img_tiledPK9_lv_obj_t8uint32_t], uint32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv429lv_obj_get_style_border_colorPK9_lv_obj_t8uint32_t] <span id="_CPPv329lv_obj_get_style_border_colorPK9_lv_obj_t8uint32_t"></span><span id="_CPPv229lv_obj_get_style_border_colorPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_border_color___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a2ea0f013860572c577ac207710868fcd" class="target"></span>
+
static inline lv_color_t lv_obj_get_style_border_color(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv338lv_obj_get_style_border_color_filteredPK9_lv_obj_t8uint32_t"></span><span id="_CPPv238lv_obj_get_style_border_color_filteredPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_border_color_filtered___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a28db6d02750af15a1389906054de7732" class="target"></span>static inline lv_color_t lv_obj_get_style_border_color_filtered(const struct _lv_obj_t *[https://docs.lvgl.io/8.2/overview/style.html#_CPPv429lv_obj_get_style_border_colorPK9_lv_obj_t8uint32_t]obj, uint32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv438lv_obj_get_style_border_color_filteredPK9_lv_obj_t8uint32_t] <span id="_CPPv338lv_obj_get_style_border_color_filteredPK9_lv_obj_t8uint32_t"></span><span id="_CPPv238lv_obj_get_style_border_color_filteredPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_border_color_filtered___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a28db6d02750af15a1389906054de7732" class="target"></span>
+
static inline lv_color_t lv_obj_get_style_border_color_filtered(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv327lv_obj_get_style_border_opaPK9_lv_obj_t8uint32_t"></span><span id="_CPPv227lv_obj_get_style_border_opaPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_border_opa___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a0025470436a4e904cf88f28a0876a634" class="target"></span>static inline lv_opa_t lv_obj_get_style_border_opa(const struct _lv_obj_t *obj, uint32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_get_style_border_opaPK9_lv_obj_t8uint32_t] <span id="_CPPv327lv_obj_get_style_border_opaPK9_lv_obj_t8uint32_t"></span><span id="_CPPv227lv_obj_get_style_border_opaPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_border_opa___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a0025470436a4e904cf88f28a0876a634" class="target"></span> [https://docs.lvgl.io/8.2/overview/style.html#_CPPv438lv_obj_get_style_border_color_filteredPK9_lv_obj_t8uint32_t]
+
static inline lv_opa_t lv_obj_get_style_border_opa(const struct _lv_obj_t *obj, uint32_t part)
 
:
 
:
  
; <span id="_CPPv329lv_obj_get_style_border_widthPK9_lv_obj_t8uint32_t"></span><span id="_CPPv229lv_obj_get_style_border_widthPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_border_width___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a908690e76f44a6ee6e763b14012b551b" class="target"></span>static inline lv_coord_t lv_obj_get_style_border_width(const struct _lv_obj_t *obj, [https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_get_style_border_opaPK9_lv_obj_t8uint32_t]uint32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv429lv_obj_get_style_border_widthPK9_lv_obj_t8uint32_t] <span id="_CPPv329lv_obj_get_style_border_widthPK9_lv_obj_t8uint32_t"></span><span id="_CPPv229lv_obj_get_style_border_widthPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_border_width___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a908690e76f44a6ee6e763b14012b551b" class="target"></span>
+
static inline lv_coord_t lv_obj_get_style_border_width(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv328lv_obj_get_style_border_sidePK9_lv_obj_t8uint32_t"></span><span id="_CPPv228lv_obj_get_style_border_sidePK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_border_side___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a8b1ea28ca555669d673f0f387096f38e" class="target"></span>static inline lv_border_side_t lv_obj_get_style_border_side(const struct _lv_obj_t *obj,[https://docs.lvgl.io/8.2/overview/style.html#_CPPv429lv_obj_get_style_border_widthPK9_lv_obj_t8uint32_t] uint32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv428lv_obj_get_style_border_sidePK9_lv_obj_t8uint32_t] <span id="_CPPv328lv_obj_get_style_border_sidePK9_lv_obj_t8uint32_t"></span><span id="_CPPv228lv_obj_get_style_border_sidePK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_border_side___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a8b1ea28ca555669d673f0f387096f38e" class="target"></span>
+
static inline lv_border_side_t lv_obj_get_style_border_side(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv328lv_obj_get_style_border_postPK9_lv_obj_t8uint32_t"></span><span id="_CPPv228lv_obj_get_style_border_postPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_border_post___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a4daca787cebcb1990e57a52521a65741" class="target"></span>static inline bool lv_obj_get_style_border_post(const struct _lv_obj_t *obj, uint32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv428lv_obj_get_style_border_postPK9_lv_obj_t8uint32_t] [https://docs.lvgl.io/8.2/overview/style.html#_CPPv428lv_obj_get_style_border_sidePK9_lv_obj_t8uint32_t]<span id="_CPPv328lv_obj_get_style_border_postPK9_lv_obj_t8uint32_t"></span><span id="_CPPv228lv_obj_get_style_border_postPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_border_post___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a4daca787cebcb1990e57a52521a65741" class="target"></span>
+
static inline bool lv_obj_get_style_border_post(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv330lv_obj_get_style_outline_widthPK9_lv_obj_t8uint32_t"></span><span id="_CPPv230lv_obj_get_style_outline_widthPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_outline_width___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1adedc44d0a3f44dc25a52293ffb990fbb" class="target"></span>static inline lv_coord_t lv_obj_get_style_outline_width(const struct _lv_obj_t *o[https://docs.lvgl.io/8.2/overview/style.html#_CPPv428lv_obj_get_style_border_postPK9_lv_obj_t8uint32_t]bj, uint32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv430lv_obj_get_style_outline_widthPK9_lv_obj_t8uint32_t] <span id="_CPPv330lv_obj_get_style_outline_widthPK9_lv_obj_t8uint32_t"></span><span id="_CPPv230lv_obj_get_style_outline_widthPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_outline_width___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1adedc44d0a3f44dc25a52293ffb990fbb" class="target"></span>
+
static inline lv_coord_t lv_obj_get_style_outline_width(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv330lv_obj_get_style_outline_colorPK9_lv_obj_t8uint32_t"></span><span id="_CPPv230lv_obj_get_style_outline_colorPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_outline_color___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1adc0950991c39643d3de14ef338d3e115" class="target"></span>static inline lv_color_t lv_obj_get_style_outline_color(const struct _lv_obj_t *obj, uint[https://docs.lvgl.io/8.2/overview/style.html#_CPPv430lv_obj_get_style_outline_widthPK9_lv_obj_t8uint32_t]32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv430lv_obj_get_style_outline_colorPK9_lv_obj_t8uint32_t] <span id="_CPPv330lv_obj_get_style_outline_colorPK9_lv_obj_t8uint32_t"></span><span id="_CPPv230lv_obj_get_style_outline_colorPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_outline_color___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1adc0950991c39643d3de14ef338d3e115" class="target"></span>
+
static inline lv_color_t lv_obj_get_style_outline_color(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv339lv_obj_get_style_outline_color_filteredPK9_lv_obj_t8uint32_t"></span><span id="_CPPv239lv_obj_get_style_outline_color_filteredPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_outline_color_filtered___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a34e044cea382980aed83557dc82763b0" class="target"></span>static inline lv_color_t lv_obj_get_style_outline_color_filtered(const struct _lv_obj_t *[https://docs.lvgl.io/8.2/overview/style.html#_CPPv430lv_obj_get_style_outline_colorPK9_lv_obj_t8uint32_t]obj, uint32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv439lv_obj_get_style_outline_color_filteredPK9_lv_obj_t8uint32_t] <span id="_CPPv339lv_obj_get_style_outline_color_filteredPK9_lv_obj_t8uint32_t"></span><span id="_CPPv239lv_obj_get_style_outline_color_filteredPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_outline_color_filtered___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a34e044cea382980aed83557dc82763b0" class="target"></span>
+
static inline lv_color_t lv_obj_get_style_outline_color_filtered(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv328lv_obj_get_style_outline_opaPK9_lv_obj_t8uint32_t"></span><span id="_CPPv228lv_obj_get_style_outline_opaPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_outline_opa___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a23274e5113839989a799286ec0c0fb76" class="target"></span>static inline lv_opa_t lv_obj_get_style_outline_opa(const struct _lv_obj_t *obj, uint32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv428lv_obj_get_style_outline_opaPK9_lv_obj_t8uint32_t] <span id="_CPPv328lv_obj_get_style_outline_opaPK9_lv_obj_t8uint32_t"></span><span id="_CPPv228lv_obj_get_style_outline_opaPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_outline_opa___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a23274e5113839989a799286ec0c0fb76" class="target"></span> [https://docs.lvgl.io/8.2/overview/style.html#_CPPv439lv_obj_get_style_outline_color_filteredPK9_lv_obj_t8uint32_t]
+
static inline lv_opa_t lv_obj_get_style_outline_opa(const struct _lv_obj_t *obj, uint32_t part)
 
:
 
:
  
; <span id="_CPPv328lv_obj_get_style_outline_padPK9_lv_obj_t8uint32_t"></span><span id="_CPPv228lv_obj_get_style_outline_padPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_outline_pad___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a3cce71d44c4ad985c6369b6ada25b8b7" class="target"></span>static inline lv_coord_t lv_obj_get_style_outline_pad(const struct _lv_obj_t *obj, ui[https://docs.lvgl.io/8.2/overview/style.html#_CPPv428lv_obj_get_style_outline_opaPK9_lv_obj_t8uint32_t]nt32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv428lv_obj_get_style_outline_padPK9_lv_obj_t8uint32_t] <span id="_CPPv328lv_obj_get_style_outline_padPK9_lv_obj_t8uint32_t"></span><span id="_CPPv228lv_obj_get_style_outline_padPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_outline_pad___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a3cce71d44c4ad985c6369b6ada25b8b7" class="target"></span>
+
static inline lv_coord_t lv_obj_get_style_outline_pad(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv329lv_obj_get_style_shadow_widthPK9_lv_obj_t8uint32_t"></span><span id="_CPPv229lv_obj_get_style_shadow_widthPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_shadow_width___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a45e69e80598e2b7087de5d981e72145f" class="target"></span>static inline lv_coord_t lv_obj_get_style_shadow_width(const struct _lv_obj_t *obj, uin[https://docs.lvgl.io/8.2/overview/style.html#_CPPv428lv_obj_get_style_outline_padPK9_lv_obj_t8uint32_t]t32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv429lv_obj_get_style_shadow_widthPK9_lv_obj_t8uint32_t] <span id="_CPPv329lv_obj_get_style_shadow_widthPK9_lv_obj_t8uint32_t"></span><span id="_CPPv229lv_obj_get_style_shadow_widthPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_shadow_width___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a45e69e80598e2b7087de5d981e72145f" class="target"></span>
+
static inline lv_coord_t lv_obj_get_style_shadow_width(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv329lv_obj_get_style_shadow_ofs_xPK9_lv_obj_t8uint32_t"></span><span id="_CPPv229lv_obj_get_style_shadow_ofs_xPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_shadow_ofs_x___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a464f58aad78545692c89e748e66a148b" class="target"></span>static inline lv_coord_t lv_obj_get_style_shadow_ofs_x(const struct _lv_obj_t *obj, uint[https://docs.lvgl.io/8.2/overview/style.html#_CPPv429lv_obj_get_style_shadow_widthPK9_lv_obj_t8uint32_t]32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv429lv_obj_get_style_shadow_ofs_xPK9_lv_obj_t8uint32_t] <span id="_CPPv329lv_obj_get_style_shadow_ofs_xPK9_lv_obj_t8uint32_t"></span><span id="_CPPv229lv_obj_get_style_shadow_ofs_xPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_shadow_ofs_x___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a464f58aad78545692c89e748e66a148b" class="target"></span>
+
static inline lv_coord_t lv_obj_get_style_shadow_ofs_x(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv329lv_obj_get_style_shadow_ofs_yPK9_lv_obj_t8uint32_t"></span><span id="_CPPv229lv_obj_get_style_shadow_ofs_yPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_shadow_ofs_y___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a1ca02eaa1ea9408644b7c46e2bc7594c" class="target"></span>static inline lv_coord_t lv_obj_get_style_shadow_ofs_y(const struct _lv_obj_t *obj, uint[https://docs.lvgl.io/8.2/overview/style.html#_CPPv429lv_obj_get_style_shadow_ofs_xPK9_lv_obj_t8uint32_t]32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv429lv_obj_get_style_shadow_ofs_yPK9_lv_obj_t8uint32_t] <span id="_CPPv329lv_obj_get_style_shadow_ofs_yPK9_lv_obj_t8uint32_t"></span><span id="_CPPv229lv_obj_get_style_shadow_ofs_yPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_shadow_ofs_y___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a1ca02eaa1ea9408644b7c46e2bc7594c" class="target"></span>
+
static inline lv_coord_t lv_obj_get_style_shadow_ofs_y(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv330lv_obj_get_style_shadow_spreadPK9_lv_obj_t8uint32_t"></span><span id="_CPPv230lv_obj_get_style_shadow_spreadPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_shadow_spread___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a1a63f85a974aeb60d3e22ed1c54ebd52" class="target"></span>static inline lv_coord_t lv_obj_get_style_shadow_spread(const struct _lv_obj_t *obj, uin[https://docs.lvgl.io/8.2/overview/style.html#_CPPv429lv_obj_get_style_shadow_ofs_yPK9_lv_obj_t8uint32_t]t32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv430lv_obj_get_style_shadow_spreadPK9_lv_obj_t8uint32_t] <span id="_CPPv330lv_obj_get_style_shadow_spreadPK9_lv_obj_t8uint32_t"></span><span id="_CPPv230lv_obj_get_style_shadow_spreadPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_shadow_spread___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a1a63f85a974aeb60d3e22ed1c54ebd52" class="target"></span>
+
static inline lv_coord_t lv_obj_get_style_shadow_spread(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv329lv_obj_get_style_shadow_colorPK9_lv_obj_t8uint32_t"></span><span id="_CPPv229lv_obj_get_style_shadow_colorPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_shadow_color___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a71c9e45ee55329c671afba688c7026d2" class="target"></span>static inline lv_color_t lv_obj_get_style_shadow_color(const struct _lv_obj_t *obj, uint3[https://docs.lvgl.io/8.2/overview/style.html#_CPPv430lv_obj_get_style_shadow_spreadPK9_lv_obj_t8uint32_t]2_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv429lv_obj_get_style_shadow_colorPK9_lv_obj_t8uint32_t] <span id="_CPPv329lv_obj_get_style_shadow_colorPK9_lv_obj_t8uint32_t"></span><span id="_CPPv229lv_obj_get_style_shadow_colorPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_shadow_color___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a71c9e45ee55329c671afba688c7026d2" class="target"></span>
+
static inline lv_color_t lv_obj_get_style_shadow_color(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv338lv_obj_get_style_shadow_color_filteredPK9_lv_obj_t8uint32_t"></span><span id="_CPPv238lv_obj_get_style_shadow_color_filteredPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_shadow_color_filtered___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a2789c56897542d13fe065061a305ddf1" class="target"></span>static inline lv_color_t lv_obj_get_style_shadow_color_filtered(const struct _lv_obj_t *[https://docs.lvgl.io/8.2/overview/style.html#_CPPv429lv_obj_get_style_shadow_colorPK9_lv_obj_t8uint32_t]obj, uint32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv438lv_obj_get_style_shadow_color_filteredPK9_lv_obj_t8uint32_t] <span id="_CPPv338lv_obj_get_style_shadow_color_filteredPK9_lv_obj_t8uint32_t"></span><span id="_CPPv238lv_obj_get_style_shadow_color_filteredPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_shadow_color_filtered___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a2789c56897542d13fe065061a305ddf1" class="target"></span>
+
static inline lv_color_t lv_obj_get_style_shadow_color_filtered(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv327lv_obj_get_style_shadow_opaPK9_lv_obj_t8uint32_t"></span><span id="_CPPv227lv_obj_get_style_shadow_opaPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_shadow_opa___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1ada2da8314f6368bdcbe66be1a073d828" class="target"></span>static inline lv_opa_t lv_obj_get_style_shadow_opa(const struct _lv_obj_t *obj, uint32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_get_style_shadow_opaPK9_lv_obj_t8uint32_t] <span id="_CPPv327lv_obj_get_style_shadow_opaPK9_lv_obj_t8uint32_t"></span><span id="_CPPv227lv_obj_get_style_shadow_opaPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_shadow_opa___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1ada2da8314f6368bdcbe66be1a073d828" class="target"></span> [https://docs.lvgl.io/8.2/overview/style.html#_CPPv438lv_obj_get_style_shadow_color_filteredPK9_lv_obj_t8uint32_t]
+
static inline lv_opa_t lv_obj_get_style_shadow_opa(const struct _lv_obj_t *obj, uint32_t part)
 
:
 
:
  
; <span id="_CPPv324lv_obj_get_style_img_opaPK9_lv_obj_t8uint32_t"></span><span id="_CPPv224lv_obj_get_style_img_opaPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_img_opa___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a11c43297c6fab1ceb4e20f14f15fb5cd" class="target"></span>static inline lv_opa_t lv_obj_get_style_img_opa(const struct _lv_obj_t *obj, uint32_[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_get_style_shadow_opaPK9_lv_obj_t8uint32_t]t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv424lv_obj_get_style_img_opaPK9_lv_obj_t8uint32_t] <span id="_CPPv324lv_obj_get_style_img_opaPK9_lv_obj_t8uint32_t"></span><span id="_CPPv224lv_obj_get_style_img_opaPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_img_opa___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a11c43297c6fab1ceb4e20f14f15fb5cd" class="target"></span>
+
static inline lv_opa_t lv_obj_get_style_img_opa(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv328lv_obj_get_style_img_recolorPK9_lv_obj_t8uint32_t"></span><span id="_CPPv228lv_obj_get_style_img_recolorPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_img_recolor___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1ac0feee9b4fd72359d67255ab4c42ac39" class="target"></span>static inline lv_color_t lv_obj_get_style_img_recolor(const struct _lv_obj_t *obj[https://docs.lvgl.io/8.2/overview/style.html#_CPPv424lv_obj_get_style_img_opaPK9_lv_obj_t8uint32_t], uint32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv428lv_obj_get_style_img_recolorPK9_lv_obj_t8uint32_t] <span id="_CPPv328lv_obj_get_style_img_recolorPK9_lv_obj_t8uint32_t"></span><span id="_CPPv228lv_obj_get_style_img_recolorPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_img_recolor___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1ac0feee9b4fd72359d67255ab4c42ac39" class="target"></span>
+
static inline lv_color_t lv_obj_get_style_img_recolor(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv337lv_obj_get_style_img_recolor_filteredPK9_lv_obj_t8uint32_t"></span><span id="_CPPv237lv_obj_get_style_img_recolor_filteredPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_img_recolor_filtered___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a4e696634fa1233d25a449924e1e47ae2" class="target"></span>static inline lv_color_t lv_obj_get_style_img_recolor_filtered(const struct _lv_obj_t *[https://docs.lvgl.io/8.2/overview/style.html#_CPPv428lv_obj_get_style_img_recolorPK9_lv_obj_t8uint32_t]obj, uint32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv437lv_obj_get_style_img_recolor_filteredPK9_lv_obj_t8uint32_t] <span id="_CPPv337lv_obj_get_style_img_recolor_filteredPK9_lv_obj_t8uint32_t"></span><span id="_CPPv237lv_obj_get_style_img_recolor_filteredPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_img_recolor_filtered___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a4e696634fa1233d25a449924e1e47ae2" class="target"></span>
+
static inline lv_color_t lv_obj_get_style_img_recolor_filtered(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv332lv_obj_get_style_img_recolor_opaPK9_lv_obj_t8uint32_t"></span><span id="_CPPv232lv_obj_get_style_img_recolor_opaPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_img_recolor_opa___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a034b11b34674ac9e2ab5ad6fc0599840" class="target"></span>static inline lv_opa_t lv_obj_get_style_img_recolor_opa(const struct _lv_obj_t *obj, uint32_t pa[https://docs.lvgl.io/8.2/overview/style.html#_CPPv437lv_obj_get_style_img_recolor_filteredPK9_lv_obj_t8uint32_t]rt)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv432lv_obj_get_style_img_recolor_opaPK9_lv_obj_t8uint32_t] <span id="_CPPv332lv_obj_get_style_img_recolor_opaPK9_lv_obj_t8uint32_t"></span><span id="_CPPv232lv_obj_get_style_img_recolor_opaPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_img_recolor_opa___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a034b11b34674ac9e2ab5ad6fc0599840" class="target"></span>
+
static inline lv_opa_t lv_obj_get_style_img_recolor_opa(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv327lv_obj_get_style_line_widthPK9_lv_obj_t8uint32_t"></span><span id="_CPPv227lv_obj_get_style_line_widthPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_line_width___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a88df027d75f9ccef816583ad748d0c61" class="target"></span>static inline lv_coord_t lv_obj_get_style_line_width(const struct _lv_obj_t *obj, uint32_[https://docs.lvgl.io/8.2/overview/style.html#_CPPv432lv_obj_get_style_img_recolor_opaPK9_lv_obj_t8uint32_t]t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_get_style_line_widthPK9_lv_obj_t8uint32_t] <span id="_CPPv327lv_obj_get_style_line_widthPK9_lv_obj_t8uint32_t"></span><span id="_CPPv227lv_obj_get_style_line_widthPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_line_width___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a88df027d75f9ccef816583ad748d0c61" class="target"></span>
+
static inline lv_coord_t lv_obj_get_style_line_width(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv332lv_obj_get_style_line_dash_widthPK9_lv_obj_t8uint32_t"></span><span id="_CPPv232lv_obj_get_style_line_dash_widthPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_line_dash_width___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a98fef0a37534b1f4017e41d350c8e61a" class="target"></span>static inline lv_coord_t lv_obj_get_style_line_dash_width(const struct _lv_obj_t *obj,[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_get_style_line_widthPK9_lv_obj_t8uint32_t] uint32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv432lv_obj_get_style_line_dash_widthPK9_lv_obj_t8uint32_t] <span id="_CPPv332lv_obj_get_style_line_dash_widthPK9_lv_obj_t8uint32_t"></span><span id="_CPPv232lv_obj_get_style_line_dash_widthPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_line_dash_width___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a98fef0a37534b1f4017e41d350c8e61a" class="target"></span>
+
static inline lv_coord_t lv_obj_get_style_line_dash_width(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv330lv_obj_get_style_line_dash_gapPK9_lv_obj_t8uint32_t"></span><span id="_CPPv230lv_obj_get_style_line_dash_gapPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_line_dash_gap___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a1f0c11f0354687cb817f012a63dd2552" class="target"></span>static inline lv_coord_t lv_obj_get_style_line_dash_gap(const struct _lv_obj_t *obj, uint32[https://docs.lvgl.io/8.2/overview/style.html#_CPPv432lv_obj_get_style_line_dash_widthPK9_lv_obj_t8uint32_t]_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv430lv_obj_get_style_line_dash_gapPK9_lv_obj_t8uint32_t] <span id="_CPPv330lv_obj_get_style_line_dash_gapPK9_lv_obj_t8uint32_t"></span><span id="_CPPv230lv_obj_get_style_line_dash_gapPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_line_dash_gap___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a1f0c11f0354687cb817f012a63dd2552" class="target"></span>
+
static inline lv_coord_t lv_obj_get_style_line_dash_gap(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv329lv_obj_get_style_line_roundedPK9_lv_obj_t8uint32_t"></span><span id="_CPPv229lv_obj_get_style_line_roundedPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_line_rounded___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a27eb560bb7bfd20d81a5bd7368137300" class="target"></span>static inline bool lv_obj_get_style_line_rounded(const struct _lv_obj_t *obj, uint32_t pa[https://docs.lvgl.io/8.2/overview/style.html#_CPPv430lv_obj_get_style_line_dash_gapPK9_lv_obj_t8uint32_t]rt)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv429lv_obj_get_style_line_roundedPK9_lv_obj_t8uint32_t] <span id="_CPPv329lv_obj_get_style_line_roundedPK9_lv_obj_t8uint32_t"></span><span id="_CPPv229lv_obj_get_style_line_roundedPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_line_rounded___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a27eb560bb7bfd20d81a5bd7368137300" class="target"></span>
+
static inline bool lv_obj_get_style_line_rounded(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv327lv_obj_get_style_line_colorPK9_lv_obj_t8uint32_t"></span><span id="_CPPv227lv_obj_get_style_line_colorPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_line_color___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a1c6e3e671c6e5e9c63a0f3a1b8f42d85" class="target"></span>static inline lv_color_t lv_obj_get_style_line_color(const struct _lv_obj_t *obj, [https://docs.lvgl.io/8.2/overview/style.html#_CPPv429lv_obj_get_style_line_roundedPK9_lv_obj_t8uint32_t]uint32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_get_style_line_colorPK9_lv_obj_t8uint32_t] <span id="_CPPv327lv_obj_get_style_line_colorPK9_lv_obj_t8uint32_t"></span><span id="_CPPv227lv_obj_get_style_line_colorPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_line_color___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a1c6e3e671c6e5e9c63a0f3a1b8f42d85" class="target"></span>
+
static inline lv_color_t lv_obj_get_style_line_color(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv336lv_obj_get_style_line_color_filteredPK9_lv_obj_t8uint32_t"></span><span id="_CPPv236lv_obj_get_style_line_color_filteredPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_line_color_filtered___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a15c70fb80ee36f30ef4ae40a24692a99" class="target"></span>static inline lv_color_t lv_obj_get_style_line_color_filtered(const struct _lv_obj_t *[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_get_style_line_colorPK9_lv_obj_t8uint32_t]obj, uint32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv436lv_obj_get_style_line_color_filteredPK9_lv_obj_t8uint32_t] <span id="_CPPv336lv_obj_get_style_line_color_filteredPK9_lv_obj_t8uint32_t"></span><span id="_CPPv236lv_obj_get_style_line_color_filteredPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_line_color_filtered___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a15c70fb80ee36f30ef4ae40a24692a99" class="target"></span>
+
static inline lv_color_t lv_obj_get_style_line_color_filtered(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv325lv_obj_get_style_line_opaPK9_lv_obj_t8uint32_t"></span><span id="_CPPv225lv_obj_get_style_line_opaPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_line_opa___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1aef494adce4fe34aa3645b2c482d25725" class="target"></span>static inline lv_opa_t lv_obj_get_style_line_opa(const struct _lv_obj_t *obj, uint32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv425lv_obj_get_style_line_opaPK9_lv_obj_t8uint32_t] <span id="_CPPv325lv_obj_get_style_line_opaPK9_lv_obj_t8uint32_t"></span><span id="_CPPv225lv_obj_get_style_line_opaPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_line_opa___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1aef494adce4fe34aa3645b2c482d25725" class="target"></span> [https://docs.lvgl.io/8.2/overview/style.html#_CPPv436lv_obj_get_style_line_color_filteredPK9_lv_obj_t8uint32_t]
+
static inline lv_opa_t lv_obj_get_style_line_opa(const struct _lv_obj_t *obj, uint32_t part)
 
:
 
:
  
; <span id="_CPPv326lv_obj_get_style_arc_widthPK9_lv_obj_t8uint32_t"></span><span id="_CPPv226lv_obj_get_style_arc_widthPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_arc_width___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1aafe3866ccbab3a7190a2974808311da7" class="target"></span>static inline lv_coord_t lv_obj_get_style_arc_width(const struct _lv_obj_t *obj, u[https://docs.lvgl.io/8.2/overview/style.html#_CPPv425lv_obj_get_style_line_opaPK9_lv_obj_t8uint32_t]int32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv426lv_obj_get_style_arc_widthPK9_lv_obj_t8uint32_t] <span id="_CPPv326lv_obj_get_style_arc_widthPK9_lv_obj_t8uint32_t"></span><span id="_CPPv226lv_obj_get_style_arc_widthPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_arc_width___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1aafe3866ccbab3a7190a2974808311da7" class="target"></span>
+
static inline lv_coord_t lv_obj_get_style_arc_width(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv328lv_obj_get_style_arc_roundedPK9_lv_obj_t8uint32_t"></span><span id="_CPPv228lv_obj_get_style_arc_roundedPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_arc_rounded___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a8460d072019c3e8aa77c50bd4e36126a" class="target"></span>static inline bool lv_obj_get_style_arc_rounded(const struct _lv_obj_t *obj, uint32_t[https://docs.lvgl.io/8.2/overview/style.html#_CPPv426lv_obj_get_style_arc_widthPK9_lv_obj_t8uint32_t] part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv428lv_obj_get_style_arc_roundedPK9_lv_obj_t8uint32_t] <span id="_CPPv328lv_obj_get_style_arc_roundedPK9_lv_obj_t8uint32_t"></span><span id="_CPPv228lv_obj_get_style_arc_roundedPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_arc_rounded___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a8460d072019c3e8aa77c50bd4e36126a" class="target"></span>
+
static inline bool lv_obj_get_style_arc_rounded(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv326lv_obj_get_style_arc_colorPK9_lv_obj_t8uint32_t"></span><span id="_CPPv226lv_obj_get_style_arc_colorPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_arc_color___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a420f0e99cf78b13f621294625173e78c" class="target"></span>static inline lv_color_t lv_obj_get_style_arc_color(const struct _lv_obj_t *obj, [https://docs.lvgl.io/8.2/overview/style.html#_CPPv428lv_obj_get_style_arc_roundedPK9_lv_obj_t8uint32_t]uint32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv426lv_obj_get_style_arc_colorPK9_lv_obj_t8uint32_t] <span id="_CPPv326lv_obj_get_style_arc_colorPK9_lv_obj_t8uint32_t"></span><span id="_CPPv226lv_obj_get_style_arc_colorPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_arc_color___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a420f0e99cf78b13f621294625173e78c" class="target"></span>
+
static inline lv_color_t lv_obj_get_style_arc_color(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv335lv_obj_get_style_arc_color_filteredPK9_lv_obj_t8uint32_t"></span><span id="_CPPv235lv_obj_get_style_arc_color_filteredPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_arc_color_filtered___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a85e88ad95fc439ec164a4cc8ba41e1e0" class="target"></span>static inline lv_color_t lv_obj_get_style_arc_color_filtered(const struct _lv_obj_t *[https://docs.lvgl.io/8.2/overview/style.html#_CPPv426lv_obj_get_style_arc_colorPK9_lv_obj_t8uint32_t]obj, uint32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv435lv_obj_get_style_arc_color_filteredPK9_lv_obj_t8uint32_t] <span id="_CPPv335lv_obj_get_style_arc_color_filteredPK9_lv_obj_t8uint32_t"></span><span id="_CPPv235lv_obj_get_style_arc_color_filteredPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_arc_color_filtered___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a85e88ad95fc439ec164a4cc8ba41e1e0" class="target"></span>
+
static inline lv_color_t lv_obj_get_style_arc_color_filtered(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv324lv_obj_get_style_arc_opaPK9_lv_obj_t8uint32_t"></span><span id="_CPPv224lv_obj_get_style_arc_opaPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_arc_opa___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1aab2c44818f54f7d7cb99a3bffc979f70" class="target"></span>static inline lv_opa_t lv_obj_get_style_arc_opa(const struct _lv_obj_t *obj, uint32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv424lv_obj_get_style_arc_opaPK9_lv_obj_t8uint32_t] <span id="_CPPv324lv_obj_get_style_arc_opaPK9_lv_obj_t8uint32_t"></span><span id="_CPPv224lv_obj_get_style_arc_opaPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_arc_opa___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1aab2c44818f54f7d7cb99a3bffc979f70" class="target"></span> [https://docs.lvgl.io/8.2/overview/style.html#_CPPv435lv_obj_get_style_arc_color_filteredPK9_lv_obj_t8uint32_t]
+
static inline lv_opa_t lv_obj_get_style_arc_opa(const struct _lv_obj_t *obj, uint32_t part)
 
:
 
:
  
; <span id="_CPPv328lv_obj_get_style_arc_img_srcPK9_lv_obj_t8uint32_t"></span><span id="_CPPv228lv_obj_get_style_arc_img_srcPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_arc_img_src___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a6961242220ca424a6b9d8b010ef6e9f9" class="target"></span>static inline const void *lv_obj_get_style_arc_img_src(const struct _lv_obj_t *ob[https://docs.lvgl.io/8.2/overview/style.html#_CPPv424lv_obj_get_style_arc_opaPK9_lv_obj_t8uint32_t]j, uint32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv428lv_obj_get_style_arc_img_srcPK9_lv_obj_t8uint32_t] <span id="_CPPv328lv_obj_get_style_arc_img_srcPK9_lv_obj_t8uint32_t"></span><span id="_CPPv228lv_obj_get_style_arc_img_srcPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_arc_img_src___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a6961242220ca424a6b9d8b010ef6e9f9" class="target"></span>
+
static inline const void *lv_obj_get_style_arc_img_src(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv327lv_obj_get_style_text_colorPK9_lv_obj_t8uint32_t"></span><span id="_CPPv227lv_obj_get_style_text_colorPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_text_color___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1ac4a7029dd835960ae0a95e5d783310f3" class="target"></span>static inline lv_color_t lv_obj_get_style_text_color(const struct _lv_obj_t *obj, uint32[https://docs.lvgl.io/8.2/overview/style.html#_CPPv428lv_obj_get_style_arc_img_srcPK9_lv_obj_t8uint32_t]_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_get_style_text_colorPK9_lv_obj_t8uint32_t] <span id="_CPPv327lv_obj_get_style_text_colorPK9_lv_obj_t8uint32_t"></span><span id="_CPPv227lv_obj_get_style_text_colorPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_text_color___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1ac4a7029dd835960ae0a95e5d783310f3" class="target"></span>
+
static inline lv_color_t lv_obj_get_style_text_color(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv336lv_obj_get_style_text_color_filteredPK9_lv_obj_t8uint32_t"></span><span id="_CPPv236lv_obj_get_style_text_color_filteredPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_text_color_filtered___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a9b6b8eaae076e6b94bdb798acbb170c1" class="target"></span>static inline lv_color_t lv_obj_get_style_text_color_filtered(const struct _lv_obj_t *[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_get_style_text_colorPK9_lv_obj_t8uint32_t]obj, uint32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv436lv_obj_get_style_text_color_filteredPK9_lv_obj_t8uint32_t] <span id="_CPPv336lv_obj_get_style_text_color_filteredPK9_lv_obj_t8uint32_t"></span><span id="_CPPv236lv_obj_get_style_text_color_filteredPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_text_color_filtered___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a9b6b8eaae076e6b94bdb798acbb170c1" class="target"></span>
+
static inline lv_color_t lv_obj_get_style_text_color_filtered(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv325lv_obj_get_style_text_opaPK9_lv_obj_t8uint32_t"></span><span id="_CPPv225lv_obj_get_style_text_opaPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_text_opa___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1ae371a5feb906cae854a093a866667a32" class="target"></span>static inline lv_opa_t lv_obj_get_style_text_opa(const struct _lv_obj_t *obj, uint32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv425lv_obj_get_style_text_opaPK9_lv_obj_t8uint32_t] <span id="_CPPv325lv_obj_get_style_text_opaPK9_lv_obj_t8uint32_t"></span><span id="_CPPv225lv_obj_get_style_text_opaPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_text_opa___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1ae371a5feb906cae854a093a866667a32" class="target"></span> [https://docs.lvgl.io/8.2/overview/style.html#_CPPv436lv_obj_get_style_text_color_filteredPK9_lv_obj_t8uint32_t]
+
static inline lv_opa_t lv_obj_get_style_text_opa(const struct _lv_obj_t *obj, uint32_t part)
 
:
 
:
  
; <span id="_CPPv326lv_obj_get_style_text_fontPK9_lv_obj_t8uint32_t"></span><span id="_CPPv226lv_obj_get_style_text_fontPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_text_font___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a8e07cc256e4d20b9581eefbb04fc5ef7" class="target"></span>static inline const lv_font_t *lv_obj_get_style_text_font(const struct _lv_obj_t *[https://docs.lvgl.io/8.2/overview/style.html#_CPPv425lv_obj_get_style_text_opaPK9_lv_obj_t8uint32_t]obj, uint32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv426lv_obj_get_style_text_fontPK9_lv_obj_t8uint32_t] <span id="_CPPv326lv_obj_get_style_text_fontPK9_lv_obj_t8uint32_t"></span><span id="_CPPv226lv_obj_get_style_text_fontPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_text_font___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a8e07cc256e4d20b9581eefbb04fc5ef7" class="target"></span>
+
static inline const lv_font_t *lv_obj_get_style_text_font(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv334lv_obj_get_style_text_letter_spacePK9_lv_obj_t8uint32_t"></span><span id="_CPPv234lv_obj_get_style_text_letter_spacePK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_text_letter_space___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a63d8e35d38dfb0bcc9a2cdf44bfd23ac" class="target"></span>static inline lv_coord_t lv_obj_get_style_text_letter_space(const struct _lv_obj_t *obj, ui[https://docs.lvgl.io/8.2/overview/style.html#_CPPv426lv_obj_get_style_text_fontPK9_lv_obj_t8uint32_t]nt32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv434lv_obj_get_style_text_letter_spacePK9_lv_obj_t8uint32_t] <span id="_CPPv334lv_obj_get_style_text_letter_spacePK9_lv_obj_t8uint32_t"></span><span id="_CPPv234lv_obj_get_style_text_letter_spacePK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_text_letter_space___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a63d8e35d38dfb0bcc9a2cdf44bfd23ac" class="target"></span>
+
static inline lv_coord_t lv_obj_get_style_text_letter_space(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv332lv_obj_get_style_text_line_spacePK9_lv_obj_t8uint32_t"></span><span id="_CPPv232lv_obj_get_style_text_line_spacePK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_text_line_space___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1ad906d0ea0c54f6c32b3f767f1b59f1b2" class="target"></span>static inline lv_coord_t lv_obj_get_style_text_line_space(const struct _lv_obj_t *obj, uint32[https://docs.lvgl.io/8.2/overview/style.html#_CPPv434lv_obj_get_style_text_letter_spacePK9_lv_obj_t8uint32_t]_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv432lv_obj_get_style_text_line_spacePK9_lv_obj_t8uint32_t] <span id="_CPPv332lv_obj_get_style_text_line_spacePK9_lv_obj_t8uint32_t"></span><span id="_CPPv232lv_obj_get_style_text_line_spacePK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_text_line_space___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1ad906d0ea0c54f6c32b3f767f1b59f1b2" class="target"></span>
+
static inline lv_coord_t lv_obj_get_style_text_line_space(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv327lv_obj_get_style_text_decorPK9_lv_obj_t8uint32_t"></span><span id="_CPPv227lv_obj_get_style_text_decorPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_text_decor___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1ab0ba1717f99cce79e30ef0b53a82358f" class="target"></span>static inline lv_text_decor_t lv_obj_get_style_text_decor(const struct _lv_obj_t *obj, uint[https://docs.lvgl.io/8.2/overview/style.html#_CPPv432lv_obj_get_style_text_line_spacePK9_lv_obj_t8uint32_t]32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_get_style_text_decorPK9_lv_obj_t8uint32_t] <span id="_CPPv327lv_obj_get_style_text_decorPK9_lv_obj_t8uint32_t"></span><span id="_CPPv227lv_obj_get_style_text_decorPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_text_decor___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1ab0ba1717f99cce79e30ef0b53a82358f" class="target"></span>
+
static inline lv_text_decor_t lv_obj_get_style_text_decor(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv327lv_obj_get_style_text_alignPK9_lv_obj_t8uint32_t"></span><span id="_CPPv227lv_obj_get_style_text_alignPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_text_align___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1aacce58d231c341034ca3aa6c4d46364e" class="target"></span>static inline lv_text_align_t lv_obj_get_style_text_align(const struct _lv_obj_t *obj, uint[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_get_style_text_decorPK9_lv_obj_t8uint32_t]32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_get_style_text_alignPK9_lv_obj_t8uint32_t] <span id="_CPPv327lv_obj_get_style_text_alignPK9_lv_obj_t8uint32_t"></span><span id="_CPPv227lv_obj_get_style_text_alignPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_text_align___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1aacce58d231c341034ca3aa6c4d46364e" class="target"></span>
+
static inline lv_text_align_t lv_obj_get_style_text_align(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv323lv_obj_get_style_radiusPK9_lv_obj_t8uint32_t"></span><span id="_CPPv223lv_obj_get_style_radiusPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_radius___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1ad3e5922e6c65ba78f360a801cee225ae" class="target"></span>static inline lv_coord_t lv_obj_get_style_radius(const struct _lv_obj_t *obj, uint32_t part[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_get_style_text_alignPK9_lv_obj_t8uint32_t])[https://docs.lvgl.io/8.2/overview/style.html#_CPPv423lv_obj_get_style_radiusPK9_lv_obj_t8uint32_t] <span id="_CPPv323lv_obj_get_style_radiusPK9_lv_obj_t8uint32_t"></span><span id="_CPPv223lv_obj_get_style_radiusPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_radius___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1ad3e5922e6c65ba78f360a801cee225ae" class="target"></span>
+
static inline lv_coord_t lv_obj_get_style_radius(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv328lv_obj_get_style_clip_cornerPK9_lv_obj_t8uint32_t"></span><span id="_CPPv228lv_obj_get_style_clip_cornerPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_clip_corner___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1abf61fe73fd591e31ab06e3f4a5e69f16" class="target"></span>static inline bool lv_obj_get_style_clip_corner(const struct _lv_obj_t *obj, uint3[https://docs.lvgl.io/8.2/overview/style.html#_CPPv423lv_obj_get_style_radiusPK9_lv_obj_t8uint32_t]2_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv428lv_obj_get_style_clip_cornerPK9_lv_obj_t8uint32_t] <span id="_CPPv328lv_obj_get_style_clip_cornerPK9_lv_obj_t8uint32_t"></span><span id="_CPPv228lv_obj_get_style_clip_cornerPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_clip_corner___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1abf61fe73fd591e31ab06e3f4a5e69f16" class="target"></span>
+
static inline bool lv_obj_get_style_clip_corner(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv320lv_obj_get_style_opaPK9_lv_obj_t8uint32_t"></span><span id="_CPPv220lv_obj_get_style_opaPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_opa___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a1735942978a9eed06829bc7bc09e57ff" class="target"></span>static inline lv_opa_t lv_obj_get_style_opa(const struct _lv_obj_t *obj, uint32_t[https://docs.lvgl.io/8.2/overview/style.html#_CPPv428lv_obj_get_style_clip_cornerPK9_lv_obj_t8uint32_t] part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv420lv_obj_get_style_opaPK9_lv_obj_t8uint32_t] <span id="_CPPv320lv_obj_get_style_opaPK9_lv_obj_t8uint32_t"></span><span id="_CPPv220lv_obj_get_style_opaPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_opa___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a1735942978a9eed06829bc7bc09e57ff" class="target"></span>
+
static inline lv_opa_t lv_obj_get_style_opa(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv333lv_obj_get_style_color_filter_dscPK9_lv_obj_t8uint32_t"></span><span id="_CPPv233lv_obj_get_style_color_filter_dscPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_color_filter_dsc___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1ae88e001f5ffbd5a4b47c307d4306949c" class="target"></span>static inline const lv_color_filter_dsc_t *lv_obj_get_style_color_filter_dsc([https://docs.lvgl.io/8.2/overview/style.html#_CPPv420lv_obj_get_style_opaPK9_lv_obj_t8uint32_t]const struct _lv_obj_t *obj, uint32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv433lv_obj_get_style_color_filter_dscPK9_lv_obj_t8uint32_t] <span id="_CPPv333lv_obj_get_style_color_filter_dscPK9_lv_obj_t8uint32_t"></span><span id="_CPPv233lv_obj_get_style_color_filter_dscPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_color_filter_dsc___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1ae88e001f5ffbd5a4b47c307d4306949c" class="target"></span>
+
static inline const lv_color_filter_dsc_t *lv_obj_get_style_color_filter_dsc(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv333lv_obj_get_style_color_filter_opaPK9_lv_obj_t8uint32_t"></span><span id="_CPPv233lv_obj_get_style_color_filter_opaPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_color_filter_opa___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1acbd3749534d7d4f85ba2a96285e4c647" class="target"></span>static inline lv_opa_t lv_obj_get_style_color_filter_opa(const struct _lv_obj_t *obj, uint32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv433lv_obj_get_style_color_filter_opaPK9_lv_obj_t8uint32_t] <span id="_CPPv333lv_obj_get_style_color_filter_opaPK9_lv_obj_t8uint32_t"></span><span id="_CPPv233lv_obj_get_style_color_filter_opaPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_color_filter_opa___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1acbd3749534d7d4f85ba2a96285e4c647" class="target"></span>
+
static inline lv_opa_t lv_obj_get_style_color_filter_opa(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
[https://docs.lvgl.io/8.2/overview/style.html#_CPPv433lv_obj_get_style_color_filter_dscPK9_lv_obj_t8uint32_t]
+
 
; <span id="_CPPv326lv_obj_get_style_anim_timePK9_lv_obj_t8uint32_t"></span><span id="_CPPv226lv_obj_get_style_anim_timePK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_anim_time___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a4fd243014a822ef7a4752f4d98ce6c6e" class="target"></span>static inline uint32_t lv_obj_get_style_anim_time(const struct _lv_obj_t *obj, uint32_t pa[https://docs.lvgl.io/8.2/overview/style.html#_CPPv433lv_obj_get_style_color_filter_opaPK9_lv_obj_t8uint32_t]rt)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv426lv_obj_get_style_anim_timePK9_lv_obj_t8uint32_t] <span id="_CPPv326lv_obj_get_style_anim_timePK9_lv_obj_t8uint32_t"></span><span id="_CPPv226lv_obj_get_style_anim_timePK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_anim_time___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a4fd243014a822ef7a4752f4d98ce6c6e" class="target"></span>
+
static inline uint32_t lv_obj_get_style_anim_time(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv327lv_obj_get_style_anim_speedPK9_lv_obj_t8uint32_t"></span><span id="_CPPv227lv_obj_get_style_anim_speedPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_anim_speed___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a0118a04c3d89716db230727d9ca810ce" class="target"></span>static inline uint32_t lv_obj_get_style_anim_speed(const struct _lv_obj_t *obj, uin[https://docs.lvgl.io/8.2/overview/style.html#_CPPv426lv_obj_get_style_anim_timePK9_lv_obj_t8uint32_t]t32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_get_style_anim_speedPK9_lv_obj_t8uint32_t] <span id="_CPPv327lv_obj_get_style_anim_speedPK9_lv_obj_t8uint32_t"></span><span id="_CPPv227lv_obj_get_style_anim_speedPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_anim_speed___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a0118a04c3d89716db230727d9ca810ce" class="target"></span>
+
static inline uint32_t lv_obj_get_style_anim_speed(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv327lv_obj_get_style_transitionPK9_lv_obj_t8uint32_t"></span><span id="_CPPv227lv_obj_get_style_transitionPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_transition___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1acd37a002181a822ac90ba68037bfb897" class="target"></span>static inline const lv_style_transition_dsc_t *lv_obj_get_style_transition(const str[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_get_style_anim_speedPK9_lv_obj_t8uint32_t]uct _lv_obj_t *obj, uint32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_get_style_transitionPK9_lv_obj_t8uint32_t] <span id="_CPPv327lv_obj_get_style_transitionPK9_lv_obj_t8uint32_t"></span><span id="_CPPv227lv_obj_get_style_transitionPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_transition___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1acd37a002181a822ac90ba68037bfb897" class="target"></span>
+
static inline const lv_style_transition_dsc_t *lv_obj_get_style_transition(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv327lv_obj_get_style_blend_modePK9_lv_obj_t8uint32_t"></span><span id="_CPPv227lv_obj_get_style_blend_modePK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_blend_mode___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a08515cc8cd44515a7700841a98a628c2" class="target"></span>static inline lv_blend_mode_t lv_obj_get_style_blend_mode(const struct _lv_obj_t *obj, uint32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_get_style_blend_modePK9_lv_obj_t8uint32_t] <span id="_CPPv327lv_obj_get_style_blend_modePK9_lv_obj_t8uint32_t"></span><span id="_CPPv227lv_obj_get_style_blend_modePK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_blend_mode___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a08515cc8cd44515a7700841a98a628c2" class="target"></span>
+
static inline lv_blend_mode_t lv_obj_get_style_blend_mode(const struct _lv_obj_t *obj, uint32_t part)  
[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_get_style_transitionPK9_lv_obj_t8uint32_t]
+
:   
  
; <span id="_CPPv323lv_obj_get_style_layoutPK9_lv_obj_t8uint32_t"></span><span id="_CPPv223lv_obj_get_style_layoutPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_layout___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a787f3e96124cc863f683c8d38ef018fa" class="target"></span>static inline uint16_t lv_obj_get_style_layout(const struct _lv_obj_t *obj, uint32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv423lv_obj_get_style_layoutPK9_lv_obj_t8uint32_t][https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_get_style_blend_modePK9_lv_obj_t8uint32_t] <span id="_CPPv323lv_obj_get_style_layoutPK9_lv_obj_t8uint32_t"></span><span id="_CPPv223lv_obj_get_style_layoutPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_layout___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1a787f3e96124cc863f683c8d38ef018fa" class="target"></span>
+
static inline uint16_t lv_obj_get_style_layout(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv325lv_obj_get_style_base_dirPK9_lv_obj_t8uint32_t"></span><span id="_CPPv225lv_obj_get_style_base_dirPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_base_dir___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1adcb3ab66c205653c2dd6fbde2d799092" class="target"></span>static inline lv_base_dir_t lv_obj_get_style_base_dir(const struct _lv_obj_t *ob[https://docs.lvgl.io/8.2/overview/style.html#_CPPv423lv_obj_get_style_layoutPK9_lv_obj_t8uint32_t]j, uint32_t part)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv425lv_obj_get_style_base_dirPK9_lv_obj_t8uint32_t] <span id="_CPPv325lv_obj_get_style_base_dirPK9_lv_obj_t8uint32_t"></span><span id="_CPPv225lv_obj_get_style_base_dirPK9_lv_obj_t8uint32_t"></span><span id="lv_obj_get_style_base_dir___lv_obj_tCP.uint32_t"></span><span id="lv__obj__style__gen_8h_1adcb3ab66c205653c2dd6fbde2d799092" class="target"></span>
+
static inline lv_base_dir_t lv_obj_get_style_base_dir(const struct _lv_obj_t *obj, uint32_t part)  
 
:
 
:
  
; <span id="_CPPv322lv_obj_set_style_widthP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv222lv_obj_set_style_widthP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_width___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a141183220e8c42704e1e6aaa9c0e4906" class="target"></span>void lv_obj_set_style_width(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_[https://docs.lvgl.io/8.2/overview/style.html#_CPPv425lv_obj_get_style_base_dirPK9_lv_obj_t8uint32_t]t selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv422lv_obj_set_style_widthP9_lv_obj_t10lv_coord_t19lv_style_selector_t] <span id="_CPPv322lv_obj_set_style_widthP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv222lv_obj_set_style_widthP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_width___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a141183220e8c42704e1e6aaa9c0e4906" class="target"></span>
+
void lv_obj_set_style_width(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv326lv_obj_set_style_min_widthP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv226lv_obj_set_style_min_widthP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_min_width___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a2e67a715259653428b4fd0e1783099a0" class="target"></span>void lv_obj_set_style_min_width(struct _lv_obj_t *obj, lv_coord_t value, lv_style_select[https://docs.lvgl.io/8.2/overview/style.html#_CPPv422lv_obj_set_style_widthP9_lv_obj_t10lv_coord_t19lv_style_selector_t]or_t selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv426lv_obj_set_style_min_widthP9_lv_obj_t10lv_coord_t19lv_style_selector_t] <span id="_CPPv326lv_obj_set_style_min_widthP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv226lv_obj_set_style_min_widthP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_min_width___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a2e67a715259653428b4fd0e1783099a0" class="target"></span>
+
void lv_obj_set_style_min_width(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv326lv_obj_set_style_max_widthP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv226lv_obj_set_style_max_widthP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_max_width___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a6ee49aafbd59cc2824d701ee13a8a69b" class="target"></span>void lv_obj_set_style_max_width(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t[https://docs.lvgl.io/8.2/overview/style.html#_CPPv426lv_obj_set_style_min_widthP9_lv_obj_t10lv_coord_t19lv_style_selector_t] selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv426lv_obj_set_style_max_widthP9_lv_obj_t10lv_coord_t19lv_style_selector_t] <span id="_CPPv326lv_obj_set_style_max_widthP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv226lv_obj_set_style_max_widthP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_max_width___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a6ee49aafbd59cc2824d701ee13a8a69b" class="target"></span>
+
void lv_obj_set_style_max_width(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv323lv_obj_set_style_heightP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv223lv_obj_set_style_heightP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_height___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1ae60a3295d133702c7922a86f0ccd81dc" class="target"></span>void lv_obj_set_style_height(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t se[https://docs.lvgl.io/8.2/overview/style.html#_CPPv426lv_obj_set_style_max_widthP9_lv_obj_t10lv_coord_t19lv_style_selector_t]lector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv423lv_obj_set_style_heightP9_lv_obj_t10lv_coord_t19lv_style_selector_t] <span id="_CPPv323lv_obj_set_style_heightP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv223lv_obj_set_style_heightP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_height___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1ae60a3295d133702c7922a86f0ccd81dc" class="target"></span>
+
void lv_obj_set_style_height(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv327lv_obj_set_style_min_heightP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv227lv_obj_set_style_min_heightP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_min_height___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a285214a453b3cc301acf248fa3dd4b8f" class="target"></span>void lv_obj_set_style_min_height(struct _lv_obj_t *obj, lv_coord_t value, lv_style_select[https://docs.lvgl.io/8.2/overview/style.html#_CPPv423lv_obj_set_style_heightP9_lv_obj_t10lv_coord_t19lv_style_selector_t]or_t selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_set_style_min_heightP9_lv_obj_t10lv_coord_t19lv_style_selector_t] <span id="_CPPv327lv_obj_set_style_min_heightP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv227lv_obj_set_style_min_heightP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_min_height___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a285214a453b3cc301acf248fa3dd4b8f" class="target"></span>
+
void lv_obj_set_style_min_height(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv327lv_obj_set_style_max_heightP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv227lv_obj_set_style_max_heightP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_max_height___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a17d1998c23fbd952e4fcf11f060d0fa0" class="target"></span>void lv_obj_set_style_max_height(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_set_style_min_heightP9_lv_obj_t10lv_coord_t19lv_style_selector_t] selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_set_style_max_heightP9_lv_obj_t10lv_coord_t19lv_style_selector_t] <span id="_CPPv327lv_obj_set_style_max_heightP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv227lv_obj_set_style_max_heightP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_max_height___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a17d1998c23fbd952e4fcf11f060d0fa0" class="target"></span>
+
void lv_obj_set_style_max_height(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv318lv_obj_set_style_xP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv218lv_obj_set_style_xP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_x___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a8f1cc1f25c9213198f61d114c6a4d54a" class="target"></span>void lv_obj_set_style_x(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_set_style_max_heightP9_lv_obj_t10lv_coord_t19lv_style_selector_t])[https://docs.lvgl.io/8.2/overview/style.html#_CPPv418lv_obj_set_style_xP9_lv_obj_t10lv_coord_t19lv_style_selector_t] <span id="_CPPv318lv_obj_set_style_xP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv218lv_obj_set_style_xP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_x___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a8f1cc1f25c9213198f61d114c6a4d54a" class="target"></span>
+
void lv_obj_set_style_x(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv318lv_obj_set_style_yP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv218lv_obj_set_style_yP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_y___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a6b04fb5d42e97f80177f681360cd8056" class="target"></span>void lv_obj_set_style_y(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t[https://docs.lvgl.io/8.2/overview/style.html#_CPPv418lv_obj_set_style_xP9_lv_obj_t10lv_coord_t19lv_style_selector_t] selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv418lv_obj_set_style_yP9_lv_obj_t10lv_coord_t19lv_style_selector_t] <span id="_CPPv318lv_obj_set_style_yP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv218lv_obj_set_style_yP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_y___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a6b04fb5d42e97f80177f681360cd8056" class="target"></span>
+
void lv_obj_set_style_y(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv322lv_obj_set_style_alignP9_lv_obj_t10lv_align_t19lv_style_selector_t"></span><span id="_CPPv222lv_obj_set_style_alignP9_lv_obj_t10lv_align_t19lv_style_selector_t"></span><span id="lv_obj_set_style_align___lv_obj_tP.lv_align_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1affcb26cd306452123c22e1c565098c15" class="target"></span>void lv_obj_set_style_align(struct _lv_obj_t *obj, lv_align_t value, lv_style_select[https://docs.lvgl.io/8.2/overview/style.html#_CPPv418lv_obj_set_style_yP9_lv_obj_t10lv_coord_t19lv_style_selector_t]or_t selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv422lv_obj_set_style_alignP9_lv_obj_t10lv_align_t19lv_style_selector_t] <span id="_CPPv322lv_obj_set_style_alignP9_lv_obj_t10lv_align_t19lv_style_selector_t"></span><span id="_CPPv222lv_obj_set_style_alignP9_lv_obj_t10lv_align_t19lv_style_selector_t"></span><span id="lv_obj_set_style_align___lv_obj_tP.lv_align_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1affcb26cd306452123c22e1c565098c15" class="target"></span>
+
void lv_obj_set_style_align(struct _lv_obj_t *obj, lv_align_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv332lv_obj_set_style_transform_widthP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv232lv_obj_set_style_transform_widthP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_transform_width___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a9fc4640644c3cd73f49fc4215a52e533" class="target"></span>void lv_obj_set_style_transform_width(struct _lv_obj_t *obj, lv_coord_t value, lv_style_[https://docs.lvgl.io/8.2/overview/style.html#_CPPv422lv_obj_set_style_alignP9_lv_obj_t10lv_align_t19lv_style_selector_t]selector_t selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv432lv_obj_set_style_transform_widthP9_lv_obj_t10lv_coord_t19lv_style_selector_t] <span id="_CPPv332lv_obj_set_style_transform_widthP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv232lv_obj_set_style_transform_widthP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_transform_width___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a9fc4640644c3cd73f49fc4215a52e533" class="target"></span>
+
void lv_obj_set_style_transform_width(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv333lv_obj_set_style_transform_heightP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv233lv_obj_set_style_transform_heightP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_transform_height___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1ad98a3acb8940f64d7dd03491dfe96284" class="target"></span>void lv_obj_set_style_transform_height(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_[https://docs.lvgl.io/8.2/overview/style.html#_CPPv432lv_obj_set_style_transform_widthP9_lv_obj_t10lv_coord_t19lv_style_selector_t]t selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv433lv_obj_set_style_transform_heightP9_lv_obj_t10lv_coord_t19lv_style_selector_t] <span id="_CPPv333lv_obj_set_style_transform_heightP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv233lv_obj_set_style_transform_heightP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_transform_height___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1ad98a3acb8940f64d7dd03491dfe96284" class="target"></span>
+
void lv_obj_set_style_transform_height(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv328lv_obj_set_style_translate_xP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv228lv_obj_set_style_translate_xP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_translate_x___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a8d5fd2456ad8778da3514a1719ae25ac" class="target"></span>void lv_obj_set_style_translate_x(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t sele[https://docs.lvgl.io/8.2/overview/style.html#_CPPv433lv_obj_set_style_transform_heightP9_lv_obj_t10lv_coord_t19lv_style_selector_t]ctor)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv428lv_obj_set_style_translate_xP9_lv_obj_t10lv_coord_t19lv_style_selector_t] <span id="_CPPv328lv_obj_set_style_translate_xP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv228lv_obj_set_style_translate_xP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_translate_x___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a8d5fd2456ad8778da3514a1719ae25ac" class="target"></span>
+
void lv_obj_set_style_translate_x(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv328lv_obj_set_style_translate_yP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv228lv_obj_set_style_translate_yP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_translate_y___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a69defa8754fe61d956abeba21153d7a1" class="target"></span>void lv_obj_set_style_translate_y(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t[https://docs.lvgl.io/8.2/overview/style.html#_CPPv428lv_obj_set_style_translate_xP9_lv_obj_t10lv_coord_t19lv_style_selector_t] selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv428lv_obj_set_style_translate_yP9_lv_obj_t10lv_coord_t19lv_style_selector_t] <span id="_CPPv328lv_obj_set_style_translate_yP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv228lv_obj_set_style_translate_yP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_translate_y___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a69defa8754fe61d956abeba21153d7a1" class="target"></span>
+
void lv_obj_set_style_translate_y(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv331lv_obj_set_style_transform_zoomP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv231lv_obj_set_style_transform_zoomP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_transform_zoom___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a7e91405b5d5bcd26536da6bb85db7efe" class="target"></span>void lv_obj_set_style_transform_zoom(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selecto[https://docs.lvgl.io/8.2/overview/style.html#_CPPv428lv_obj_set_style_translate_yP9_lv_obj_t10lv_coord_t19lv_style_selector_t]r_t selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv431lv_obj_set_style_transform_zoomP9_lv_obj_t10lv_coord_t19lv_style_selector_t] <span id="_CPPv331lv_obj_set_style_transform_zoomP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv231lv_obj_set_style_transform_zoomP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_transform_zoom___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a7e91405b5d5bcd26536da6bb85db7efe" class="target"></span>
+
void lv_obj_set_style_transform_zoom(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv332lv_obj_set_style_transform_angleP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv232lv_obj_set_style_transform_angleP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_transform_angle___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1ad57464056932b7beb7a4df93fb1a70b8" class="target"></span>void lv_obj_set_style_transform_angle(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_[https://docs.lvgl.io/8.2/overview/style.html#_CPPv431lv_obj_set_style_transform_zoomP9_lv_obj_t10lv_coord_t19lv_style_selector_t]t selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv432lv_obj_set_style_transform_angleP9_lv_obj_t10lv_coord_t19lv_style_selector_t] <span id="_CPPv332lv_obj_set_style_transform_angleP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv232lv_obj_set_style_transform_angleP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_transform_angle___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1ad57464056932b7beb7a4df93fb1a70b8" class="target"></span>
+
void lv_obj_set_style_transform_angle(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv324lv_obj_set_style_pad_topP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv224lv_obj_set_style_pad_topP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_pad_top___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1ad04e2b60b0edeb0475f145cff5c9e789" class="target"></span>void lv_obj_set_style_pad_top(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selecto[https://docs.lvgl.io/8.2/overview/style.html#_CPPv432lv_obj_set_style_transform_angleP9_lv_obj_t10lv_coord_t19lv_style_selector_t]r)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv424lv_obj_set_style_pad_topP9_lv_obj_t10lv_coord_t19lv_style_selector_t] <span id="_CPPv324lv_obj_set_style_pad_topP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv224lv_obj_set_style_pad_topP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_pad_top___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1ad04e2b60b0edeb0475f145cff5c9e789" class="target"></span>
+
void lv_obj_set_style_pad_top(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv327lv_obj_set_style_pad_bottomP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv227lv_obj_set_style_pad_bottomP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_pad_bottom___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1aba03d1e5afece663332527a97b59cbaf" class="target"></span>void lv_obj_set_style_pad_bottom(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selecto[https://docs.lvgl.io/8.2/overview/style.html#_CPPv424lv_obj_set_style_pad_topP9_lv_obj_t10lv_coord_t19lv_style_selector_t]r_t selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_set_style_pad_bottomP9_lv_obj_t10lv_coord_t19lv_style_selector_t] <span id="_CPPv327lv_obj_set_style_pad_bottomP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv227lv_obj_set_style_pad_bottomP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_pad_bottom___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1aba03d1e5afece663332527a97b59cbaf" class="target"></span>
+
void lv_obj_set_style_pad_bottom(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv325lv_obj_set_style_pad_leftP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv225lv_obj_set_style_pad_leftP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_pad_left___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1aa3bee719bcb2086f03605a15acac00c8" class="target"></span>void lv_obj_set_style_pad_left(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t s[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_set_style_pad_bottomP9_lv_obj_t10lv_coord_t19lv_style_selector_t]elector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv425lv_obj_set_style_pad_leftP9_lv_obj_t10lv_coord_t19lv_style_selector_t] <span id="_CPPv325lv_obj_set_style_pad_leftP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv225lv_obj_set_style_pad_leftP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_pad_left___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1aa3bee719bcb2086f03605a15acac00c8" class="target"></span>
+
void lv_obj_set_style_pad_left(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv326lv_obj_set_style_pad_rightP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv226lv_obj_set_style_pad_rightP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_pad_right___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1ac2b450f30a244ca932783f660b318ff8" class="target"></span>void lv_obj_set_style_pad_right(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_[https://docs.lvgl.io/8.2/overview/style.html#_CPPv425lv_obj_set_style_pad_leftP9_lv_obj_t10lv_coord_t19lv_style_selector_t]t selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv426lv_obj_set_style_pad_rightP9_lv_obj_t10lv_coord_t19lv_style_selector_t] <span id="_CPPv326lv_obj_set_style_pad_rightP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv226lv_obj_set_style_pad_rightP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_pad_right___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1ac2b450f30a244ca932783f660b318ff8" class="target"></span>
+
void lv_obj_set_style_pad_right(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv324lv_obj_set_style_pad_rowP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv224lv_obj_set_style_pad_rowP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_pad_row___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a2d7731b26bc564c0b7b0afaccccfa2d0" class="target"></span>void lv_obj_set_style_pad_row(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t s[https://docs.lvgl.io/8.2/overview/style.html#_CPPv426lv_obj_set_style_pad_rightP9_lv_obj_t10lv_coord_t19lv_style_selector_t]elector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv424lv_obj_set_style_pad_rowP9_lv_obj_t10lv_coord_t19lv_style_selector_t] <span id="_CPPv324lv_obj_set_style_pad_rowP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv224lv_obj_set_style_pad_rowP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_pad_row___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a2d7731b26bc564c0b7b0afaccccfa2d0" class="target"></span>
+
void lv_obj_set_style_pad_row(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv327lv_obj_set_style_pad_columnP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv227lv_obj_set_style_pad_columnP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_pad_column___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a122204a8b1a7483770707d6a465f48ce" class="target"></span>void lv_obj_set_style_pad_column(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selecto[https://docs.lvgl.io/8.2/overview/style.html#_CPPv424lv_obj_set_style_pad_rowP9_lv_obj_t10lv_coord_t19lv_style_selector_t]r_t selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_set_style_pad_columnP9_lv_obj_t10lv_coord_t19lv_style_selector_t] <span id="_CPPv327lv_obj_set_style_pad_columnP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv227lv_obj_set_style_pad_columnP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_pad_column___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a122204a8b1a7483770707d6a465f48ce" class="target"></span>
+
void lv_obj_set_style_pad_column(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv325lv_obj_set_style_bg_colorP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="_CPPv225lv_obj_set_style_bg_colorP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="lv_obj_set_style_bg_color___lv_obj_tP.lv_color_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1ad43e3aca730f12fc68093301a6adfa73" class="target"></span>void lv_obj_set_style_bg_color(struct _lv_obj_t *obj, lv_color_t value, lv_style_selector_t s[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_set_style_pad_columnP9_lv_obj_t10lv_coord_t19lv_style_selector_t]elector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv425lv_obj_set_style_bg_colorP9_lv_obj_t10lv_color_t19lv_style_selector_t] <span id="_CPPv325lv_obj_set_style_bg_colorP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="_CPPv225lv_obj_set_style_bg_colorP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="lv_obj_set_style_bg_color___lv_obj_tP.lv_color_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1ad43e3aca730f12fc68093301a6adfa73" class="target"></span>
+
void lv_obj_set_style_bg_color(struct _lv_obj_t *obj, lv_color_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv334lv_obj_set_style_bg_color_filteredP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="_CPPv234lv_obj_set_style_bg_color_filteredP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="lv_obj_set_style_bg_color_filtered___lv_obj_tP.lv_color_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1aedb92692fadce9bdb054301291c2f937" class="target"></span>void lv_obj_set_style_bg_color_filtered(struct _lv_obj_t *obj, lv_color_t value, lv_style_s[https://docs.lvgl.io/8.2/overview/style.html#_CPPv425lv_obj_set_style_bg_colorP9_lv_obj_t10lv_color_t19lv_style_selector_t]elector_t selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv434lv_obj_set_style_bg_color_filteredP9_lv_obj_t10lv_color_t19lv_style_selector_t] <span id="_CPPv334lv_obj_set_style_bg_color_filteredP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="_CPPv234lv_obj_set_style_bg_color_filteredP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="lv_obj_set_style_bg_color_filtered___lv_obj_tP.lv_color_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1aedb92692fadce9bdb054301291c2f937" class="target"></span>
+
void lv_obj_set_style_bg_color_filtered(struct _lv_obj_t *obj, lv_color_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv323lv_obj_set_style_bg_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t"></span><span id="_CPPv223lv_obj_set_style_bg_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t"></span><span id="lv_obj_set_style_bg_opa___lv_obj_tP.lv_opa_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a2d39882412a8ea65486b999b02a14a47" class="target"></span>void lv_obj_set_style_bg_opa(struct _lv_obj_t *obj, lv_opa_t value, lv_style_selector_t selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv423lv_obj_set_style_bg_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t] <span id="_CPPv323lv_obj_set_style_bg_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t"></span><span id="_CPPv223lv_obj_set_style_bg_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t"></span><span id="lv_obj_set_style_bg_opa___lv_obj_tP.lv_opa_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a2d39882412a8ea65486b999b02a14a47" class="target"></span> [https://docs.lvgl.io/8.2/overview/style.html#_CPPv434lv_obj_set_style_bg_color_filteredP9_lv_obj_t10lv_color_t19lv_style_selector_t]
+
void lv_obj_set_style_bg_opa(struct _lv_obj_t *obj, lv_opa_t value, lv_style_selector_t selector)
 
:
 
:
  
; <span id="_CPPv330lv_obj_set_style_bg_grad_colorP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="_CPPv230lv_obj_set_style_bg_grad_colorP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="lv_obj_set_style_bg_grad_color___lv_obj_tP.lv_color_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a4283a7a91b8f33bacd259fbe89978afa" class="target"></span>void lv_obj_set_style_bg_grad_color(struct _lv_obj_t *obj, lv_color_t value, lv_style_s[https://docs.lvgl.io/8.2/overview/style.html#_CPPv423lv_obj_set_style_bg_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t]elector_t selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv430lv_obj_set_style_bg_grad_colorP9_lv_obj_t10lv_color_t19lv_style_selector_t] <span id="_CPPv330lv_obj_set_style_bg_grad_colorP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="_CPPv230lv_obj_set_style_bg_grad_colorP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="lv_obj_set_style_bg_grad_color___lv_obj_tP.lv_color_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a4283a7a91b8f33bacd259fbe89978afa" class="target"></span>
+
void lv_obj_set_style_bg_grad_color(struct _lv_obj_t *obj, lv_color_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv339lv_obj_set_style_bg_grad_color_filteredP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="_CPPv239lv_obj_set_style_bg_grad_color_filteredP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="lv_obj_set_style_bg_grad_color_filtered___lv_obj_tP.lv_color_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a8074821fe2be3308618bedfc06e3a250" class="target"></span>void lv_obj_set_style_bg_grad_color_filtered(struct _lv_obj_t *obj, lv_color_t value, lv_style_s[https://docs.lvgl.io/8.2/overview/style.html#_CPPv430lv_obj_set_style_bg_grad_colorP9_lv_obj_t10lv_color_t19lv_style_selector_t]elector_t selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv439lv_obj_set_style_bg_grad_color_filteredP9_lv_obj_t10lv_color_t19lv_style_selector_t] <span id="_CPPv339lv_obj_set_style_bg_grad_color_filteredP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="_CPPv239lv_obj_set_style_bg_grad_color_filteredP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="lv_obj_set_style_bg_grad_color_filtered___lv_obj_tP.lv_color_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a8074821fe2be3308618bedfc06e3a250" class="target"></span>
+
void lv_obj_set_style_bg_grad_color_filtered(struct _lv_obj_t *obj, lv_color_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv328lv_obj_set_style_bg_grad_dirP9_lv_obj_t13lv_grad_dir_t19lv_style_selector_t"></span><span id="_CPPv228lv_obj_set_style_bg_grad_dirP9_lv_obj_t13lv_grad_dir_t19lv_style_selector_t"></span><span id="lv_obj_set_style_bg_grad_dir___lv_obj_tP.lv_grad_dir_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a869ee1b3c21ce2e0588537fd44e3e4d8" class="target"></span>void lv_obj_set_style_bg_grad_dir(struct _lv_obj_t *obj, lv_grad_dir_t value, lv_style_selector_t selecto[https://docs.lvgl.io/8.2/overview/style.html#_CPPv439lv_obj_set_style_bg_grad_color_filteredP9_lv_obj_t10lv_color_t19lv_style_selector_t]r)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv428lv_obj_set_style_bg_grad_dirP9_lv_obj_t13lv_grad_dir_t19lv_style_selector_t] <span id="_CPPv328lv_obj_set_style_bg_grad_dirP9_lv_obj_t13lv_grad_dir_t19lv_style_selector_t"></span><span id="_CPPv228lv_obj_set_style_bg_grad_dirP9_lv_obj_t13lv_grad_dir_t19lv_style_selector_t"></span><span id="lv_obj_set_style_bg_grad_dir___lv_obj_tP.lv_grad_dir_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a869ee1b3c21ce2e0588537fd44e3e4d8" class="target"></span>
+
void lv_obj_set_style_bg_grad_dir(struct _lv_obj_t *obj, lv_grad_dir_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv329lv_obj_set_style_bg_main_stopP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv229lv_obj_set_style_bg_main_stopP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_bg_main_stop___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1aef2183a28c14d67f22018d42f3a8d8c6" class="target"></span>void lv_obj_set_style_bg_main_stop(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t s[https://docs.lvgl.io/8.2/overview/style.html#_CPPv428lv_obj_set_style_bg_grad_dirP9_lv_obj_t13lv_grad_dir_t19lv_style_selector_t]elector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv429lv_obj_set_style_bg_main_stopP9_lv_obj_t10lv_coord_t19lv_style_selector_t] <span id="_CPPv329lv_obj_set_style_bg_main_stopP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv229lv_obj_set_style_bg_main_stopP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_bg_main_stop___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1aef2183a28c14d67f22018d42f3a8d8c6" class="target"></span>
+
void lv_obj_set_style_bg_main_stop(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv329lv_obj_set_style_bg_grad_stopP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv229lv_obj_set_style_bg_grad_stopP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_bg_grad_stop___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a42d8fbce7e20ad20c8621b147731ae3f" class="target"></span>void lv_obj_set_style_bg_grad_stop(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t[https://docs.lvgl.io/8.2/overview/style.html#_CPPv429lv_obj_set_style_bg_main_stopP9_lv_obj_t10lv_coord_t19lv_style_selector_t] selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv429lv_obj_set_style_bg_grad_stopP9_lv_obj_t10lv_coord_t19lv_style_selector_t] <span id="_CPPv329lv_obj_set_style_bg_grad_stopP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv229lv_obj_set_style_bg_grad_stopP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_bg_grad_stop___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a42d8fbce7e20ad20c8621b147731ae3f" class="target"></span>
+
void lv_obj_set_style_bg_grad_stop(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv324lv_obj_set_style_bg_gradP9_lv_obj_tPK13lv_grad_dsc_t19lv_style_selector_t"></span><span id="_CPPv224lv_obj_set_style_bg_gradP9_lv_obj_tPK13lv_grad_dsc_t19lv_style_selector_t"></span><span id="lv_obj_set_style_bg_grad___lv_obj_tP.lv_grad_dsc_tCP.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a35a1bd07c594854298fb820f41df38fb" class="target"></span>void lv_obj_set_style_bg_grad(struct _lv_obj_t *obj, const lv_grad_dsc_t *value, lv_style_selec[https://docs.lvgl.io/8.2/overview/style.html#_CPPv429lv_obj_set_style_bg_grad_stopP9_lv_obj_t10lv_coord_t19lv_style_selector_t]tor_t selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv424lv_obj_set_style_bg_gradP9_lv_obj_tPK13lv_grad_dsc_t19lv_style_selector_t] <span id="_CPPv324lv_obj_set_style_bg_gradP9_lv_obj_tPK13lv_grad_dsc_t19lv_style_selector_t"></span><span id="_CPPv224lv_obj_set_style_bg_gradP9_lv_obj_tPK13lv_grad_dsc_t19lv_style_selector_t"></span><span id="lv_obj_set_style_bg_grad___lv_obj_tP.lv_grad_dsc_tCP.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a35a1bd07c594854298fb820f41df38fb" class="target"></span>
+
void lv_obj_set_style_bg_grad(struct _lv_obj_t *obj, const lv_grad_dsc_t *value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv331lv_obj_set_style_bg_dither_modeP9_lv_obj_t16lv_dither_mode_t19lv_style_selector_t"></span><span id="_CPPv231lv_obj_set_style_bg_dither_modeP9_lv_obj_t16lv_dither_mode_t19lv_style_selector_t"></span><span id="lv_obj_set_style_bg_dither_mode___lv_obj_tP.lv_dither_mode_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a176f55425a92728f9bf56ac706876bce" class="target"></span>void lv_obj_set_style_bg_dither_mode(struct _lv_obj_t *obj, lv_dither_mode_t value, lv_style_selecto[https://docs.lvgl.io/8.2/overview/style.html#_CPPv424lv_obj_set_style_bg_gradP9_lv_obj_tPK13lv_grad_dsc_t19lv_style_selector_t]r_t selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv431lv_obj_set_style_bg_dither_modeP9_lv_obj_t16lv_dither_mode_t19lv_style_selector_t] <span id="_CPPv331lv_obj_set_style_bg_dither_modeP9_lv_obj_t16lv_dither_mode_t19lv_style_selector_t"></span><span id="_CPPv231lv_obj_set_style_bg_dither_modeP9_lv_obj_t16lv_dither_mode_t19lv_style_selector_t"></span><span id="lv_obj_set_style_bg_dither_mode___lv_obj_tP.lv_dither_mode_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a176f55425a92728f9bf56ac706876bce" class="target"></span>
+
void lv_obj_set_style_bg_dither_mode(struct _lv_obj_t *obj, lv_dither_mode_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv327lv_obj_set_style_bg_img_srcP9_lv_obj_tPKv19lv_style_selector_t"></span><span id="_CPPv227lv_obj_set_style_bg_img_srcP9_lv_obj_tPKv19lv_style_selector_t"></span><span id="lv_obj_set_style_bg_img_src___lv_obj_tP.voidCP.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a3b7ac11ddf3646f3a7088548aa2c831e" class="target"></span>void lv_obj_set_style_bg_img_src(struct _lv_obj_t *obj, const void *value, lv_style_selector_t selector[https://docs.lvgl.io/8.2/overview/style.html#_CPPv431lv_obj_set_style_bg_dither_modeP9_lv_obj_t16lv_dither_mode_t19lv_style_selector_t])[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_set_style_bg_img_srcP9_lv_obj_tPKv19lv_style_selector_t] <span id="_CPPv327lv_obj_set_style_bg_img_srcP9_lv_obj_tPKv19lv_style_selector_t"></span><span id="_CPPv227lv_obj_set_style_bg_img_srcP9_lv_obj_tPKv19lv_style_selector_t"></span><span id="lv_obj_set_style_bg_img_src___lv_obj_tP.voidCP.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a3b7ac11ddf3646f3a7088548aa2c831e" class="target"></span>
+
void lv_obj_set_style_bg_img_src(struct _lv_obj_t *obj, const void *value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv327lv_obj_set_style_bg_img_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t"></span><span id="_CPPv227lv_obj_set_style_bg_img_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t"></span><span id="lv_obj_set_style_bg_img_opa___lv_obj_tP.lv_opa_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a78b1ba950469fd70f9cd1d8b5c29f10d" class="target"></span>void lv_obj_set_style_bg_img_opa(struct _lv_obj_t *obj, lv_opa_t value, lv_style_selector_t se[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_set_style_bg_img_srcP9_lv_obj_tPKv19lv_style_selector_t]lector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_set_style_bg_img_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t] <span id="_CPPv327lv_obj_set_style_bg_img_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t"></span><span id="_CPPv227lv_obj_set_style_bg_img_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t"></span><span id="lv_obj_set_style_bg_img_opa___lv_obj_tP.lv_opa_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a78b1ba950469fd70f9cd1d8b5c29f10d" class="target"></span>
+
void lv_obj_set_style_bg_img_opa(struct _lv_obj_t *obj, lv_opa_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv331lv_obj_set_style_bg_img_recolorP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="_CPPv231lv_obj_set_style_bg_img_recolorP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="lv_obj_set_style_bg_img_recolor___lv_obj_tP.lv_color_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1aa583ab80b6274b072134acbb2ab497a0" class="target"></span>void lv_obj_set_style_bg_img_recolor(struct _lv_obj_t *obj, lv_color_t value, lv_style_sele[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_set_style_bg_img_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t]ctor_t selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv431lv_obj_set_style_bg_img_recolorP9_lv_obj_t10lv_color_t19lv_style_selector_t] <span id="_CPPv331lv_obj_set_style_bg_img_recolorP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="_CPPv231lv_obj_set_style_bg_img_recolorP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="lv_obj_set_style_bg_img_recolor___lv_obj_tP.lv_color_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1aa583ab80b6274b072134acbb2ab497a0" class="target"></span>
+
void lv_obj_set_style_bg_img_recolor(struct _lv_obj_t *obj, lv_color_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv340lv_obj_set_style_bg_img_recolor_filteredP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="_CPPv240lv_obj_set_style_bg_img_recolor_filteredP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="lv_obj_set_style_bg_img_recolor_filtered___lv_obj_tP.lv_color_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a637c01399e17134c74e50ee6fb31e48f" class="target"></span>void lv_obj_set_style_bg_img_recolor_filtered(struct _lv_obj_t *obj, lv_color_t value, lv_style_s[https://docs.lvgl.io/8.2/overview/style.html#_CPPv431lv_obj_set_style_bg_img_recolorP9_lv_obj_t10lv_color_t19lv_style_selector_t]elector_t selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv440lv_obj_set_style_bg_img_recolor_filteredP9_lv_obj_t10lv_color_t19lv_style_selector_t] <span id="_CPPv340lv_obj_set_style_bg_img_recolor_filteredP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="_CPPv240lv_obj_set_style_bg_img_recolor_filteredP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="lv_obj_set_style_bg_img_recolor_filtered___lv_obj_tP.lv_color_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a637c01399e17134c74e50ee6fb31e48f" class="target"></span>
+
void lv_obj_set_style_bg_img_recolor_filtered(struct _lv_obj_t *obj, lv_color_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv335lv_obj_set_style_bg_img_recolor_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t"></span><span id="_CPPv235lv_obj_set_style_bg_img_recolor_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t"></span><span id="lv_obj_set_style_bg_img_recolor_opa___lv_obj_tP.lv_opa_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1aacc04caa47dc322d7546eb4dee8b270f" class="target"></span>void lv_obj_set_style_bg_img_recolor_opa(struct _lv_obj_t *obj, lv_opa_t value, lv_style_selector_t select[https://docs.lvgl.io/8.2/overview/style.html#_CPPv440lv_obj_set_style_bg_img_recolor_filteredP9_lv_obj_t10lv_color_t19lv_style_selector_t]or)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv435lv_obj_set_style_bg_img_recolor_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t] <span id="_CPPv335lv_obj_set_style_bg_img_recolor_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t"></span><span id="_CPPv235lv_obj_set_style_bg_img_recolor_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t"></span><span id="lv_obj_set_style_bg_img_recolor_opa___lv_obj_tP.lv_opa_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1aacc04caa47dc322d7546eb4dee8b270f" class="target"></span>
+
void lv_obj_set_style_bg_img_recolor_opa(struct _lv_obj_t *obj, lv_opa_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv329lv_obj_set_style_bg_img_tiledP9_lv_obj_tb19lv_style_selector_t"></span><span id="_CPPv229lv_obj_set_style_bg_img_tiledP9_lv_obj_tb19lv_style_selector_t"></span><span id="lv_obj_set_style_bg_img_tiled___lv_obj_tP.b.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a238a25fee73ecef6150410830da090ed" class="target"></span>void lv_obj_set_style_bg_img_tiled(struct _lv_obj_t *obj, bool value, lv_style_selector_t selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv435lv_obj_set_style_bg_img_recolor_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t][https://docs.lvgl.io/8.2/overview/style.html#_CPPv429lv_obj_set_style_bg_img_tiledP9_lv_obj_tb19lv_style_selector_t] <span id="_CPPv329lv_obj_set_style_bg_img_tiledP9_lv_obj_tb19lv_style_selector_t"></span><span id="_CPPv229lv_obj_set_style_bg_img_tiledP9_lv_obj_tb19lv_style_selector_t"></span><span id="lv_obj_set_style_bg_img_tiled___lv_obj_tP.b.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a238a25fee73ecef6150410830da090ed" class="target"></span>
+
void lv_obj_set_style_bg_img_tiled(struct _lv_obj_t *obj, bool value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv329lv_obj_set_style_border_colorP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="_CPPv229lv_obj_set_style_border_colorP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="lv_obj_set_style_border_color___lv_obj_tP.lv_color_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a5c9c8bb76cd569612b34636d8a293710" class="target"></span>void lv_obj_set_style_border_color(struct _lv_obj_t *obj, lv_color_t value, lv_style_sele[https://docs.lvgl.io/8.2/overview/style.html#_CPPv429lv_obj_set_style_bg_img_tiledP9_lv_obj_tb19lv_style_selector_t]ctor_t selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv429lv_obj_set_style_border_colorP9_lv_obj_t10lv_color_t19lv_style_selector_t] <span id="_CPPv329lv_obj_set_style_border_colorP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="_CPPv229lv_obj_set_style_border_colorP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="lv_obj_set_style_border_color___lv_obj_tP.lv_color_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a5c9c8bb76cd569612b34636d8a293710" class="target"></span>
+
void lv_obj_set_style_border_color(struct _lv_obj_t *obj, lv_color_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv338lv_obj_set_style_border_color_filteredP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="_CPPv238lv_obj_set_style_border_color_filteredP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="lv_obj_set_style_border_color_filtered___lv_obj_tP.lv_color_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1af9d13e07997b90c294489db08200acb8" class="target"></span>void lv_obj_set_style_border_color_filtered(struct _lv_obj_t *obj, lv_color_t value, lv_style_s[https://docs.lvgl.io/8.2/overview/style.html#_CPPv429lv_obj_set_style_border_colorP9_lv_obj_t10lv_color_t19lv_style_selector_t]elector_t selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv438lv_obj_set_style_border_color_filteredP9_lv_obj_t10lv_color_t19lv_style_selector_t] <span id="_CPPv338lv_obj_set_style_border_color_filteredP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="_CPPv238lv_obj_set_style_border_color_filteredP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="lv_obj_set_style_border_color_filtered___lv_obj_tP.lv_color_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1af9d13e07997b90c294489db08200acb8" class="target"></span>
+
void lv_obj_set_style_border_color_filtered(struct _lv_obj_t *obj, lv_color_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv327lv_obj_set_style_border_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t"></span><span id="_CPPv227lv_obj_set_style_border_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t"></span><span id="lv_obj_set_style_border_opa___lv_obj_tP.lv_opa_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a3f8958a2a7123334fcd61caf55fde920" class="target"></span>void lv_obj_set_style_border_opa(struct _lv_obj_t *obj, lv_opa_t value, lv_style_selector_t selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_set_style_border_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t] <span id="_CPPv327lv_obj_set_style_border_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t"></span><span id="_CPPv227lv_obj_set_style_border_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t"></span><span id="lv_obj_set_style_border_opa___lv_obj_tP.lv_opa_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a3f8958a2a7123334fcd61caf55fde920" class="target"></span> [https://docs.lvgl.io/8.2/overview/style.html#_CPPv438lv_obj_set_style_border_color_filteredP9_lv_obj_t10lv_color_t19lv_style_selector_t]
+
void lv_obj_set_style_border_opa(struct _lv_obj_t *obj, lv_opa_t value, lv_style_selector_t selector)
 
:
 
:
  
; <span id="_CPPv329lv_obj_set_style_border_widthP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv229lv_obj_set_style_border_widthP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_border_width___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a3bf0357ecdf2acbae2a8e3ee59c4fddd" class="target"></span>void lv_obj_set_style_border_width(struct _lv_obj_t *obj, lv_coord_t value, lv_style_select[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_set_style_border_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t]or_t selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv429lv_obj_set_style_border_widthP9_lv_obj_t10lv_coord_t19lv_style_selector_t] <span id="_CPPv329lv_obj_set_style_border_widthP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv229lv_obj_set_style_border_widthP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_border_width___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a3bf0357ecdf2acbae2a8e3ee59c4fddd" class="target"></span>
+
void lv_obj_set_style_border_width(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv328lv_obj_set_style_border_sideP9_lv_obj_t16lv_border_side_t19lv_style_selector_t"></span><span id="_CPPv228lv_obj_set_style_border_sideP9_lv_obj_t16lv_border_side_t19lv_style_selector_t"></span><span id="lv_obj_set_style_border_side___lv_obj_tP.lv_border_side_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a5fc73eb77947b4845a8b4b6558330876" class="target"></span>void lv_obj_set_style_border_side(struct _lv_obj_t *obj, lv_border_side_t value, lv_style_selec[https://docs.lvgl.io/8.2/overview/style.html#_CPPv429lv_obj_set_style_border_widthP9_lv_obj_t10lv_coord_t19lv_style_selector_t]tor_t selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv428lv_obj_set_style_border_sideP9_lv_obj_t16lv_border_side_t19lv_style_selector_t] <span id="_CPPv328lv_obj_set_style_border_sideP9_lv_obj_t16lv_border_side_t19lv_style_selector_t"></span><span id="_CPPv228lv_obj_set_style_border_sideP9_lv_obj_t16lv_border_side_t19lv_style_selector_t"></span><span id="lv_obj_set_style_border_side___lv_obj_tP.lv_border_side_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a5fc73eb77947b4845a8b4b6558330876" class="target"></span>
+
void lv_obj_set_style_border_side(struct _lv_obj_t *obj, lv_border_side_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv328lv_obj_set_style_border_postP9_lv_obj_tb19lv_style_selector_t"></span><span id="_CPPv228lv_obj_set_style_border_postP9_lv_obj_tb19lv_style_selector_t"></span><span id="lv_obj_set_style_border_post___lv_obj_tP.b.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a97cfb9dd4af4cd2cfe55f3d88480e693" class="target"></span>void lv_obj_set_style_border_post(struct _lv_obj_t *obj, bool value, lv_style_selector_t selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv428lv_obj_set_style_border_postP9_lv_obj_tb19lv_style_selector_t] [https://docs.lvgl.io/8.2/overview/style.html#_CPPv428lv_obj_set_style_border_sideP9_lv_obj_t16lv_border_side_t19lv_style_selector_t]<span id="_CPPv328lv_obj_set_style_border_postP9_lv_obj_tb19lv_style_selector_t"></span><span id="_CPPv228lv_obj_set_style_border_postP9_lv_obj_tb19lv_style_selector_t"></span><span id="lv_obj_set_style_border_post___lv_obj_tP.b.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a97cfb9dd4af4cd2cfe55f3d88480e693" class="target"></span>
+
void lv_obj_set_style_border_post(struct _lv_obj_t *obj, bool value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv330lv_obj_set_style_outline_widthP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv230lv_obj_set_style_outline_widthP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_outline_width___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1abc5184df6b4ac88f4dc82efe5a359e79" class="target"></span>void lv_obj_set_style_outline_width(struct _lv_obj_t *obj, lv_coord_t value, lv_style_se[https://docs.lvgl.io/8.2/overview/style.html#_CPPv428lv_obj_set_style_border_postP9_lv_obj_tb19lv_style_selector_t]lector_t selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv430lv_obj_set_style_outline_widthP9_lv_obj_t10lv_coord_t19lv_style_selector_t] <span id="_CPPv330lv_obj_set_style_outline_widthP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv230lv_obj_set_style_outline_widthP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_outline_width___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1abc5184df6b4ac88f4dc82efe5a359e79" class="target"></span>
+
void lv_obj_set_style_outline_width(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv330lv_obj_set_style_outline_colorP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="_CPPv230lv_obj_set_style_outline_colorP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="lv_obj_set_style_outline_color___lv_obj_tP.lv_color_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a7cd409c7356e6f4d72a7cac85e209ac3" class="target"></span>void lv_obj_set_style_outline_color(struct _lv_obj_t *obj, lv_color_t value, lv_style_selector_t[https://docs.lvgl.io/8.2/overview/style.html#_CPPv430lv_obj_set_style_outline_widthP9_lv_obj_t10lv_coord_t19lv_style_selector_t] selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv430lv_obj_set_style_outline_colorP9_lv_obj_t10lv_color_t19lv_style_selector_t] <span id="_CPPv330lv_obj_set_style_outline_colorP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="_CPPv230lv_obj_set_style_outline_colorP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="lv_obj_set_style_outline_color___lv_obj_tP.lv_color_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a7cd409c7356e6f4d72a7cac85e209ac3" class="target"></span>
+
void lv_obj_set_style_outline_color(struct _lv_obj_t *obj, lv_color_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv339lv_obj_set_style_outline_color_filteredP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="_CPPv239lv_obj_set_style_outline_color_filteredP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="lv_obj_set_style_outline_color_filtered___lv_obj_tP.lv_color_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a243e1300cfcd60e4fcbef0fa83fa0e32" class="target"></span>void lv_obj_set_style_outline_color_filtered(struct _lv_obj_t *obj, lv_color_t value, lv_style_s[https://docs.lvgl.io/8.2/overview/style.html#_CPPv430lv_obj_set_style_outline_colorP9_lv_obj_t10lv_color_t19lv_style_selector_t]elector_t selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv439lv_obj_set_style_outline_color_filteredP9_lv_obj_t10lv_color_t19lv_style_selector_t] <span id="_CPPv339lv_obj_set_style_outline_color_filteredP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="_CPPv239lv_obj_set_style_outline_color_filteredP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="lv_obj_set_style_outline_color_filtered___lv_obj_tP.lv_color_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a243e1300cfcd60e4fcbef0fa83fa0e32" class="target"></span>
+
void lv_obj_set_style_outline_color_filtered(struct _lv_obj_t *obj, lv_color_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv328lv_obj_set_style_outline_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t"></span><span id="_CPPv228lv_obj_set_style_outline_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t"></span><span id="lv_obj_set_style_outline_opa___lv_obj_tP.lv_opa_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1ad551b7bd9870a978e0116a75d8960045" class="target"></span>void lv_obj_set_style_outline_opa(struct _lv_obj_t *obj, lv_opa_t value, lv_style_selector_t selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv428lv_obj_set_style_outline_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t] <span id="_CPPv328lv_obj_set_style_outline_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t"></span><span id="_CPPv228lv_obj_set_style_outline_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t"></span><span id="lv_obj_set_style_outline_opa___lv_obj_tP.lv_opa_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1ad551b7bd9870a978e0116a75d8960045" class="target"></span> [https://docs.lvgl.io/8.2/overview/style.html#_CPPv439lv_obj_set_style_outline_color_filteredP9_lv_obj_t10lv_color_t19lv_style_selector_t]
+
void lv_obj_set_style_outline_opa(struct _lv_obj_t *obj, lv_opa_t value, lv_style_selector_t selector)
 
:
 
:
  
; <span id="_CPPv328lv_obj_set_style_outline_padP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv228lv_obj_set_style_outline_padP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_outline_pad___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a360cabb4042972bfab03a552f27d4b29" class="target"></span>void lv_obj_set_style_outline_pad(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector[https://docs.lvgl.io/8.2/overview/style.html#_CPPv428lv_obj_set_style_outline_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t]_t selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv428lv_obj_set_style_outline_padP9_lv_obj_t10lv_coord_t19lv_style_selector_t] <span id="_CPPv328lv_obj_set_style_outline_padP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv228lv_obj_set_style_outline_padP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_outline_pad___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a360cabb4042972bfab03a552f27d4b29" class="target"></span>
+
void lv_obj_set_style_outline_pad(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv329lv_obj_set_style_shadow_widthP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv229lv_obj_set_style_shadow_widthP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_shadow_width___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1ac03b4d031f4691994d6d7f8caf26d4e4" class="target"></span>void lv_obj_set_style_shadow_width(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_[https://docs.lvgl.io/8.2/overview/style.html#_CPPv428lv_obj_set_style_outline_padP9_lv_obj_t10lv_coord_t19lv_style_selector_t]t selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv429lv_obj_set_style_shadow_widthP9_lv_obj_t10lv_coord_t19lv_style_selector_t] <span id="_CPPv329lv_obj_set_style_shadow_widthP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv229lv_obj_set_style_shadow_widthP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_shadow_width___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1ac03b4d031f4691994d6d7f8caf26d4e4" class="target"></span>
+
void lv_obj_set_style_shadow_width(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv329lv_obj_set_style_shadow_ofs_xP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv229lv_obj_set_style_shadow_ofs_xP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_shadow_ofs_x___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a228c5ce0a6f263453768e9b09f9d3294" class="target"></span>void lv_obj_set_style_shadow_ofs_x(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t[https://docs.lvgl.io/8.2/overview/style.html#_CPPv429lv_obj_set_style_shadow_widthP9_lv_obj_t10lv_coord_t19lv_style_selector_t] selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv429lv_obj_set_style_shadow_ofs_xP9_lv_obj_t10lv_coord_t19lv_style_selector_t] <span id="_CPPv329lv_obj_set_style_shadow_ofs_xP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv229lv_obj_set_style_shadow_ofs_xP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_shadow_ofs_x___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a228c5ce0a6f263453768e9b09f9d3294" class="target"></span>
+
void lv_obj_set_style_shadow_ofs_x(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv329lv_obj_set_style_shadow_ofs_yP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv229lv_obj_set_style_shadow_ofs_yP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_shadow_ofs_y___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a488861a021a18d5c915bb50247b95392" class="target"></span>void lv_obj_set_style_shadow_ofs_y(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t[https://docs.lvgl.io/8.2/overview/style.html#_CPPv429lv_obj_set_style_shadow_ofs_xP9_lv_obj_t10lv_coord_t19lv_style_selector_t] selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv429lv_obj_set_style_shadow_ofs_yP9_lv_obj_t10lv_coord_t19lv_style_selector_t] <span id="_CPPv329lv_obj_set_style_shadow_ofs_yP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv229lv_obj_set_style_shadow_ofs_yP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_shadow_ofs_y___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a488861a021a18d5c915bb50247b95392" class="target"></span>
+
void lv_obj_set_style_shadow_ofs_y(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv330lv_obj_set_style_shadow_spreadP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv230lv_obj_set_style_shadow_spreadP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_shadow_spread___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a34d4a2bd9f0642ec79f364a875dddfbd" class="target"></span>void lv_obj_set_style_shadow_spread(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_[https://docs.lvgl.io/8.2/overview/style.html#_CPPv429lv_obj_set_style_shadow_ofs_yP9_lv_obj_t10lv_coord_t19lv_style_selector_t]t selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv430lv_obj_set_style_shadow_spreadP9_lv_obj_t10lv_coord_t19lv_style_selector_t] <span id="_CPPv330lv_obj_set_style_shadow_spreadP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv230lv_obj_set_style_shadow_spreadP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_shadow_spread___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a34d4a2bd9f0642ec79f364a875dddfbd" class="target"></span>
+
void lv_obj_set_style_shadow_spread(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv329lv_obj_set_style_shadow_colorP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="_CPPv229lv_obj_set_style_shadow_colorP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="lv_obj_set_style_shadow_color___lv_obj_tP.lv_color_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1aacd5375c91deee558c74228a7bbec083" class="target"></span>void lv_obj_set_style_shadow_color(struct _lv_obj_t *obj, lv_color_t value, lv_style_selector_t [https://docs.lvgl.io/8.2/overview/style.html#_CPPv430lv_obj_set_style_shadow_spreadP9_lv_obj_t10lv_coord_t19lv_style_selector_t]selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv429lv_obj_set_style_shadow_colorP9_lv_obj_t10lv_color_t19lv_style_selector_t] <span id="_CPPv329lv_obj_set_style_shadow_colorP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="_CPPv229lv_obj_set_style_shadow_colorP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="lv_obj_set_style_shadow_color___lv_obj_tP.lv_color_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1aacd5375c91deee558c74228a7bbec083" class="target"></span>
+
void lv_obj_set_style_shadow_color(struct _lv_obj_t *obj, lv_color_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv338lv_obj_set_style_shadow_color_filteredP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="_CPPv238lv_obj_set_style_shadow_color_filteredP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="lv_obj_set_style_shadow_color_filtered___lv_obj_tP.lv_color_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1abec063a9ea76948829260cc4b5a393f0" class="target"></span>void lv_obj_set_style_shadow_color_filtered(struct _lv_obj_t *obj, lv_color_t value, lv_style_s[https://docs.lvgl.io/8.2/overview/style.html#_CPPv429lv_obj_set_style_shadow_colorP9_lv_obj_t10lv_color_t19lv_style_selector_t]elector_t selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv438lv_obj_set_style_shadow_color_filteredP9_lv_obj_t10lv_color_t19lv_style_selector_t] <span id="_CPPv338lv_obj_set_style_shadow_color_filteredP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="_CPPv238lv_obj_set_style_shadow_color_filteredP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="lv_obj_set_style_shadow_color_filtered___lv_obj_tP.lv_color_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1abec063a9ea76948829260cc4b5a393f0" class="target"></span>
+
void lv_obj_set_style_shadow_color_filtered(struct _lv_obj_t *obj, lv_color_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv327lv_obj_set_style_shadow_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t"></span><span id="_CPPv227lv_obj_set_style_shadow_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t"></span><span id="lv_obj_set_style_shadow_opa___lv_obj_tP.lv_opa_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a30fb7122d649a134b1eaac2720cad4f3" class="target"></span>void lv_obj_set_style_shadow_opa(struct _lv_obj_t *obj, lv_opa_t value, lv_style_selector_t selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_set_style_shadow_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t] <span id="_CPPv327lv_obj_set_style_shadow_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t"></span><span id="_CPPv227lv_obj_set_style_shadow_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t"></span><span id="lv_obj_set_style_shadow_opa___lv_obj_tP.lv_opa_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a30fb7122d649a134b1eaac2720cad4f3" class="target"></span> [https://docs.lvgl.io/8.2/overview/style.html#_CPPv438lv_obj_set_style_shadow_color_filteredP9_lv_obj_t10lv_color_t19lv_style_selector_t]
+
void lv_obj_set_style_shadow_opa(struct _lv_obj_t *obj, lv_opa_t value, lv_style_selector_t selector)
 
:
 
:
  
; <span id="_CPPv324lv_obj_set_style_img_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t"></span><span id="_CPPv224lv_obj_set_style_img_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t"></span><span id="lv_obj_set_style_img_opa___lv_obj_tP.lv_opa_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1aa5520fa4bda28e34b46c24b7429613d1" class="target"></span>void lv_obj_set_style_img_opa(struct _lv_obj_t *obj, lv_opa_t value, lv_style_selector_t se[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_set_style_shadow_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t]lector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv424lv_obj_set_style_img_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t] <span id="_CPPv324lv_obj_set_style_img_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t"></span><span id="_CPPv224lv_obj_set_style_img_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t"></span><span id="lv_obj_set_style_img_opa___lv_obj_tP.lv_opa_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1aa5520fa4bda28e34b46c24b7429613d1" class="target"></span>
+
void lv_obj_set_style_img_opa(struct _lv_obj_t *obj, lv_opa_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv328lv_obj_set_style_img_recolorP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="_CPPv228lv_obj_set_style_img_recolorP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="lv_obj_set_style_img_recolor___lv_obj_tP.lv_color_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a0e98e492ed9b263563924f619d74b94a" class="target"></span>void lv_obj_set_style_img_recolor(struct _lv_obj_t *obj, lv_color_t value, lv_style_sele[https://docs.lvgl.io/8.2/overview/style.html#_CPPv424lv_obj_set_style_img_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t]ctor_t selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv428lv_obj_set_style_img_recolorP9_lv_obj_t10lv_color_t19lv_style_selector_t] <span id="_CPPv328lv_obj_set_style_img_recolorP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="_CPPv228lv_obj_set_style_img_recolorP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="lv_obj_set_style_img_recolor___lv_obj_tP.lv_color_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a0e98e492ed9b263563924f619d74b94a" class="target"></span>
+
void lv_obj_set_style_img_recolor(struct _lv_obj_t *obj, lv_color_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv337lv_obj_set_style_img_recolor_filteredP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="_CPPv237lv_obj_set_style_img_recolor_filteredP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="lv_obj_set_style_img_recolor_filtered___lv_obj_tP.lv_color_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a8c4abeedac765a3fbe9383a26ca76163" class="target"></span>void lv_obj_set_style_img_recolor_filtered(struct _lv_obj_t *obj, lv_color_t value, lv_style_s[https://docs.lvgl.io/8.2/overview/style.html#_CPPv428lv_obj_set_style_img_recolorP9_lv_obj_t10lv_color_t19lv_style_selector_t]elector_t selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv437lv_obj_set_style_img_recolor_filteredP9_lv_obj_t10lv_color_t19lv_style_selector_t] <span id="_CPPv337lv_obj_set_style_img_recolor_filteredP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="_CPPv237lv_obj_set_style_img_recolor_filteredP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="lv_obj_set_style_img_recolor_filtered___lv_obj_tP.lv_color_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a8c4abeedac765a3fbe9383a26ca76163" class="target"></span>
+
void lv_obj_set_style_img_recolor_filtered(struct _lv_obj_t *obj, lv_color_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv332lv_obj_set_style_img_recolor_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t"></span><span id="_CPPv232lv_obj_set_style_img_recolor_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t"></span><span id="lv_obj_set_style_img_recolor_opa___lv_obj_tP.lv_opa_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1afdc937157bbe21cacce1c43d1da6b188" class="target"></span>void lv_obj_set_style_img_recolor_opa(struct _lv_obj_t *obj, lv_opa_t value, lv_style_selector_t select[https://docs.lvgl.io/8.2/overview/style.html#_CPPv437lv_obj_set_style_img_recolor_filteredP9_lv_obj_t10lv_color_t19lv_style_selector_t]or)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv432lv_obj_set_style_img_recolor_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t] <span id="_CPPv332lv_obj_set_style_img_recolor_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t"></span><span id="_CPPv232lv_obj_set_style_img_recolor_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t"></span><span id="lv_obj_set_style_img_recolor_opa___lv_obj_tP.lv_opa_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1afdc937157bbe21cacce1c43d1da6b188" class="target"></span>
+
void lv_obj_set_style_img_recolor_opa(struct _lv_obj_t *obj, lv_opa_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv327lv_obj_set_style_line_widthP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv227lv_obj_set_style_line_widthP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_line_width___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a5598590023640c8a9d15c22c02b72521" class="target"></span>void lv_obj_set_style_line_width(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t se[https://docs.lvgl.io/8.2/overview/style.html#_CPPv432lv_obj_set_style_img_recolor_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t]lector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_set_style_line_widthP9_lv_obj_t10lv_coord_t19lv_style_selector_t] <span id="_CPPv327lv_obj_set_style_line_widthP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv227lv_obj_set_style_line_widthP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_line_width___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a5598590023640c8a9d15c22c02b72521" class="target"></span>
+
void lv_obj_set_style_line_width(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv332lv_obj_set_style_line_dash_widthP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv232lv_obj_set_style_line_dash_widthP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_line_dash_width___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a8627997ecdf703baf4cda8a756579083" class="target"></span>void lv_obj_set_style_line_dash_width(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selec[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_set_style_line_widthP9_lv_obj_t10lv_coord_t19lv_style_selector_t]tor_t selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv432lv_obj_set_style_line_dash_widthP9_lv_obj_t10lv_coord_t19lv_style_selector_t] <span id="_CPPv332lv_obj_set_style_line_dash_widthP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv232lv_obj_set_style_line_dash_widthP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_line_dash_width___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a8627997ecdf703baf4cda8a756579083" class="target"></span>
+
void lv_obj_set_style_line_dash_width(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv330lv_obj_set_style_line_dash_gapP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv230lv_obj_set_style_line_dash_gapP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_line_dash_gap___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a9fc376cef0ccbf8343798e503be2b052" class="target"></span>void lv_obj_set_style_line_dash_gap(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t s[https://docs.lvgl.io/8.2/overview/style.html#_CPPv432lv_obj_set_style_line_dash_widthP9_lv_obj_t10lv_coord_t19lv_style_selector_t]elector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv430lv_obj_set_style_line_dash_gapP9_lv_obj_t10lv_coord_t19lv_style_selector_t] <span id="_CPPv330lv_obj_set_style_line_dash_gapP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv230lv_obj_set_style_line_dash_gapP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_line_dash_gap___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a9fc376cef0ccbf8343798e503be2b052" class="target"></span>
+
void lv_obj_set_style_line_dash_gap(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv329lv_obj_set_style_line_roundedP9_lv_obj_tb19lv_style_selector_t"></span><span id="_CPPv229lv_obj_set_style_line_roundedP9_lv_obj_tb19lv_style_selector_t"></span><span id="lv_obj_set_style_line_rounded___lv_obj_tP.b.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a07e7ffdae7a5008a87eabb417b039ac2" class="target"></span>void lv_obj_set_style_line_rounded(struct _lv_obj_t *obj, bool value, lv_style_selector_t select[https://docs.lvgl.io/8.2/overview/style.html#_CPPv430lv_obj_set_style_line_dash_gapP9_lv_obj_t10lv_coord_t19lv_style_selector_t]or)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv429lv_obj_set_style_line_roundedP9_lv_obj_tb19lv_style_selector_t] <span id="_CPPv329lv_obj_set_style_line_roundedP9_lv_obj_tb19lv_style_selector_t"></span><span id="_CPPv229lv_obj_set_style_line_roundedP9_lv_obj_tb19lv_style_selector_t"></span><span id="lv_obj_set_style_line_rounded___lv_obj_tP.b.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a07e7ffdae7a5008a87eabb417b039ac2" class="target"></span>
+
void lv_obj_set_style_line_rounded(struct _lv_obj_t *obj, bool value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv327lv_obj_set_style_line_colorP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="_CPPv227lv_obj_set_style_line_colorP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="lv_obj_set_style_line_color___lv_obj_tP.lv_color_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1ac9d49f7a47b7cfbbda72db897a40e7d6" class="target"></span>void lv_obj_set_style_line_color(struct _lv_obj_t *obj, lv_color_t value, lv_style_select[https://docs.lvgl.io/8.2/overview/style.html#_CPPv429lv_obj_set_style_line_roundedP9_lv_obj_tb19lv_style_selector_t]or_t selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_set_style_line_colorP9_lv_obj_t10lv_color_t19lv_style_selector_t] <span id="_CPPv327lv_obj_set_style_line_colorP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="_CPPv227lv_obj_set_style_line_colorP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="lv_obj_set_style_line_color___lv_obj_tP.lv_color_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1ac9d49f7a47b7cfbbda72db897a40e7d6" class="target"></span>
+
void lv_obj_set_style_line_color(struct _lv_obj_t *obj, lv_color_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv336lv_obj_set_style_line_color_filteredP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="_CPPv236lv_obj_set_style_line_color_filteredP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="lv_obj_set_style_line_color_filtered___lv_obj_tP.lv_color_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1aa2a9a74d9eeb09f7518a0fae2268dcaf" class="target"></span>void lv_obj_set_style_line_color_filtered(struct _lv_obj_t *obj, lv_color_t value, lv_style_s[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_set_style_line_colorP9_lv_obj_t10lv_color_t19lv_style_selector_t]elector_t selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv436lv_obj_set_style_line_color_filteredP9_lv_obj_t10lv_color_t19lv_style_selector_t] <span id="_CPPv336lv_obj_set_style_line_color_filteredP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="_CPPv236lv_obj_set_style_line_color_filteredP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="lv_obj_set_style_line_color_filtered___lv_obj_tP.lv_color_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1aa2a9a74d9eeb09f7518a0fae2268dcaf" class="target"></span>
+
void lv_obj_set_style_line_color_filtered(struct _lv_obj_t *obj, lv_color_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv325lv_obj_set_style_line_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t"></span><span id="_CPPv225lv_obj_set_style_line_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t"></span><span id="lv_obj_set_style_line_opa___lv_obj_tP.lv_opa_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a4f821cc860ddf2371d0111a026415bc3" class="target"></span>void lv_obj_set_style_line_opa(struct _lv_obj_t *obj, lv_opa_t value, lv_style_selector_t selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv425lv_obj_set_style_line_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t] <span id="_CPPv325lv_obj_set_style_line_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t"></span><span id="_CPPv225lv_obj_set_style_line_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t"></span><span id="lv_obj_set_style_line_opa___lv_obj_tP.lv_opa_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a4f821cc860ddf2371d0111a026415bc3" class="target"></span> [https://docs.lvgl.io/8.2/overview/style.html#_CPPv436lv_obj_set_style_line_color_filteredP9_lv_obj_t10lv_color_t19lv_style_selector_t]
+
void lv_obj_set_style_line_opa(struct _lv_obj_t *obj, lv_opa_t value, lv_style_selector_t selector)
 
:
 
:
  
; <span id="_CPPv326lv_obj_set_style_arc_widthP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv226lv_obj_set_style_arc_widthP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_arc_width___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1ae519395524129274b43ff98d0714bde2" class="target"></span>void lv_obj_set_style_arc_width(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selecto[https://docs.lvgl.io/8.2/overview/style.html#_CPPv425lv_obj_set_style_line_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t]r_t selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv426lv_obj_set_style_arc_widthP9_lv_obj_t10lv_coord_t19lv_style_selector_t] <span id="_CPPv326lv_obj_set_style_arc_widthP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv226lv_obj_set_style_arc_widthP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_arc_width___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1ae519395524129274b43ff98d0714bde2" class="target"></span>
+
void lv_obj_set_style_arc_width(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv328lv_obj_set_style_arc_roundedP9_lv_obj_tb19lv_style_selector_t"></span><span id="_CPPv228lv_obj_set_style_arc_roundedP9_lv_obj_tb19lv_style_selector_t"></span><span id="lv_obj_set_style_arc_rounded___lv_obj_tP.b.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1ae7c2119c47d71f94bca572806103c9fc" class="target"></span>void lv_obj_set_style_arc_rounded(struct _lv_obj_t *obj, bool value, lv_style_selector_t sel[https://docs.lvgl.io/8.2/overview/style.html#_CPPv426lv_obj_set_style_arc_widthP9_lv_obj_t10lv_coord_t19lv_style_selector_t]ector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv428lv_obj_set_style_arc_roundedP9_lv_obj_tb19lv_style_selector_t] <span id="_CPPv328lv_obj_set_style_arc_roundedP9_lv_obj_tb19lv_style_selector_t"></span><span id="_CPPv228lv_obj_set_style_arc_roundedP9_lv_obj_tb19lv_style_selector_t"></span><span id="lv_obj_set_style_arc_rounded___lv_obj_tP.b.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1ae7c2119c47d71f94bca572806103c9fc" class="target"></span>
+
void lv_obj_set_style_arc_rounded(struct _lv_obj_t *obj, bool value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv326lv_obj_set_style_arc_colorP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="_CPPv226lv_obj_set_style_arc_colorP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="lv_obj_set_style_arc_color___lv_obj_tP.lv_color_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a47f9e29e8ccd04d3a3458029876b87cd" class="target"></span>void lv_obj_set_style_arc_color(struct _lv_obj_t *obj, lv_color_t value, lv_style_select[https://docs.lvgl.io/8.2/overview/style.html#_CPPv428lv_obj_set_style_arc_roundedP9_lv_obj_tb19lv_style_selector_t]or_t selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv426lv_obj_set_style_arc_colorP9_lv_obj_t10lv_color_t19lv_style_selector_t] <span id="_CPPv326lv_obj_set_style_arc_colorP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="_CPPv226lv_obj_set_style_arc_colorP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="lv_obj_set_style_arc_color___lv_obj_tP.lv_color_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a47f9e29e8ccd04d3a3458029876b87cd" class="target"></span>
+
void lv_obj_set_style_arc_color(struct _lv_obj_t *obj, lv_color_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv335lv_obj_set_style_arc_color_filteredP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="_CPPv235lv_obj_set_style_arc_color_filteredP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="lv_obj_set_style_arc_color_filtered___lv_obj_tP.lv_color_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1ac9305ff90142c8123d51958f1a5766b8" class="target"></span>void lv_obj_set_style_arc_color_filtered(struct _lv_obj_t *obj, lv_color_t value, lv_style_s[https://docs.lvgl.io/8.2/overview/style.html#_CPPv426lv_obj_set_style_arc_colorP9_lv_obj_t10lv_color_t19lv_style_selector_t]elector_t selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv435lv_obj_set_style_arc_color_filteredP9_lv_obj_t10lv_color_t19lv_style_selector_t] <span id="_CPPv335lv_obj_set_style_arc_color_filteredP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="_CPPv235lv_obj_set_style_arc_color_filteredP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="lv_obj_set_style_arc_color_filtered___lv_obj_tP.lv_color_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1ac9305ff90142c8123d51958f1a5766b8" class="target"></span>
+
void lv_obj_set_style_arc_color_filtered(struct _lv_obj_t *obj, lv_color_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv324lv_obj_set_style_arc_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t"></span><span id="_CPPv224lv_obj_set_style_arc_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t"></span><span id="lv_obj_set_style_arc_opa___lv_obj_tP.lv_opa_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a4ae1310426a5f8cf0ab0068a4f4c7c90" class="target"></span>void lv_obj_set_style_arc_opa(struct _lv_obj_t *obj, lv_opa_t value, lv_style_selector_t selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv424lv_obj_set_style_arc_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t] <span id="_CPPv324lv_obj_set_style_arc_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t"></span><span id="_CPPv224lv_obj_set_style_arc_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t"></span><span id="lv_obj_set_style_arc_opa___lv_obj_tP.lv_opa_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a4ae1310426a5f8cf0ab0068a4f4c7c90" class="target"></span> [https://docs.lvgl.io/8.2/overview/style.html#_CPPv435lv_obj_set_style_arc_color_filteredP9_lv_obj_t10lv_color_t19lv_style_selector_t]
+
void lv_obj_set_style_arc_opa(struct _lv_obj_t *obj, lv_opa_t value, lv_style_selector_t selector)
 
:
 
:
  
; <span id="_CPPv328lv_obj_set_style_arc_img_srcP9_lv_obj_tPKv19lv_style_selector_t"></span><span id="_CPPv228lv_obj_set_style_arc_img_srcP9_lv_obj_tPKv19lv_style_selector_t"></span><span id="lv_obj_set_style_arc_img_src___lv_obj_tP.voidCP.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1ac214d65b41e6bff064cb940b55c54185" class="target"></span>void lv_obj_set_style_arc_img_src(struct _lv_obj_t *obj, const void *value, lv_style_sel[https://docs.lvgl.io/8.2/overview/style.html#_CPPv424lv_obj_set_style_arc_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t]ector_t selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv428lv_obj_set_style_arc_img_srcP9_lv_obj_tPKv19lv_style_selector_t] <span id="_CPPv328lv_obj_set_style_arc_img_srcP9_lv_obj_tPKv19lv_style_selector_t"></span><span id="_CPPv228lv_obj_set_style_arc_img_srcP9_lv_obj_tPKv19lv_style_selector_t"></span><span id="lv_obj_set_style_arc_img_src___lv_obj_tP.voidCP.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1ac214d65b41e6bff064cb940b55c54185" class="target"></span>
+
void lv_obj_set_style_arc_img_src(struct _lv_obj_t *obj, const void *value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv327lv_obj_set_style_text_colorP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="_CPPv227lv_obj_set_style_text_colorP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="lv_obj_set_style_text_color___lv_obj_tP.lv_color_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a853fed007df2eb9428f1747eb2318a6c" class="target"></span>void lv_obj_set_style_text_color(struct _lv_obj_t *obj, lv_color_t value, lv_style_selector_t s[https://docs.lvgl.io/8.2/overview/style.html#_CPPv428lv_obj_set_style_arc_img_srcP9_lv_obj_tPKv19lv_style_selector_t]elector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_set_style_text_colorP9_lv_obj_t10lv_color_t19lv_style_selector_t] <span id="_CPPv327lv_obj_set_style_text_colorP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="_CPPv227lv_obj_set_style_text_colorP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="lv_obj_set_style_text_color___lv_obj_tP.lv_color_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a853fed007df2eb9428f1747eb2318a6c" class="target"></span>
+
void lv_obj_set_style_text_color(struct _lv_obj_t *obj, lv_color_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv336lv_obj_set_style_text_color_filteredP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="_CPPv236lv_obj_set_style_text_color_filteredP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="lv_obj_set_style_text_color_filtered___lv_obj_tP.lv_color_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a9f6a13fea545b25cac52dc7aa214e8b7" class="target"></span>void lv_obj_set_style_text_color_filtered(struct _lv_obj_t *obj, lv_color_t value, lv_style_s[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_set_style_text_colorP9_lv_obj_t10lv_color_t19lv_style_selector_t]elector_t selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv436lv_obj_set_style_text_color_filteredP9_lv_obj_t10lv_color_t19lv_style_selector_t] <span id="_CPPv336lv_obj_set_style_text_color_filteredP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="_CPPv236lv_obj_set_style_text_color_filteredP9_lv_obj_t10lv_color_t19lv_style_selector_t"></span><span id="lv_obj_set_style_text_color_filtered___lv_obj_tP.lv_color_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a9f6a13fea545b25cac52dc7aa214e8b7" class="target"></span>
+
void lv_obj_set_style_text_color_filtered(struct _lv_obj_t *obj, lv_color_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv325lv_obj_set_style_text_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t"></span><span id="_CPPv225lv_obj_set_style_text_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t"></span><span id="lv_obj_set_style_text_opa___lv_obj_tP.lv_opa_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a58106df3509ffe9935f55299b5414304" class="target"></span>void lv_obj_set_style_text_opa(struct _lv_obj_t *obj, lv_opa_t value, lv_style_selector_t selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv425lv_obj_set_style_text_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t] <span id="_CPPv325lv_obj_set_style_text_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t"></span><span id="_CPPv225lv_obj_set_style_text_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t"></span><span id="lv_obj_set_style_text_opa___lv_obj_tP.lv_opa_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a58106df3509ffe9935f55299b5414304" class="target"></span> [https://docs.lvgl.io/8.2/overview/style.html#_CPPv436lv_obj_set_style_text_color_filteredP9_lv_obj_t10lv_color_t19lv_style_selector_t]
+
void lv_obj_set_style_text_opa(struct _lv_obj_t *obj, lv_opa_t value, lv_style_selector_t selector)
 
:
 
:
  
; <span id="_CPPv326lv_obj_set_style_text_fontP9_lv_obj_tPK9lv_font_t19lv_style_selector_t"></span><span id="_CPPv226lv_obj_set_style_text_fontP9_lv_obj_tPK9lv_font_t19lv_style_selector_t"></span><span id="lv_obj_set_style_text_font___lv_obj_tP.lv_font_tCP.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a42f072823f804d4a6ad33507141c7125" class="target"></span>void lv_obj_set_style_text_font(struct _lv_obj_t *obj, const lv_font_t *value, lv_style_s[https://docs.lvgl.io/8.2/overview/style.html#_CPPv425lv_obj_set_style_text_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t]elector_t selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv426lv_obj_set_style_text_fontP9_lv_obj_tPK9lv_font_t19lv_style_selector_t] <span id="_CPPv326lv_obj_set_style_text_fontP9_lv_obj_tPK9lv_font_t19lv_style_selector_t"></span><span id="_CPPv226lv_obj_set_style_text_fontP9_lv_obj_tPK9lv_font_t19lv_style_selector_t"></span><span id="lv_obj_set_style_text_font___lv_obj_tP.lv_font_tCP.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a42f072823f804d4a6ad33507141c7125" class="target"></span>
+
void lv_obj_set_style_text_font(struct _lv_obj_t *obj, const lv_font_t *value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv334lv_obj_set_style_text_letter_spaceP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv234lv_obj_set_style_text_letter_spaceP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_text_letter_space___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1aaded1dc57609d635fe755b2a0ab29ac3" class="target"></span>void lv_obj_set_style_text_letter_space(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector[https://docs.lvgl.io/8.2/overview/style.html#_CPPv426lv_obj_set_style_text_fontP9_lv_obj_tPK9lv_font_t19lv_style_selector_t]_t selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv434lv_obj_set_style_text_letter_spaceP9_lv_obj_t10lv_coord_t19lv_style_selector_t] <span id="_CPPv334lv_obj_set_style_text_letter_spaceP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv234lv_obj_set_style_text_letter_spaceP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_text_letter_space___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1aaded1dc57609d635fe755b2a0ab29ac3" class="target"></span>
+
void lv_obj_set_style_text_letter_space(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv332lv_obj_set_style_text_line_spaceP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv232lv_obj_set_style_text_line_spaceP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_text_line_space___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a8d1ce634ba0fb0d65779050e83f0d182" class="target"></span>void lv_obj_set_style_text_line_space(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t s[https://docs.lvgl.io/8.2/overview/style.html#_CPPv434lv_obj_set_style_text_letter_spaceP9_lv_obj_t10lv_coord_t19lv_style_selector_t]elector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv432lv_obj_set_style_text_line_spaceP9_lv_obj_t10lv_coord_t19lv_style_selector_t] <span id="_CPPv332lv_obj_set_style_text_line_spaceP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv232lv_obj_set_style_text_line_spaceP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_text_line_space___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a8d1ce634ba0fb0d65779050e83f0d182" class="target"></span>
+
void lv_obj_set_style_text_line_space(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv327lv_obj_set_style_text_decorP9_lv_obj_t15lv_text_decor_t19lv_style_selector_t"></span><span id="_CPPv227lv_obj_set_style_text_decorP9_lv_obj_t15lv_text_decor_t19lv_style_selector_t"></span><span id="lv_obj_set_style_text_decor___lv_obj_tP.lv_text_decor_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a6466d621b691b76a0cb0e0bfbcd98f69" class="target"></span>void lv_obj_set_style_text_decor(struct _lv_obj_t *obj, lv_text_decor_t value, lv_style_selector_t[https://docs.lvgl.io/8.2/overview/style.html#_CPPv432lv_obj_set_style_text_line_spaceP9_lv_obj_t10lv_coord_t19lv_style_selector_t] selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_set_style_text_decorP9_lv_obj_t15lv_text_decor_t19lv_style_selector_t] <span id="_CPPv327lv_obj_set_style_text_decorP9_lv_obj_t15lv_text_decor_t19lv_style_selector_t"></span><span id="_CPPv227lv_obj_set_style_text_decorP9_lv_obj_t15lv_text_decor_t19lv_style_selector_t"></span><span id="lv_obj_set_style_text_decor___lv_obj_tP.lv_text_decor_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a6466d621b691b76a0cb0e0bfbcd98f69" class="target"></span>
+
void lv_obj_set_style_text_decor(struct _lv_obj_t *obj, lv_text_decor_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv327lv_obj_set_style_text_alignP9_lv_obj_t15lv_text_align_t19lv_style_selector_t"></span><span id="_CPPv227lv_obj_set_style_text_alignP9_lv_obj_t15lv_text_align_t19lv_style_selector_t"></span><span id="lv_obj_set_style_text_align___lv_obj_tP.lv_text_align_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a6b8799341461c601c0f0d372d8071cfb" class="target"></span>void lv_obj_set_style_text_align(struct _lv_obj_t *obj, lv_text_align_t value, lv_style_selector_t[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_set_style_text_decorP9_lv_obj_t15lv_text_decor_t19lv_style_selector_t] selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_set_style_text_alignP9_lv_obj_t15lv_text_align_t19lv_style_selector_t] <span id="_CPPv327lv_obj_set_style_text_alignP9_lv_obj_t15lv_text_align_t19lv_style_selector_t"></span><span id="_CPPv227lv_obj_set_style_text_alignP9_lv_obj_t15lv_text_align_t19lv_style_selector_t"></span><span id="lv_obj_set_style_text_align___lv_obj_tP.lv_text_align_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a6b8799341461c601c0f0d372d8071cfb" class="target"></span>
+
void lv_obj_set_style_text_align(struct _lv_obj_t *obj, lv_text_align_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv323lv_obj_set_style_radiusP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv223lv_obj_set_style_radiusP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_radius___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1ada8f2812fc1766a048878922c732e42b" class="target"></span>void lv_obj_set_style_radius(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_set_style_text_alignP9_lv_obj_t15lv_text_align_t19lv_style_selector_t])[https://docs.lvgl.io/8.2/overview/style.html#_CPPv423lv_obj_set_style_radiusP9_lv_obj_t10lv_coord_t19lv_style_selector_t] <span id="_CPPv323lv_obj_set_style_radiusP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="_CPPv223lv_obj_set_style_radiusP9_lv_obj_t10lv_coord_t19lv_style_selector_t"></span><span id="lv_obj_set_style_radius___lv_obj_tP.lv_coord_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1ada8f2812fc1766a048878922c732e42b" class="target"></span>
+
void lv_obj_set_style_radius(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv328lv_obj_set_style_clip_cornerP9_lv_obj_tb19lv_style_selector_t"></span><span id="_CPPv228lv_obj_set_style_clip_cornerP9_lv_obj_tb19lv_style_selector_t"></span><span id="lv_obj_set_style_clip_corner___lv_obj_tP.b.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a1985ac7c9b7b563d11ac9fde5b41ffea" class="target"></span>void lv_obj_set_style_clip_corner(struct _lv_obj_t *obj, bool value, lv_style_selector_t [https://docs.lvgl.io/8.2/overview/style.html#_CPPv423lv_obj_set_style_radiusP9_lv_obj_t10lv_coord_t19lv_style_selector_t]selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv428lv_obj_set_style_clip_cornerP9_lv_obj_tb19lv_style_selector_t] <span id="_CPPv328lv_obj_set_style_clip_cornerP9_lv_obj_tb19lv_style_selector_t"></span><span id="_CPPv228lv_obj_set_style_clip_cornerP9_lv_obj_tb19lv_style_selector_t"></span><span id="lv_obj_set_style_clip_corner___lv_obj_tP.b.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a1985ac7c9b7b563d11ac9fde5b41ffea" class="target"></span>
+
void lv_obj_set_style_clip_corner(struct _lv_obj_t *obj, bool value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv320lv_obj_set_style_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t"></span><span id="_CPPv220lv_obj_set_style_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t"></span><span id="lv_obj_set_style_opa___lv_obj_tP.lv_opa_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a8ea571cc0de8933adb5b75d69889df0c" class="target"></span>void lv_obj_set_style_opa(struct _lv_obj_t *obj, lv_opa_t value, lv_style_selector_t sel[https://docs.lvgl.io/8.2/overview/style.html#_CPPv428lv_obj_set_style_clip_cornerP9_lv_obj_tb19lv_style_selector_t]ector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv420lv_obj_set_style_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t] <span id="_CPPv320lv_obj_set_style_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t"></span><span id="_CPPv220lv_obj_set_style_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t"></span><span id="lv_obj_set_style_opa___lv_obj_tP.lv_opa_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a8ea571cc0de8933adb5b75d69889df0c" class="target"></span>
+
void lv_obj_set_style_opa(struct _lv_obj_t *obj, lv_opa_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv333lv_obj_set_style_color_filter_dscP9_lv_obj_tPK21lv_color_filter_dsc_t19lv_style_selector_t"></span><span id="_CPPv233lv_obj_set_style_color_filter_dscP9_lv_obj_tPK21lv_color_filter_dsc_t19lv_style_selector_t"></span><span id="lv_obj_set_style_color_filter_dsc___lv_obj_tP.lv_color_filter_dsc_tCP.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a7dfa23e71dbcbc2d2062c304650d4e3f" class="target"></span>void lv_obj_set_style_color_filter_dsc(struct _lv_obj_t *obj, const lv_color_filter_[https://docs.lvgl.io/8.2/overview/style.html#_CPPv420lv_obj_set_style_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t]dsc_t *value, lv_style_selector_t selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv433lv_obj_set_style_color_filter_dscP9_lv_obj_tPK21lv_color_filter_dsc_t19lv_style_selector_t] <span id="_CPPv333lv_obj_set_style_color_filter_dscP9_lv_obj_tPK21lv_color_filter_dsc_t19lv_style_selector_t"></span><span id="_CPPv233lv_obj_set_style_color_filter_dscP9_lv_obj_tPK21lv_color_filter_dsc_t19lv_style_selector_t"></span><span id="lv_obj_set_style_color_filter_dsc___lv_obj_tP.lv_color_filter_dsc_tCP.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a7dfa23e71dbcbc2d2062c304650d4e3f" class="target"></span>
+
void lv_obj_set_style_color_filter_dsc(struct _lv_obj_t *obj, const lv_color_filter_dsc_t *value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv333lv_obj_set_style_color_filter_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t"></span><span id="_CPPv233lv_obj_set_style_color_filter_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t"></span><span id="lv_obj_set_style_color_filter_opa___lv_obj_tP.lv_opa_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a00a1346ae95c579e86ba04ac2cc75e41" class="target"></span>void lv_obj_set_style_color_filter_opa(struct _lv_obj_t *obj, lv_opa_t value, lv_style_selector_t selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv433lv_obj_set_style_color_filter_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t] <span id="_CPPv333lv_obj_set_style_color_filter_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t"></span><span id="_CPPv233lv_obj_set_style_color_filter_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t"></span><span id="lv_obj_set_style_color_filter_opa___lv_obj_tP.lv_opa_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a00a1346ae95c579e86ba04ac2cc75e41" class="target"></span>
+
void lv_obj_set_style_color_filter_opa(struct _lv_obj_t *obj, lv_opa_t value, lv_style_selector_t selector)  
 
:
 
:
  
[https://docs.lvgl.io/8.2/overview/style.html#_CPPv433lv_obj_set_style_color_filter_dscP9_lv_obj_tPK21lv_color_filter_dsc_t19lv_style_selector_t]
+
 
; <span id="_CPPv326lv_obj_set_style_anim_timeP9_lv_obj_t8uint32_t19lv_style_selector_t"></span><span id="_CPPv226lv_obj_set_style_anim_timeP9_lv_obj_t8uint32_t19lv_style_selector_t"></span><span id="lv_obj_set_style_anim_time___lv_obj_tP.uint32_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a939c4a7100749904c4706cee36d22ec7" class="target"></span>void lv_obj_set_style_anim_time(struct _lv_obj_t *obj, uint32_t value, lv_style_selector_t select[https://docs.lvgl.io/8.2/overview/style.html#_CPPv433lv_obj_set_style_color_filter_opaP9_lv_obj_t8lv_opa_t19lv_style_selector_t]or)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv426lv_obj_set_style_anim_timeP9_lv_obj_t8uint32_t19lv_style_selector_t] <span id="_CPPv326lv_obj_set_style_anim_timeP9_lv_obj_t8uint32_t19lv_style_selector_t"></span><span id="_CPPv226lv_obj_set_style_anim_timeP9_lv_obj_t8uint32_t19lv_style_selector_t"></span><span id="lv_obj_set_style_anim_time___lv_obj_tP.uint32_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a939c4a7100749904c4706cee36d22ec7" class="target"></span>
+
void lv_obj_set_style_anim_time(struct _lv_obj_t *obj, uint32_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv327lv_obj_set_style_anim_speedP9_lv_obj_t8uint32_t19lv_style_selector_t"></span><span id="_CPPv227lv_obj_set_style_anim_speedP9_lv_obj_t8uint32_t19lv_style_selector_t"></span><span id="lv_obj_set_style_anim_speed___lv_obj_tP.uint32_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1af315846508cff915355fd649877ea38d" class="target"></span>void lv_obj_set_style_anim_speed(struct _lv_obj_t *obj, uint32_t value, lv_style_selector_[https://docs.lvgl.io/8.2/overview/style.html#_CPPv426lv_obj_set_style_anim_timeP9_lv_obj_t8uint32_t19lv_style_selector_t]t selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_set_style_anim_speedP9_lv_obj_t8uint32_t19lv_style_selector_t] <span id="_CPPv327lv_obj_set_style_anim_speedP9_lv_obj_t8uint32_t19lv_style_selector_t"></span><span id="_CPPv227lv_obj_set_style_anim_speedP9_lv_obj_t8uint32_t19lv_style_selector_t"></span><span id="lv_obj_set_style_anim_speed___lv_obj_tP.uint32_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1af315846508cff915355fd649877ea38d" class="target"></span>
+
void lv_obj_set_style_anim_speed(struct _lv_obj_t *obj, uint32_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv327lv_obj_set_style_transitionP9_lv_obj_tPK25lv_style_transition_dsc_t19lv_style_selector_t"></span><span id="_CPPv227lv_obj_set_style_transitionP9_lv_obj_tPK25lv_style_transition_dsc_t19lv_style_selector_t"></span><span id="lv_obj_set_style_transition___lv_obj_tP.lv_style_transition_dsc_tCP.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1adc98259063614a4f24eee7c032682570" class="target"></span>void lv_obj_set_style_transition(struct _lv_obj_t *obj, const lv_style_transition_dsc_t *va[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_set_style_anim_speedP9_lv_obj_t8uint32_t19lv_style_selector_t]lue, lv_style_selector_t selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_set_style_transitionP9_lv_obj_tPK25lv_style_transition_dsc_t19lv_style_selector_t] <span id="_CPPv327lv_obj_set_style_transitionP9_lv_obj_tPK25lv_style_transition_dsc_t19lv_style_selector_t"></span><span id="_CPPv227lv_obj_set_style_transitionP9_lv_obj_tPK25lv_style_transition_dsc_t19lv_style_selector_t"></span><span id="lv_obj_set_style_transition___lv_obj_tP.lv_style_transition_dsc_tCP.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1adc98259063614a4f24eee7c032682570" class="target"></span>
+
void lv_obj_set_style_transition(struct _lv_obj_t *obj, const lv_style_transition_dsc_t *value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv327lv_obj_set_style_blend_modeP9_lv_obj_t15lv_blend_mode_t19lv_style_selector_t"></span><span id="_CPPv227lv_obj_set_style_blend_modeP9_lv_obj_t15lv_blend_mode_t19lv_style_selector_t"></span><span id="lv_obj_set_style_blend_mode___lv_obj_tP.lv_blend_mode_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a0ac55d559200aa1669c60fb372a39776" class="target"></span>void lv_obj_set_style_blend_mode(struct _lv_obj_t *obj, lv_blend_mode_t value, lv_style_selector_t selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_set_style_blend_modeP9_lv_obj_t15lv_blend_mode_t19lv_style_selector_t] <span id="_CPPv327lv_obj_set_style_blend_modeP9_lv_obj_t15lv_blend_mode_t19lv_style_selector_t"></span><span id="_CPPv227lv_obj_set_style_blend_modeP9_lv_obj_t15lv_blend_mode_t19lv_style_selector_t"></span><span id="lv_obj_set_style_blend_mode___lv_obj_tP.lv_blend_mode_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a0ac55d559200aa1669c60fb372a39776" class="target"></span>
+
void lv_obj_set_style_blend_mode(struct _lv_obj_t *obj, lv_blend_mode_t value, lv_style_selector_t selector)  
[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_set_style_transitionP9_lv_obj_tPK25lv_style_transition_dsc_t19lv_style_selector_t]
+
:   
  
; <span id="_CPPv323lv_obj_set_style_layoutP9_lv_obj_t8uint16_t19lv_style_selector_t"></span><span id="_CPPv223lv_obj_set_style_layoutP9_lv_obj_t8uint16_t19lv_style_selector_t"></span><span id="lv_obj_set_style_layout___lv_obj_tP.uint16_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a06e1b33fa1e54f22cf3218eced4e6eeb" class="target"></span>void lv_obj_set_style_layout(struct _lv_obj_t *obj, uint16_t value, lv_style_selector_t selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv423lv_obj_set_style_layoutP9_lv_obj_t8uint16_t19lv_style_selector_t][https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_obj_set_style_blend_modeP9_lv_obj_t15lv_blend_mode_t19lv_style_selector_t] <span id="_CPPv323lv_obj_set_style_layoutP9_lv_obj_t8uint16_t19lv_style_selector_t"></span><span id="_CPPv223lv_obj_set_style_layoutP9_lv_obj_t8uint16_t19lv_style_selector_t"></span><span id="lv_obj_set_style_layout___lv_obj_tP.uint16_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a06e1b33fa1e54f22cf3218eced4e6eeb" class="target"></span>
+
void lv_obj_set_style_layout(struct _lv_obj_t *obj, uint16_t value, lv_style_selector_t selector)  
 
:
 
:
  
; <span id="_CPPv325lv_obj_set_style_base_dirP9_lv_obj_t13lv_base_dir_t19lv_style_selector_t"></span><span id="_CPPv225lv_obj_set_style_base_dirP9_lv_obj_t13lv_base_dir_t19lv_style_selector_t"></span><span id="lv_obj_set_style_base_dir___lv_obj_tP.lv_base_dir_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a396d9c89478c37e2e57fcd8ef23854f5" class="target"></span>void lv_obj_set_style_base_dir(struct _lv_obj_t *obj, lv_base_dir_t value, lv_style_sel[https://docs.lvgl.io/8.2/overview/style.html#_CPPv423lv_obj_set_style_layoutP9_lv_obj_t8uint16_t19lv_style_selector_t]ector_t selector)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv425lv_obj_set_style_base_dirP9_lv_obj_t13lv_base_dir_t19lv_style_selector_t] <span id="_CPPv325lv_obj_set_style_base_dirP9_lv_obj_t13lv_base_dir_t19lv_style_selector_t"></span><span id="_CPPv225lv_obj_set_style_base_dirP9_lv_obj_t13lv_base_dir_t19lv_style_selector_t"></span><span id="lv_obj_set_style_base_dir___lv_obj_tP.lv_base_dir_t.lv_style_selector_t"></span><span id="lv__obj__style__gen_8h_1a396d9c89478c37e2e57fcd8ef23854f5" class="target"></span>
+
void lv_obj_set_style_base_dir(struct _lv_obj_t *obj, lv_base_dir_t value, lv_style_selector_t selector)  
 
:
 
:
  
1,490行目: 1,480行目:
 
Functions
 
Functions
  
; <span id="_CPPv318lv_style_set_widthP10lv_style_t10lv_coord_t"></span><span id="_CPPv218lv_style_set_widthP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_width__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1a0f602b8c4a1c42c2e2c63c0c6dabfc0c" class="target"></span>void lv_style_set_width(lv_style_t *style, lv_coord_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv418lv_style_set_widthP10lv_style_t10lv_coord_t] <span id="_CPPv318lv_style_set_widthP10lv_style_t10lv_coord_t"></span><span id="_CPPv218lv_style_set_widthP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_width__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1a0f602b8c4a1c42c2e2c63c0c6dabfc0c" class="target"></span>
+
void lv_style_set_width(lv_style_t *style, lv_coord_t value)  
 
:
 
:
  
; <span id="_CPPv322lv_style_set_min_widthP10lv_style_t10lv_coord_t"></span><span id="_CPPv222lv_style_set_min_widthP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_min_width__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1a9b6bc48793392bdcbd6c8f1cc3f0b68a" class="target"></span>void lv_style_set_min_width(lv_style_t *style, lv_[https://docs.lvgl.io/8.2/overview/style.html#_CPPv418lv_style_set_widthP10lv_style_t10lv_coord_t]coord_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv422lv_style_set_min_widthP10lv_style_t10lv_coord_t] <span id="_CPPv322lv_style_set_min_widthP10lv_style_t10lv_coord_t"></span><span id="_CPPv222lv_style_set_min_widthP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_min_width__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1a9b6bc48793392bdcbd6c8f1cc3f0b68a" class="target"></span>
+
void lv_style_set_min_width(lv_style_t *style, lv_coord_t value)  
 
:
 
:
  
; <span id="_CPPv322lv_style_set_max_widthP10lv_style_t10lv_coord_t"></span><span id="_CPPv222lv_style_set_max_widthP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_max_width__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1a31e806cdf31ad4ec7a4c75e82cae1457" class="target"></span>void lv_style_set_max_width(lv_style_t *style, lv_coor[https://docs.lvgl.io/8.2/overview/style.html#_CPPv422lv_style_set_min_widthP10lv_style_t10lv_coord_t]d_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv422lv_style_set_max_widthP10lv_style_t10lv_coord_t] <span id="_CPPv322lv_style_set_max_widthP10lv_style_t10lv_coord_t"></span><span id="_CPPv222lv_style_set_max_widthP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_max_width__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1a31e806cdf31ad4ec7a4c75e82cae1457" class="target"></span>
+
void lv_style_set_max_width(lv_style_t *style, lv_coord_t value)  
 
:
 
:
  
; <span id="_CPPv319lv_style_set_heightP10lv_style_t10lv_coord_t"></span><span id="_CPPv219lv_style_set_heightP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_height__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1ac7c3319dc4b18e3848684f3c4ec45b4f" class="target"></span>void lv_style_set_height(lv_style_t *style, lv_coord_t[https://docs.lvgl.io/8.2/overview/style.html#_CPPv422lv_style_set_max_widthP10lv_style_t10lv_coord_t] value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv419lv_style_set_heightP10lv_style_t10lv_coord_t] <span id="_CPPv319lv_style_set_heightP10lv_style_t10lv_coord_t"></span><span id="_CPPv219lv_style_set_heightP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_height__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1ac7c3319dc4b18e3848684f3c4ec45b4f" class="target"></span>
+
void lv_style_set_height(lv_style_t *style, lv_coord_t value)  
 
:
 
:
  
; <span id="_CPPv323lv_style_set_min_heightP10lv_style_t10lv_coord_t"></span><span id="_CPPv223lv_style_set_min_heightP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_min_height__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1ae4ec7343a97acafae42e7a873af2e8c4" class="target"></span>void lv_style_set_min_height(lv_style_t *style, lv_[https://docs.lvgl.io/8.2/overview/style.html#_CPPv419lv_style_set_heightP10lv_style_t10lv_coord_t]coord_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv423lv_style_set_min_heightP10lv_style_t10lv_coord_t] <span id="_CPPv323lv_style_set_min_heightP10lv_style_t10lv_coord_t"></span><span id="_CPPv223lv_style_set_min_heightP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_min_height__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1ae4ec7343a97acafae42e7a873af2e8c4" class="target"></span>
+
void lv_style_set_min_height(lv_style_t *style, lv_coord_t value)  
 
:
 
:
  
; <span id="_CPPv323lv_style_set_max_heightP10lv_style_t10lv_coord_t"></span><span id="_CPPv223lv_style_set_max_heightP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_max_height__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1ae6c149e24df59726477244b46e0325e9" class="target"></span>void lv_style_set_max_height(lv_style_t *style, lv_coor[https://docs.lvgl.io/8.2/overview/style.html#_CPPv423lv_style_set_min_heightP10lv_style_t10lv_coord_t]d_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv423lv_style_set_max_heightP10lv_style_t10lv_coord_t] <span id="_CPPv323lv_style_set_max_heightP10lv_style_t10lv_coord_t"></span><span id="_CPPv223lv_style_set_max_heightP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_max_height__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1ae6c149e24df59726477244b46e0325e9" class="target"></span>
+
void lv_style_set_max_height(lv_style_t *style, lv_coord_t value)  
 
:
 
:
  
; <span id="_CPPv314lv_style_set_xP10lv_style_t10lv_coord_t"></span><span id="_CPPv214lv_style_set_xP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_x__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1ac31a2672b24425b575e2fe3bc53921b9" class="target"></span>void lv_style_set_x(lv_style_t *style, lv_coord_t value[https://docs.lvgl.io/8.2/overview/style.html#_CPPv423lv_style_set_max_heightP10lv_style_t10lv_coord_t])[https://docs.lvgl.io/8.2/overview/style.html#_CPPv414lv_style_set_xP10lv_style_t10lv_coord_t] <span id="_CPPv314lv_style_set_xP10lv_style_t10lv_coord_t"></span><span id="_CPPv214lv_style_set_xP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_x__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1ac31a2672b24425b575e2fe3bc53921b9" class="target"></span>
+
void lv_style_set_x(lv_style_t *style, lv_coord_t value)  
 
:
 
:
  
; <span id="_CPPv314lv_style_set_yP10lv_style_t10lv_coord_t"></span><span id="_CPPv214lv_style_set_yP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_y__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1a3f3b8d3e4b0051da2760dcab93b12640" class="target"></span>void lv_style_set_y(lv_style_t *style, lv_coor[https://docs.lvgl.io/8.2/overview/style.html#_CPPv414lv_style_set_xP10lv_style_t10lv_coord_t]d_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv414lv_style_set_yP10lv_style_t10lv_coord_t] <span id="_CPPv314lv_style_set_yP10lv_style_t10lv_coord_t"></span><span id="_CPPv214lv_style_set_yP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_y__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1a3f3b8d3e4b0051da2760dcab93b12640" class="target"></span>
+
void lv_style_set_y(lv_style_t *style, lv_coord_t value)  
 
:
 
:
  
; <span id="_CPPv318lv_style_set_alignP10lv_style_t10lv_align_t"></span><span id="_CPPv218lv_style_set_alignP10lv_style_t10lv_align_t"></span><span id="lv_style_set_align__lv_style_tP.lv_align_t"></span><span id="lv__style__gen_8h_1abf01fcb36651cfb76b9b6925c65483ce" class="target"></span>void lv_style_set_align(lv_style_t *style, lv_[https://docs.lvgl.io/8.2/overview/style.html#_CPPv414lv_style_set_yP10lv_style_t10lv_coord_t]align_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv418lv_style_set_alignP10lv_style_t10lv_align_t] <span id="_CPPv318lv_style_set_alignP10lv_style_t10lv_align_t"></span><span id="_CPPv218lv_style_set_alignP10lv_style_t10lv_align_t"></span><span id="lv_style_set_align__lv_style_tP.lv_align_t"></span><span id="lv__style__gen_8h_1abf01fcb36651cfb76b9b6925c65483ce" class="target"></span>
+
void lv_style_set_align(lv_style_t *style, lv_align_t value)  
 
:
 
:
  
; <span id="_CPPv328lv_style_set_transform_widthP10lv_style_t10lv_coord_t"></span><span id="_CPPv228lv_style_set_transform_widthP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_transform_width__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1aa00cfb68c360110a76efad6a899d0540" class="target"></span>void lv_style_set_transform_width(lv_style_t *styl[https://docs.lvgl.io/8.2/overview/style.html#_CPPv418lv_style_set_alignP10lv_style_t10lv_align_t]e, lv_coord_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv428lv_style_set_transform_widthP10lv_style_t10lv_coord_t] <span id="_CPPv328lv_style_set_transform_widthP10lv_style_t10lv_coord_t"></span><span id="_CPPv228lv_style_set_transform_widthP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_transform_width__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1aa00cfb68c360110a76efad6a899d0540" class="target"></span>
+
void lv_style_set_transform_width(lv_style_t *style, lv_coord_t value)  
 
:
 
:
  
; <span id="_CPPv329lv_style_set_transform_heightP10lv_style_t10lv_coord_t"></span><span id="_CPPv229lv_style_set_transform_heightP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_transform_height__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1a1d7a1a87cb9c157caaa42eab109d6288" class="target"></span>void lv_style_set_transform_height(lv_style_t *style, lv_coo[https://docs.lvgl.io/8.2/overview/style.html#_CPPv428lv_style_set_transform_widthP10lv_style_t10lv_coord_t]rd_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv429lv_style_set_transform_heightP10lv_style_t10lv_coord_t] <span id="_CPPv329lv_style_set_transform_heightP10lv_style_t10lv_coord_t"></span><span id="_CPPv229lv_style_set_transform_heightP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_transform_height__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1a1d7a1a87cb9c157caaa42eab109d6288" class="target"></span>
+
void lv_style_set_transform_height(lv_style_t *style, lv_coord_t value)  
 
:
 
:
  
; <span id="_CPPv324lv_style_set_translate_xP10lv_style_t10lv_coord_t"></span><span id="_CPPv224lv_style_set_translate_xP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_translate_x__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1aa472cf50e8a24a7e6050a6d6c4820b32" class="target"></span>void lv_style_set_translate_x(lv_style_t *style, lv_coord_t v[https://docs.lvgl.io/8.2/overview/style.html#_CPPv429lv_style_set_transform_heightP10lv_style_t10lv_coord_t]alue)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv424lv_style_set_translate_xP10lv_style_t10lv_coord_t] <span id="_CPPv324lv_style_set_translate_xP10lv_style_t10lv_coord_t"></span><span id="_CPPv224lv_style_set_translate_xP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_translate_x__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1aa472cf50e8a24a7e6050a6d6c4820b32" class="target"></span>
+
void lv_style_set_translate_x(lv_style_t *style, lv_coord_t value)  
 
:
 
:
  
; <span id="_CPPv324lv_style_set_translate_yP10lv_style_t10lv_coord_t"></span><span id="_CPPv224lv_style_set_translate_yP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_translate_y__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1a70381f98b83af7acb52565b6eeeb722d" class="target"></span>void lv_style_set_translate_y(lv_style_t *style, lv_coor[https://docs.lvgl.io/8.2/overview/style.html#_CPPv424lv_style_set_translate_xP10lv_style_t10lv_coord_t]d_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv424lv_style_set_translate_yP10lv_style_t10lv_coord_t] <span id="_CPPv324lv_style_set_translate_yP10lv_style_t10lv_coord_t"></span><span id="_CPPv224lv_style_set_translate_yP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_translate_y__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1a70381f98b83af7acb52565b6eeeb722d" class="target"></span>
+
void lv_style_set_translate_y(lv_style_t *style, lv_coord_t value)  
 
:
 
:
  
; <span id="_CPPv327lv_style_set_transform_zoomP10lv_style_t10lv_coord_t"></span><span id="_CPPv227lv_style_set_transform_zoomP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_transform_zoom__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1a05e5fb4100b9df665a9a3f2136f9ae86" class="target"></span>void lv_style_set_transform_zoom(lv_style_t *style, lv_c[https://docs.lvgl.io/8.2/overview/style.html#_CPPv424lv_style_set_translate_yP10lv_style_t10lv_coord_t]oord_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_style_set_transform_zoomP10lv_style_t10lv_coord_t] <span id="_CPPv327lv_style_set_transform_zoomP10lv_style_t10lv_coord_t"></span><span id="_CPPv227lv_style_set_transform_zoomP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_transform_zoom__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1a05e5fb4100b9df665a9a3f2136f9ae86" class="target"></span>
+
void lv_style_set_transform_zoom(lv_style_t *style, lv_coord_t value)  
 
:
 
:
  
; <span id="_CPPv328lv_style_set_transform_angleP10lv_style_t10lv_coord_t"></span><span id="_CPPv228lv_style_set_transform_angleP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_transform_angle__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1ab1f3ddbfba7783c7c10cd3d64ddf2893" class="target"></span>void lv_style_set_transform_angle(lv_style_t *style, lv_coo[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_style_set_transform_zoomP10lv_style_t10lv_coord_t]rd_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv428lv_style_set_transform_angleP10lv_style_t10lv_coord_t] <span id="_CPPv328lv_style_set_transform_angleP10lv_style_t10lv_coord_t"></span><span id="_CPPv228lv_style_set_transform_angleP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_transform_angle__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1ab1f3ddbfba7783c7c10cd3d64ddf2893" class="target"></span>
+
void lv_style_set_transform_angle(lv_style_t *style, lv_coord_t value)  
 
:
 
:
  
; <span id="_CPPv320lv_style_set_pad_topP10lv_style_t10lv_coord_t"></span><span id="_CPPv220lv_style_set_pad_topP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_pad_top__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1a211e91f0c151f284761c948498d42ed6" class="target"></span>void lv_style_set_pad_top(lv_style_t *style, lv_coord_t valu[https://docs.lvgl.io/8.2/overview/style.html#_CPPv428lv_style_set_transform_angleP10lv_style_t10lv_coord_t]e)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv420lv_style_set_pad_topP10lv_style_t10lv_coord_t] <span id="_CPPv320lv_style_set_pad_topP10lv_style_t10lv_coord_t"></span><span id="_CPPv220lv_style_set_pad_topP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_pad_top__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1a211e91f0c151f284761c948498d42ed6" class="target"></span>
+
void lv_style_set_pad_top(lv_style_t *style, lv_coord_t value)  
 
:
 
:
  
; <span id="_CPPv323lv_style_set_pad_bottomP10lv_style_t10lv_coord_t"></span><span id="_CPPv223lv_style_set_pad_bottomP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_pad_bottom__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1a4d34912b2cb5765cdcd9bc7ba748ac77" class="target"></span>void lv_style_set_pad_bottom(lv_style_t *style, lv_c[https://docs.lvgl.io/8.2/overview/style.html#_CPPv420lv_style_set_pad_topP10lv_style_t10lv_coord_t]oord_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv423lv_style_set_pad_bottomP10lv_style_t10lv_coord_t] <span id="_CPPv323lv_style_set_pad_bottomP10lv_style_t10lv_coord_t"></span><span id="_CPPv223lv_style_set_pad_bottomP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_pad_bottom__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1a4d34912b2cb5765cdcd9bc7ba748ac77" class="target"></span>
+
void lv_style_set_pad_bottom(lv_style_t *style, lv_coord_t value)  
 
:
 
:
  
; <span id="_CPPv321lv_style_set_pad_leftP10lv_style_t10lv_coord_t"></span><span id="_CPPv221lv_style_set_pad_leftP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_pad_left__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1ac695bd0c7e78cf70f9128d12dd86696e" class="target"></span>void lv_style_set_pad_left(lv_style_t *style, lv_coord_[https://docs.lvgl.io/8.2/overview/style.html#_CPPv423lv_style_set_pad_bottomP10lv_style_t10lv_coord_t]t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv421lv_style_set_pad_leftP10lv_style_t10lv_coord_t] <span id="_CPPv321lv_style_set_pad_leftP10lv_style_t10lv_coord_t"></span><span id="_CPPv221lv_style_set_pad_leftP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_pad_left__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1ac695bd0c7e78cf70f9128d12dd86696e" class="target"></span>
+
void lv_style_set_pad_left(lv_style_t *style, lv_coord_t value)  
 
:
 
:
  
; <span id="_CPPv322lv_style_set_pad_rightP10lv_style_t10lv_coord_t"></span><span id="_CPPv222lv_style_set_pad_rightP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_pad_right__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1aac46e98d363551cb581a7a75d7bd8519" class="target"></span>void lv_style_set_pad_right(lv_style_t *style, lv_coo[https://docs.lvgl.io/8.2/overview/style.html#_CPPv421lv_style_set_pad_leftP10lv_style_t10lv_coord_t]rd_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv422lv_style_set_pad_rightP10lv_style_t10lv_coord_t] <span id="_CPPv322lv_style_set_pad_rightP10lv_style_t10lv_coord_t"></span><span id="_CPPv222lv_style_set_pad_rightP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_pad_right__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1aac46e98d363551cb581a7a75d7bd8519" class="target"></span>
+
void lv_style_set_pad_right(lv_style_t *style, lv_coord_t value)  
 
:
 
:
  
; <span id="_CPPv320lv_style_set_pad_rowP10lv_style_t10lv_coord_t"></span><span id="_CPPv220lv_style_set_pad_rowP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_pad_row__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1a70a1a600a23a52af05d013731f0a1f44" class="target"></span>void lv_style_set_pad_row(lv_style_t *style, lv_coord_[https://docs.lvgl.io/8.2/overview/style.html#_CPPv422lv_style_set_pad_rightP10lv_style_t10lv_coord_t]t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv420lv_style_set_pad_rowP10lv_style_t10lv_coord_t] <span id="_CPPv320lv_style_set_pad_rowP10lv_style_t10lv_coord_t"></span><span id="_CPPv220lv_style_set_pad_rowP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_pad_row__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1a70a1a600a23a52af05d013731f0a1f44" class="target"></span>
+
void lv_style_set_pad_row(lv_style_t *style, lv_coord_t value)  
 
:
 
:
  
; <span id="_CPPv323lv_style_set_pad_columnP10lv_style_t10lv_coord_t"></span><span id="_CPPv223lv_style_set_pad_columnP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_pad_column__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1a584a29cadd3d9647df9a71090c62fa4c" class="target"></span>void lv_style_set_pad_column(lv_style_t *style, lv_c[https://docs.lvgl.io/8.2/overview/style.html#_CPPv420lv_style_set_pad_rowP10lv_style_t10lv_coord_t]oord_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv423lv_style_set_pad_columnP10lv_style_t10lv_coord_t] <span id="_CPPv323lv_style_set_pad_columnP10lv_style_t10lv_coord_t"></span><span id="_CPPv223lv_style_set_pad_columnP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_pad_column__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1a584a29cadd3d9647df9a71090c62fa4c" class="target"></span>
+
void lv_style_set_pad_column(lv_style_t *style, lv_coord_t value)  
 
:
 
:
  
; <span id="_CPPv321lv_style_set_bg_colorP10lv_style_t10lv_color_t"></span><span id="_CPPv221lv_style_set_bg_colorP10lv_style_t10lv_color_t"></span><span id="lv_style_set_bg_color__lv_style_tP.lv_color_t"></span><span id="lv__style__gen_8h_1afcfd90e9415c860adbf13bedb97ce0c7" class="target"></span>void lv_style_set_bg_color(lv_style_t *style, lv_color_[https://docs.lvgl.io/8.2/overview/style.html#_CPPv423lv_style_set_pad_columnP10lv_style_t10lv_coord_t]t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv421lv_style_set_bg_colorP10lv_style_t10lv_color_t] <span id="_CPPv321lv_style_set_bg_colorP10lv_style_t10lv_color_t"></span><span id="_CPPv221lv_style_set_bg_colorP10lv_style_t10lv_color_t"></span><span id="lv_style_set_bg_color__lv_style_tP.lv_color_t"></span><span id="lv__style__gen_8h_1afcfd90e9415c860adbf13bedb97ce0c7" class="target"></span>
+
void lv_style_set_bg_color(lv_style_t *style, lv_color_t value)  
 
:
 
:
  
; <span id="_CPPv330lv_style_set_bg_color_filteredP10lv_style_t10lv_color_t"></span><span id="_CPPv230lv_style_set_bg_color_filteredP10lv_style_t10lv_color_t"></span><span id="lv_style_set_bg_color_filtered__lv_style_tP.lv_color_t"></span><span id="lv__style__gen_8h_1a844854b26a9bf6095263aacea5893b50" class="target"></span>void lv_style_set_bg_color_filtered(lv_style_t *style[https://docs.lvgl.io/8.2/overview/style.html#_CPPv421lv_style_set_bg_colorP10lv_style_t10lv_color_t], lv_color_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv430lv_style_set_bg_color_filteredP10lv_style_t10lv_color_t] <span id="_CPPv330lv_style_set_bg_color_filteredP10lv_style_t10lv_color_t"></span><span id="_CPPv230lv_style_set_bg_color_filteredP10lv_style_t10lv_color_t"></span><span id="lv_style_set_bg_color_filtered__lv_style_tP.lv_color_t"></span><span id="lv__style__gen_8h_1a844854b26a9bf6095263aacea5893b50" class="target"></span>
+
void lv_style_set_bg_color_filtered(lv_style_t *style, lv_color_t value)  
 
:
 
:
  
; <span id="_CPPv319lv_style_set_bg_opaP10lv_style_t8lv_opa_t"></span><span id="_CPPv219lv_style_set_bg_opaP10lv_style_t8lv_opa_t"></span><span id="lv_style_set_bg_opa__lv_style_tP.lv_opa_t"></span><span id="lv__style__gen_8h_1a033bf2ecb3aab94dde82136cea696693" class="target"></span>void lv_style_set_bg_opa(lv_style_t *style, lv_opa_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv419lv_style_set_bg_opaP10lv_style_t8lv_opa_t] <span id="_CPPv319lv_style_set_bg_opaP10lv_style_t8lv_opa_t"></span><span id="_CPPv219lv_style_set_bg_opaP10lv_style_t8lv_opa_t"></span><span id="lv_style_set_bg_opa__lv_style_tP.lv_opa_t"></span><span id="lv__style__gen_8h_1a033bf2ecb3aab94dde82136cea696693" class="target"></span> [https://docs.lvgl.io/8.2/overview/style.html#_CPPv430lv_style_set_bg_color_filteredP10lv_style_t10lv_color_t]
+
void lv_style_set_bg_opa(lv_style_t *style, lv_opa_t value)
 
:
 
:
  
; <span id="_CPPv326lv_style_set_bg_grad_colorP10lv_style_t10lv_color_t"></span><span id="_CPPv226lv_style_set_bg_grad_colorP10lv_style_t10lv_color_t"></span><span id="lv_style_set_bg_grad_color__lv_style_tP.lv_color_t"></span><span id="lv__style__gen_8h_1ad7829d3c456fba75fd3308ea4059489f" class="target"></span>void lv_style_set_bg_grad_color(lv_style_t *style[https://docs.lvgl.io/8.2/overview/style.html#_CPPv419lv_style_set_bg_opaP10lv_style_t8lv_opa_t], lv_color_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv426lv_style_set_bg_grad_colorP10lv_style_t10lv_color_t] <span id="_CPPv326lv_style_set_bg_grad_colorP10lv_style_t10lv_color_t"></span><span id="_CPPv226lv_style_set_bg_grad_colorP10lv_style_t10lv_color_t"></span><span id="lv_style_set_bg_grad_color__lv_style_tP.lv_color_t"></span><span id="lv__style__gen_8h_1ad7829d3c456fba75fd3308ea4059489f" class="target"></span>
+
void lv_style_set_bg_grad_color(lv_style_t *style, lv_color_t value)  
 
:
 
:
  
; <span id="_CPPv335lv_style_set_bg_grad_color_filteredP10lv_style_t10lv_color_t"></span><span id="_CPPv235lv_style_set_bg_grad_color_filteredP10lv_style_t10lv_color_t"></span><span id="lv_style_set_bg_grad_color_filtered__lv_style_tP.lv_color_t"></span><span id="lv__style__gen_8h_1ab0272ee5bcf81e4c647068e349489b84" class="target"></span>void lv_style_set_bg_grad_color_filtered(lv_style_t *style[https://docs.lvgl.io/8.2/overview/style.html#_CPPv426lv_style_set_bg_grad_colorP10lv_style_t10lv_color_t], lv_color_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv435lv_style_set_bg_grad_color_filteredP10lv_style_t10lv_color_t] <span id="_CPPv335lv_style_set_bg_grad_color_filteredP10lv_style_t10lv_color_t"></span><span id="_CPPv235lv_style_set_bg_grad_color_filteredP10lv_style_t10lv_color_t"></span><span id="lv_style_set_bg_grad_color_filtered__lv_style_tP.lv_color_t"></span><span id="lv__style__gen_8h_1ab0272ee5bcf81e4c647068e349489b84" class="target"></span>
+
void lv_style_set_bg_grad_color_filtered(lv_style_t *style, lv_color_t value)  
 
:
 
:
  
; <span id="_CPPv324lv_style_set_bg_grad_dirP10lv_style_t13lv_grad_dir_t"></span><span id="_CPPv224lv_style_set_bg_grad_dirP10lv_style_t13lv_grad_dir_t"></span><span id="lv_style_set_bg_grad_dir__lv_style_tP.lv_grad_dir_t"></span><span id="lv__style__gen_8h_1aa690aa12942d71c91129410819207a9b" class="target"></span>void lv_style_set_bg_grad_dir(lv_style_t *style, lv_grad_dir_t valu[https://docs.lvgl.io/8.2/overview/style.html#_CPPv435lv_style_set_bg_grad_color_filteredP10lv_style_t10lv_color_t]e)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv424lv_style_set_bg_grad_dirP10lv_style_t13lv_grad_dir_t] <span id="_CPPv324lv_style_set_bg_grad_dirP10lv_style_t13lv_grad_dir_t"></span><span id="_CPPv224lv_style_set_bg_grad_dirP10lv_style_t13lv_grad_dir_t"></span><span id="lv_style_set_bg_grad_dir__lv_style_tP.lv_grad_dir_t"></span><span id="lv__style__gen_8h_1aa690aa12942d71c91129410819207a9b" class="target"></span>
+
void lv_style_set_bg_grad_dir(lv_style_t *style, lv_grad_dir_t value)  
 
:
 
:
  
; <span id="_CPPv325lv_style_set_bg_main_stopP10lv_style_t10lv_coord_t"></span><span id="_CPPv225lv_style_set_bg_main_stopP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_bg_main_stop__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1ad693fa70302990a359822dcd55a48704" class="target"></span>void lv_style_set_bg_main_stop(lv_style_t *style, lv_coord_[https://docs.lvgl.io/8.2/overview/style.html#_CPPv424lv_style_set_bg_grad_dirP10lv_style_t13lv_grad_dir_t]t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv425lv_style_set_bg_main_stopP10lv_style_t10lv_coord_t] <span id="_CPPv325lv_style_set_bg_main_stopP10lv_style_t10lv_coord_t"></span><span id="_CPPv225lv_style_set_bg_main_stopP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_bg_main_stop__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1ad693fa70302990a359822dcd55a48704" class="target"></span>
+
void lv_style_set_bg_main_stop(lv_style_t *style, lv_coord_t value)  
 
:
 
:
  
; <span id="_CPPv325lv_style_set_bg_grad_stopP10lv_style_t10lv_coord_t"></span><span id="_CPPv225lv_style_set_bg_grad_stopP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_bg_grad_stop__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1a33cc765114d2384880ecf3cbcf4775ff" class="target"></span>void lv_style_set_bg_grad_stop(lv_style_t *style, lv_coor[https://docs.lvgl.io/8.2/overview/style.html#_CPPv425lv_style_set_bg_main_stopP10lv_style_t10lv_coord_t]d_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv425lv_style_set_bg_grad_stopP10lv_style_t10lv_coord_t] <span id="_CPPv325lv_style_set_bg_grad_stopP10lv_style_t10lv_coord_t"></span><span id="_CPPv225lv_style_set_bg_grad_stopP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_bg_grad_stop__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1a33cc765114d2384880ecf3cbcf4775ff" class="target"></span>
+
void lv_style_set_bg_grad_stop(lv_style_t *style, lv_coord_t value)  
 
:
 
:
  
; <span id="_CPPv320lv_style_set_bg_gradP10lv_style_tPK13lv_grad_dsc_t"></span><span id="_CPPv220lv_style_set_bg_gradP10lv_style_tPK13lv_grad_dsc_t"></span><span id="lv_style_set_bg_grad__lv_style_tP.lv_grad_dsc_tCP"></span><span id="lv__style__gen_8h_1a6ff17586a180cc031875ccf1346465d8" class="target"></span>void lv_style_set_bg_grad(lv_style_t *style, const lv_gra[https://docs.lvgl.io/8.2/overview/style.html#_CPPv425lv_style_set_bg_grad_stopP10lv_style_t10lv_coord_t]d_dsc_t *value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv420lv_style_set_bg_gradP10lv_style_tPK13lv_grad_dsc_t] <span id="_CPPv320lv_style_set_bg_gradP10lv_style_tPK13lv_grad_dsc_t"></span><span id="_CPPv220lv_style_set_bg_gradP10lv_style_tPK13lv_grad_dsc_t"></span><span id="lv_style_set_bg_grad__lv_style_tP.lv_grad_dsc_tCP"></span><span id="lv__style__gen_8h_1a6ff17586a180cc031875ccf1346465d8" class="target"></span>
+
void lv_style_set_bg_grad(lv_style_t *style, const lv_grad_dsc_t *value)  
 
:
 
:
  
; <span id="_CPPv327lv_style_set_bg_dither_modeP10lv_style_t16lv_dither_mode_t"></span><span id="_CPPv227lv_style_set_bg_dither_modeP10lv_style_t16lv_dither_mode_t"></span><span id="lv_style_set_bg_dither_mode__lv_style_tP.lv_dither_mode_t"></span><span id="lv__style__gen_8h_1a59e86dbc82c9361a273deb1544ca24fd" class="target"></span>void lv_style_set_bg_dither_mode(lv_style_t *style, lv_dither_[https://docs.lvgl.io/8.2/overview/style.html#_CPPv420lv_style_set_bg_gradP10lv_style_tPK13lv_grad_dsc_t]mode_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_style_set_bg_dither_modeP10lv_style_t16lv_dither_mode_t] <span id="_CPPv327lv_style_set_bg_dither_modeP10lv_style_t16lv_dither_mode_t"></span><span id="_CPPv227lv_style_set_bg_dither_modeP10lv_style_t16lv_dither_mode_t"></span><span id="lv_style_set_bg_dither_mode__lv_style_tP.lv_dither_mode_t"></span><span id="lv__style__gen_8h_1a59e86dbc82c9361a273deb1544ca24fd" class="target"></span>
+
void lv_style_set_bg_dither_mode(lv_style_t *style, lv_dither_mode_t value)  
 
:
 
:
  
; <span id="_CPPv323lv_style_set_bg_img_srcP10lv_style_tPKv"></span><span id="_CPPv223lv_style_set_bg_img_srcP10lv_style_tPKv"></span><span id="lv_style_set_bg_img_src__lv_style_tP.voidCP"></span><span id="lv__style__gen_8h_1af1e567e46ee5f86690640244a9d7ddba" class="target"></span>void lv_style_set_bg_img_src(lv_style_t *style, const void *value[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_style_set_bg_dither_modeP10lv_style_t16lv_dither_mode_t])[https://docs.lvgl.io/8.2/overview/style.html#_CPPv423lv_style_set_bg_img_srcP10lv_style_tPKv] <span id="_CPPv323lv_style_set_bg_img_srcP10lv_style_tPKv"></span><span id="_CPPv223lv_style_set_bg_img_srcP10lv_style_tPKv"></span><span id="lv_style_set_bg_img_src__lv_style_tP.voidCP"></span><span id="lv__style__gen_8h_1af1e567e46ee5f86690640244a9d7ddba" class="target"></span>
+
void lv_style_set_bg_img_src(lv_style_t *style, const void *value)  
 
:
 
:
  
; <span id="_CPPv323lv_style_set_bg_img_opaP10lv_style_t8lv_opa_t"></span><span id="_CPPv223lv_style_set_bg_img_opaP10lv_style_t8lv_opa_t"></span><span id="lv_style_set_bg_img_opa__lv_style_tP.lv_opa_t"></span><span id="lv__style__gen_8h_1abf7a851c2ce80e57639492b15d725e43" class="target"></span>void lv_style_set_bg_img_opa(lv_style_t *style, lv_opa_t[https://docs.lvgl.io/8.2/overview/style.html#_CPPv423lv_style_set_bg_img_srcP10lv_style_tPKv] value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv423lv_style_set_bg_img_opaP10lv_style_t8lv_opa_t] <span id="_CPPv323lv_style_set_bg_img_opaP10lv_style_t8lv_opa_t"></span><span id="_CPPv223lv_style_set_bg_img_opaP10lv_style_t8lv_opa_t"></span><span id="lv_style_set_bg_img_opa__lv_style_tP.lv_opa_t"></span><span id="lv__style__gen_8h_1abf7a851c2ce80e57639492b15d725e43" class="target"></span>
+
void lv_style_set_bg_img_opa(lv_style_t *style, lv_opa_t value)  
 
:
 
:
  
; <span id="_CPPv327lv_style_set_bg_img_recolorP10lv_style_t10lv_color_t"></span><span id="_CPPv227lv_style_set_bg_img_recolorP10lv_style_t10lv_color_t"></span><span id="lv_style_set_bg_img_recolor__lv_style_tP.lv_color_t"></span><span id="lv__style__gen_8h_1a07ed1e3b232b2c675ea9c2f5e4af151d" class="target"></span>void lv_style_set_bg_img_recolor(lv_style_t *style, l[https://docs.lvgl.io/8.2/overview/style.html#_CPPv423lv_style_set_bg_img_opaP10lv_style_t8lv_opa_t]v_color_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_style_set_bg_img_recolorP10lv_style_t10lv_color_t] <span id="_CPPv327lv_style_set_bg_img_recolorP10lv_style_t10lv_color_t"></span><span id="_CPPv227lv_style_set_bg_img_recolorP10lv_style_t10lv_color_t"></span><span id="lv_style_set_bg_img_recolor__lv_style_tP.lv_color_t"></span><span id="lv__style__gen_8h_1a07ed1e3b232b2c675ea9c2f5e4af151d" class="target"></span>
+
void lv_style_set_bg_img_recolor(lv_style_t *style, lv_color_t value)  
 
:
 
:
  
; <span id="_CPPv336lv_style_set_bg_img_recolor_filteredP10lv_style_t10lv_color_t"></span><span id="_CPPv236lv_style_set_bg_img_recolor_filteredP10lv_style_t10lv_color_t"></span><span id="lv_style_set_bg_img_recolor_filtered__lv_style_tP.lv_color_t"></span><span id="lv__style__gen_8h_1a8093dfe237e9e2994d218d3568512d48" class="target"></span>void lv_style_set_bg_img_recolor_filtered(lv_style_t *style[https://docs.lvgl.io/8.2/overview/style.html#_CPPv427lv_style_set_bg_img_recolorP10lv_style_t10lv_color_t], lv_color_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv436lv_style_set_bg_img_recolor_filteredP10lv_style_t10lv_color_t] <span id="_CPPv336lv_style_set_bg_img_recolor_filteredP10lv_style_t10lv_color_t"></span><span id="_CPPv236lv_style_set_bg_img_recolor_filteredP10lv_style_t10lv_color_t"></span><span id="lv_style_set_bg_img_recolor_filtered__lv_style_tP.lv_color_t"></span><span id="lv__style__gen_8h_1a8093dfe237e9e2994d218d3568512d48" class="target"></span>
+
void lv_style_set_bg_img_recolor_filtered(lv_style_t *style, lv_color_t value)  
 
:
 
:
  
; <span id="_CPPv331lv_style_set_bg_img_recolor_opaP10lv_style_t8lv_opa_t"></span><span id="_CPPv231lv_style_set_bg_img_recolor_opaP10lv_style_t8lv_opa_t"></span><span id="lv_style_set_bg_img_recolor_opa__lv_style_tP.lv_opa_t"></span><span id="lv__style__gen_8h_1a4c161d6f7656ed6d2199c61f335b58f5" class="target"></span>void lv_style_set_bg_img_recolor_opa(lv_style_t *style, lv_opa_t val[https://docs.lvgl.io/8.2/overview/style.html#_CPPv436lv_style_set_bg_img_recolor_filteredP10lv_style_t10lv_color_t]ue)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv431lv_style_set_bg_img_recolor_opaP10lv_style_t8lv_opa_t] <span id="_CPPv331lv_style_set_bg_img_recolor_opaP10lv_style_t8lv_opa_t"></span><span id="_CPPv231lv_style_set_bg_img_recolor_opaP10lv_style_t8lv_opa_t"></span><span id="lv_style_set_bg_img_recolor_opa__lv_style_tP.lv_opa_t"></span><span id="lv__style__gen_8h_1a4c161d6f7656ed6d2199c61f335b58f5" class="target"></span>
+
void lv_style_set_bg_img_recolor_opa(lv_style_t *style, lv_opa_t value)  
 
:
 
:
  
; <span id="_CPPv325lv_style_set_bg_img_tiledP10lv_style_tb"></span><span id="_CPPv225lv_style_set_bg_img_tiledP10lv_style_tb"></span><span id="lv_style_set_bg_img_tiled__lv_style_tP.b"></span><span id="lv__style__gen_8h_1acb79cc512f0daccecaf3f837938dac6b" class="target"></span>void lv_style_set_bg_img_tiled(lv_style_t *style, bool value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv431lv_style_set_bg_img_recolor_opaP10lv_style_t8lv_opa_t][https://docs.lvgl.io/8.2/overview/style.html#_CPPv425lv_style_set_bg_img_tiledP10lv_style_tb] <span id="_CPPv325lv_style_set_bg_img_tiledP10lv_style_tb"></span><span id="_CPPv225lv_style_set_bg_img_tiledP10lv_style_tb"></span><span id="lv_style_set_bg_img_tiled__lv_style_tP.b"></span><span id="lv__style__gen_8h_1acb79cc512f0daccecaf3f837938dac6b" class="target"></span>
+
void lv_style_set_bg_img_tiled(lv_style_t *style, bool value)  
 
:
 
:
  
; <span id="_CPPv325lv_style_set_border_colorP10lv_style_t10lv_color_t"></span><span id="_CPPv225lv_style_set_border_colorP10lv_style_t10lv_color_t"></span><span id="lv_style_set_border_color__lv_style_tP.lv_color_t"></span><span id="lv__style__gen_8h_1a15739c99c518ebcaf1a214e7d5258cad" class="target"></span>void lv_style_set_border_color(lv_style_t *style, l[https://docs.lvgl.io/8.2/overview/style.html#_CPPv425lv_style_set_bg_img_tiledP10lv_style_tb]v_color_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv425lv_style_set_border_colorP10lv_style_t10lv_color_t] <span id="_CPPv325lv_style_set_border_colorP10lv_style_t10lv_color_t"></span><span id="_CPPv225lv_style_set_border_colorP10lv_style_t10lv_color_t"></span><span id="lv_style_set_border_color__lv_style_tP.lv_color_t"></span><span id="lv__style__gen_8h_1a15739c99c518ebcaf1a214e7d5258cad" class="target"></span>
+
void lv_style_set_border_color(lv_style_t *style, lv_color_t value)  
 
:
 
:
  
; <span id="_CPPv334lv_style_set_border_color_filteredP10lv_style_t10lv_color_t"></span><span id="_CPPv234lv_style_set_border_color_filteredP10lv_style_t10lv_color_t"></span><span id="lv_style_set_border_color_filtered__lv_style_tP.lv_color_t"></span><span id="lv__style__gen_8h_1ad1043740f9bdfbc321326e192485f940" class="target"></span>void lv_style_set_border_color_filtered(lv_style_t *style[https://docs.lvgl.io/8.2/overview/style.html#_CPPv425lv_style_set_border_colorP10lv_style_t10lv_color_t], lv_color_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv434lv_style_set_border_color_filteredP10lv_style_t10lv_color_t] <span id="_CPPv334lv_style_set_border_color_filteredP10lv_style_t10lv_color_t"></span><span id="_CPPv234lv_style_set_border_color_filteredP10lv_style_t10lv_color_t"></span><span id="lv_style_set_border_color_filtered__lv_style_tP.lv_color_t"></span><span id="lv__style__gen_8h_1ad1043740f9bdfbc321326e192485f940" class="target"></span>
+
void lv_style_set_border_color_filtered(lv_style_t *style, lv_color_t value)  
 
:
 
:
  
; <span id="_CPPv323lv_style_set_border_opaP10lv_style_t8lv_opa_t"></span><span id="_CPPv223lv_style_set_border_opaP10lv_style_t8lv_opa_t"></span><span id="lv_style_set_border_opa__lv_style_tP.lv_opa_t"></span><span id="lv__style__gen_8h_1a563741ce445fced40b8d0382f6280329" class="target"></span>void lv_style_set_border_opa(lv_style_t *style, lv_opa_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv423lv_style_set_border_opaP10lv_style_t8lv_opa_t] <span id="_CPPv323lv_style_set_border_opaP10lv_style_t8lv_opa_t"></span><span id="_CPPv223lv_style_set_border_opaP10lv_style_t8lv_opa_t"></span><span id="lv_style_set_border_opa__lv_style_tP.lv_opa_t"></span><span id="lv__style__gen_8h_1a563741ce445fced40b8d0382f6280329" class="target"></span> [https://docs.lvgl.io/8.2/overview/style.html#_CPPv434lv_style_set_border_color_filteredP10lv_style_t10lv_color_t]
+
void lv_style_set_border_opa(lv_style_t *style, lv_opa_t value)
 
:
 
:
  
; <span id="_CPPv325lv_style_set_border_widthP10lv_style_t10lv_coord_t"></span><span id="_CPPv225lv_style_set_border_widthP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_border_width__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1a75b3b33d822f1d1f937f7f231754906b" class="target"></span>void lv_style_set_border_width(lv_style_t *style, lv_[https://docs.lvgl.io/8.2/overview/style.html#_CPPv423lv_style_set_border_opaP10lv_style_t8lv_opa_t]coord_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv425lv_style_set_border_widthP10lv_style_t10lv_coord_t] <span id="_CPPv325lv_style_set_border_widthP10lv_style_t10lv_coord_t"></span><span id="_CPPv225lv_style_set_border_widthP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_border_width__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1a75b3b33d822f1d1f937f7f231754906b" class="target"></span>
+
void lv_style_set_border_width(lv_style_t *style, lv_coord_t value)  
 
:
 
:
  
; <span id="_CPPv324lv_style_set_border_sideP10lv_style_t16lv_border_side_t"></span><span id="_CPPv224lv_style_set_border_sideP10lv_style_t16lv_border_side_t"></span><span id="lv_style_set_border_side__lv_style_tP.lv_border_side_t"></span><span id="lv__style__gen_8h_1ade3780812579627d5ffe6956f06adfde" class="target"></span>void lv_style_set_border_side(lv_style_t *style, lv_borde[https://docs.lvgl.io/8.2/overview/style.html#_CPPv425lv_style_set_border_widthP10lv_style_t10lv_coord_t]r_side_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv424lv_style_set_border_sideP10lv_style_t16lv_border_side_t] <span id="_CPPv324lv_style_set_border_sideP10lv_style_t16lv_border_side_t"></span><span id="_CPPv224lv_style_set_border_sideP10lv_style_t16lv_border_side_t"></span><span id="lv_style_set_border_side__lv_style_tP.lv_border_side_t"></span><span id="lv__style__gen_8h_1ade3780812579627d5ffe6956f06adfde" class="target"></span>
+
void lv_style_set_border_side(lv_style_t *style, lv_border_side_t value)  
 
:
 
:
  
; <span id="_CPPv324lv_style_set_border_postP10lv_style_tb"></span><span id="_CPPv224lv_style_set_border_postP10lv_style_tb"></span><span id="lv_style_set_border_post__lv_style_tP.b"></span><span id="lv__style__gen_8h_1abfd61ba65833d080f443c734f37bc188" class="target"></span>void lv_style_set_border_post(lv_style_t *style, bool value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv424lv_style_set_border_postP10lv_style_tb] [https://docs.lvgl.io/8.2/overview/style.html#_CPPv424lv_style_set_border_sideP10lv_style_t16lv_border_side_t]<span id="_CPPv324lv_style_set_border_postP10lv_style_tb"></span><span id="_CPPv224lv_style_set_border_postP10lv_style_tb"></span><span id="lv_style_set_border_post__lv_style_tP.b"></span><span id="lv__style__gen_8h_1abfd61ba65833d080f443c734f37bc188" class="target"></span>
+
void lv_style_set_border_post(lv_style_t *style, bool value)  
 
:
 
:
  
; <span id="_CPPv326lv_style_set_outline_widthP10lv_style_t10lv_coord_t"></span><span id="_CPPv226lv_style_set_outline_widthP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_outline_width__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1aab7e1ec93e002be9fdd7a11f933f6b13" class="target"></span>void lv_style_set_outline_width(lv_style_t *style,[https://docs.lvgl.io/8.2/overview/style.html#_CPPv424lv_style_set_border_postP10lv_style_tb] lv_coord_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv426lv_style_set_outline_widthP10lv_style_t10lv_coord_t] <span id="_CPPv326lv_style_set_outline_widthP10lv_style_t10lv_coord_t"></span><span id="_CPPv226lv_style_set_outline_widthP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_outline_width__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1aab7e1ec93e002be9fdd7a11f933f6b13" class="target"></span>
+
void lv_style_set_outline_width(lv_style_t *style, lv_coord_t value)  
 
:
 
:
  
; <span id="_CPPv326lv_style_set_outline_colorP10lv_style_t10lv_color_t"></span><span id="_CPPv226lv_style_set_outline_colorP10lv_style_t10lv_color_t"></span><span id="lv_style_set_outline_color__lv_style_tP.lv_color_t"></span><span id="lv__style__gen_8h_1acd54e76a506cbb283cc8f194a079998a" class="target"></span>void lv_style_set_outline_color(lv_style_t *style, lv_colo[https://docs.lvgl.io/8.2/overview/style.html#_CPPv426lv_style_set_outline_widthP10lv_style_t10lv_coord_t]r_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv426lv_style_set_outline_colorP10lv_style_t10lv_color_t] <span id="_CPPv326lv_style_set_outline_colorP10lv_style_t10lv_color_t"></span><span id="_CPPv226lv_style_set_outline_colorP10lv_style_t10lv_color_t"></span><span id="lv_style_set_outline_color__lv_style_tP.lv_color_t"></span><span id="lv__style__gen_8h_1acd54e76a506cbb283cc8f194a079998a" class="target"></span>
+
void lv_style_set_outline_color(lv_style_t *style, lv_color_t value)  
 
:
 
:
  
; <span id="_CPPv335lv_style_set_outline_color_filteredP10lv_style_t10lv_color_t"></span><span id="_CPPv235lv_style_set_outline_color_filteredP10lv_style_t10lv_color_t"></span><span id="lv_style_set_outline_color_filtered__lv_style_tP.lv_color_t"></span><span id="lv__style__gen_8h_1ac4af98798f30f0b90a28d1a0884d5a5d" class="target"></span>void lv_style_set_outline_color_filtered(lv_style_t *style[https://docs.lvgl.io/8.2/overview/style.html#_CPPv426lv_style_set_outline_colorP10lv_style_t10lv_color_t], lv_color_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv435lv_style_set_outline_color_filteredP10lv_style_t10lv_color_t] <span id="_CPPv335lv_style_set_outline_color_filteredP10lv_style_t10lv_color_t"></span><span id="_CPPv235lv_style_set_outline_color_filteredP10lv_style_t10lv_color_t"></span><span id="lv_style_set_outline_color_filtered__lv_style_tP.lv_color_t"></span><span id="lv__style__gen_8h_1ac4af98798f30f0b90a28d1a0884d5a5d" class="target"></span>
+
void lv_style_set_outline_color_filtered(lv_style_t *style, lv_color_t value)  
 
:
 
:
  
; <span id="_CPPv324lv_style_set_outline_opaP10lv_style_t8lv_opa_t"></span><span id="_CPPv224lv_style_set_outline_opaP10lv_style_t8lv_opa_t"></span><span id="lv_style_set_outline_opa__lv_style_tP.lv_opa_t"></span><span id="lv__style__gen_8h_1a0c6433d1feec4a96d2d8757ef00696be" class="target"></span>void lv_style_set_outline_opa(lv_style_t *style, lv_opa_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv424lv_style_set_outline_opaP10lv_style_t8lv_opa_t] <span id="_CPPv324lv_style_set_outline_opaP10lv_style_t8lv_opa_t"></span><span id="_CPPv224lv_style_set_outline_opaP10lv_style_t8lv_opa_t"></span><span id="lv_style_set_outline_opa__lv_style_tP.lv_opa_t"></span><span id="lv__style__gen_8h_1a0c6433d1feec4a96d2d8757ef00696be" class="target"></span> [https://docs.lvgl.io/8.2/overview/style.html#_CPPv435lv_style_set_outline_color_filteredP10lv_style_t10lv_color_t]
+
void lv_style_set_outline_opa(lv_style_t *style, lv_opa_t value)
 
:
 
:
  
; <span id="_CPPv324lv_style_set_outline_padP10lv_style_t10lv_coord_t"></span><span id="_CPPv224lv_style_set_outline_padP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_outline_pad__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1acd9f411422b1e804acd765cca2ace913" class="target"></span>void lv_style_set_outline_pad(lv_style_t *style, lv_co[https://docs.lvgl.io/8.2/overview/style.html#_CPPv424lv_style_set_outline_opaP10lv_style_t8lv_opa_t]ord_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv424lv_style_set_outline_padP10lv_style_t10lv_coord_t] <span id="_CPPv324lv_style_set_outline_padP10lv_style_t10lv_coord_t"></span><span id="_CPPv224lv_style_set_outline_padP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_outline_pad__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1acd9f411422b1e804acd765cca2ace913" class="target"></span>
+
void lv_style_set_outline_pad(lv_style_t *style, lv_coord_t value)  
 
:
 
:
  
; <span id="_CPPv325lv_style_set_shadow_widthP10lv_style_t10lv_coord_t"></span><span id="_CPPv225lv_style_set_shadow_widthP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_shadow_width__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1ae0fc08a75ba741996484609b311b1274" class="target"></span>void lv_style_set_shadow_width(lv_style_t *style, lv_coo[https://docs.lvgl.io/8.2/overview/style.html#_CPPv424lv_style_set_outline_padP10lv_style_t10lv_coord_t]rd_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv425lv_style_set_shadow_widthP10lv_style_t10lv_coord_t] <span id="_CPPv325lv_style_set_shadow_widthP10lv_style_t10lv_coord_t"></span><span id="_CPPv225lv_style_set_shadow_widthP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_shadow_width__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1ae0fc08a75ba741996484609b311b1274" class="target"></span>
+
void lv_style_set_shadow_width(lv_style_t *style, lv_coord_t value)  
 
:
 
:
  
; <span id="_CPPv325lv_style_set_shadow_ofs_xP10lv_style_t10lv_coord_t"></span><span id="_CPPv225lv_style_set_shadow_ofs_xP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_shadow_ofs_x__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1ae608d388079a6474969ac1dc7c569dbd" class="target"></span>void lv_style_set_shadow_ofs_x(lv_style_t *style, lv_coor[https://docs.lvgl.io/8.2/overview/style.html#_CPPv425lv_style_set_shadow_widthP10lv_style_t10lv_coord_t]d_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv425lv_style_set_shadow_ofs_xP10lv_style_t10lv_coord_t] <span id="_CPPv325lv_style_set_shadow_ofs_xP10lv_style_t10lv_coord_t"></span><span id="_CPPv225lv_style_set_shadow_ofs_xP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_shadow_ofs_x__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1ae608d388079a6474969ac1dc7c569dbd" class="target"></span>
+
void lv_style_set_shadow_ofs_x(lv_style_t *style, lv_coord_t value)  
 
:
 
:
  
; <span id="_CPPv325lv_style_set_shadow_ofs_yP10lv_style_t10lv_coord_t"></span><span id="_CPPv225lv_style_set_shadow_ofs_yP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_shadow_ofs_y__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1a9d42bfbf5e20fabfe65806914d67dcfd" class="target"></span>void lv_style_set_shadow_ofs_y(lv_style_t *style, lv_coor[https://docs.lvgl.io/8.2/overview/style.html#_CPPv425lv_style_set_shadow_ofs_xP10lv_style_t10lv_coord_t]d_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv425lv_style_set_shadow_ofs_yP10lv_style_t10lv_coord_t] <span id="_CPPv325lv_style_set_shadow_ofs_yP10lv_style_t10lv_coord_t"></span><span id="_CPPv225lv_style_set_shadow_ofs_yP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_shadow_ofs_y__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1a9d42bfbf5e20fabfe65806914d67dcfd" class="target"></span>
+
void lv_style_set_shadow_ofs_y(lv_style_t *style, lv_coord_t value)  
 
:
 
:
  
; <span id="_CPPv326lv_style_set_shadow_spreadP10lv_style_t10lv_coord_t"></span><span id="_CPPv226lv_style_set_shadow_spreadP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_shadow_spread__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1ae943fa90c876e139919d2c887e5cd39a" class="target"></span>void lv_style_set_shadow_spread(lv_style_t *style, lv_coo[https://docs.lvgl.io/8.2/overview/style.html#_CPPv425lv_style_set_shadow_ofs_yP10lv_style_t10lv_coord_t]rd_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv426lv_style_set_shadow_spreadP10lv_style_t10lv_coord_t] <span id="_CPPv326lv_style_set_shadow_spreadP10lv_style_t10lv_coord_t"></span><span id="_CPPv226lv_style_set_shadow_spreadP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_shadow_spread__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1ae943fa90c876e139919d2c887e5cd39a" class="target"></span>
+
void lv_style_set_shadow_spread(lv_style_t *style, lv_coord_t value)  
 
:
 
:
  
; <span id="_CPPv325lv_style_set_shadow_colorP10lv_style_t10lv_color_t"></span><span id="_CPPv225lv_style_set_shadow_colorP10lv_style_t10lv_color_t"></span><span id="lv_style_set_shadow_color__lv_style_tP.lv_color_t"></span><span id="lv__style__gen_8h_1ad2dc43db6de6917d1ba8b7b36387c4a2" class="target"></span>void lv_style_set_shadow_color(lv_style_t *style, lv_color[https://docs.lvgl.io/8.2/overview/style.html#_CPPv426lv_style_set_shadow_spreadP10lv_style_t10lv_coord_t]_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv425lv_style_set_shadow_colorP10lv_style_t10lv_color_t] <span id="_CPPv325lv_style_set_shadow_colorP10lv_style_t10lv_color_t"></span><span id="_CPPv225lv_style_set_shadow_colorP10lv_style_t10lv_color_t"></span><span id="lv_style_set_shadow_color__lv_style_tP.lv_color_t"></span><span id="lv__style__gen_8h_1ad2dc43db6de6917d1ba8b7b36387c4a2" class="target"></span>
+
void lv_style_set_shadow_color(lv_style_t *style, lv_color_t value)  
 
:
 
:
  
; <span id="_CPPv334lv_style_set_shadow_color_filteredP10lv_style_t10lv_color_t"></span><span id="_CPPv234lv_style_set_shadow_color_filteredP10lv_style_t10lv_color_t"></span><span id="lv_style_set_shadow_color_filtered__lv_style_tP.lv_color_t"></span><span id="lv__style__gen_8h_1a9402fbefdfa341c43bcd5cb405c6d52e" class="target"></span>void lv_style_set_shadow_color_filtered(lv_style_t *style[https://docs.lvgl.io/8.2/overview/style.html#_CPPv425lv_style_set_shadow_colorP10lv_style_t10lv_color_t], lv_color_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv434lv_style_set_shadow_color_filteredP10lv_style_t10lv_color_t] <span id="_CPPv334lv_style_set_shadow_color_filteredP10lv_style_t10lv_color_t"></span><span id="_CPPv234lv_style_set_shadow_color_filteredP10lv_style_t10lv_color_t"></span><span id="lv_style_set_shadow_color_filtered__lv_style_tP.lv_color_t"></span><span id="lv__style__gen_8h_1a9402fbefdfa341c43bcd5cb405c6d52e" class="target"></span>
+
void lv_style_set_shadow_color_filtered(lv_style_t *style, lv_color_t value)  
 
:
 
:
  
; <span id="_CPPv323lv_style_set_shadow_opaP10lv_style_t8lv_opa_t"></span><span id="_CPPv223lv_style_set_shadow_opaP10lv_style_t8lv_opa_t"></span><span id="lv_style_set_shadow_opa__lv_style_tP.lv_opa_t"></span><span id="lv__style__gen_8h_1a51218bbadc3009585b3b143e15078187" class="target"></span>void lv_style_set_shadow_opa(lv_style_t *style, lv_opa_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv423lv_style_set_shadow_opaP10lv_style_t8lv_opa_t] <span id="_CPPv323lv_style_set_shadow_opaP10lv_style_t8lv_opa_t"></span><span id="_CPPv223lv_style_set_shadow_opaP10lv_style_t8lv_opa_t"></span><span id="lv_style_set_shadow_opa__lv_style_tP.lv_opa_t"></span><span id="lv__style__gen_8h_1a51218bbadc3009585b3b143e15078187" class="target"></span> [https://docs.lvgl.io/8.2/overview/style.html#_CPPv434lv_style_set_shadow_color_filteredP10lv_style_t10lv_color_t]
+
void lv_style_set_shadow_opa(lv_style_t *style, lv_opa_t value)
 
:
 
:
  
; <span id="_CPPv320lv_style_set_img_opaP10lv_style_t8lv_opa_t"></span><span id="_CPPv220lv_style_set_img_opaP10lv_style_t8lv_opa_t"></span><span id="lv_style_set_img_opa__lv_style_tP.lv_opa_t"></span><span id="lv__style__gen_8h_1ac0fbd0b73d3408029725d6d2536345ab" class="target"></span>void lv_style_set_img_opa(lv_style_t *style, lv_opa_t[https://docs.lvgl.io/8.2/overview/style.html#_CPPv423lv_style_set_shadow_opaP10lv_style_t8lv_opa_t] value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv420lv_style_set_img_opaP10lv_style_t8lv_opa_t] <span id="_CPPv320lv_style_set_img_opaP10lv_style_t8lv_opa_t"></span><span id="_CPPv220lv_style_set_img_opaP10lv_style_t8lv_opa_t"></span><span id="lv_style_set_img_opa__lv_style_tP.lv_opa_t"></span><span id="lv__style__gen_8h_1ac0fbd0b73d3408029725d6d2536345ab" class="target"></span>
+
void lv_style_set_img_opa(lv_style_t *style, lv_opa_t value)  
 
:
 
:
  
; <span id="_CPPv324lv_style_set_img_recolorP10lv_style_t10lv_color_t"></span><span id="_CPPv224lv_style_set_img_recolorP10lv_style_t10lv_color_t"></span><span id="lv_style_set_img_recolor__lv_style_tP.lv_color_t"></span><span id="lv__style__gen_8h_1ad5f9f510780a1eb53082424c4069ecd9" class="target"></span>void lv_style_set_img_recolor(lv_style_t *style, l[https://docs.lvgl.io/8.2/overview/style.html#_CPPv420lv_style_set_img_opaP10lv_style_t8lv_opa_t]v_color_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv424lv_style_set_img_recolorP10lv_style_t10lv_color_t] <span id="_CPPv324lv_style_set_img_recolorP10lv_style_t10lv_color_t"></span><span id="_CPPv224lv_style_set_img_recolorP10lv_style_t10lv_color_t"></span><span id="lv_style_set_img_recolor__lv_style_tP.lv_color_t"></span><span id="lv__style__gen_8h_1ad5f9f510780a1eb53082424c4069ecd9" class="target"></span>
+
void lv_style_set_img_recolor(lv_style_t *style, lv_color_t value)  
 
:
 
:
  
; <span id="_CPPv333lv_style_set_img_recolor_filteredP10lv_style_t10lv_color_t"></span><span id="_CPPv233lv_style_set_img_recolor_filteredP10lv_style_t10lv_color_t"></span><span id="lv_style_set_img_recolor_filtered__lv_style_tP.lv_color_t"></span><span id="lv__style__gen_8h_1a3fb1173138a782aaedea214ec494de2f" class="target"></span>void lv_style_set_img_recolor_filtered(lv_style_t *style[https://docs.lvgl.io/8.2/overview/style.html#_CPPv424lv_style_set_img_recolorP10lv_style_t10lv_color_t], lv_color_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv433lv_style_set_img_recolor_filteredP10lv_style_t10lv_color_t] <span id="_CPPv333lv_style_set_img_recolor_filteredP10lv_style_t10lv_color_t"></span><span id="_CPPv233lv_style_set_img_recolor_filteredP10lv_style_t10lv_color_t"></span><span id="lv_style_set_img_recolor_filtered__lv_style_tP.lv_color_t"></span><span id="lv__style__gen_8h_1a3fb1173138a782aaedea214ec494de2f" class="target"></span>
+
void lv_style_set_img_recolor_filtered(lv_style_t *style, lv_color_t value)  
 
:
 
:
  
; <span id="_CPPv328lv_style_set_img_recolor_opaP10lv_style_t8lv_opa_t"></span><span id="_CPPv228lv_style_set_img_recolor_opaP10lv_style_t8lv_opa_t"></span><span id="lv_style_set_img_recolor_opa__lv_style_tP.lv_opa_t"></span><span id="lv__style__gen_8h_1a76415bfb7d83d75d0f81168f5f827447" class="target"></span>void lv_style_set_img_recolor_opa(lv_style_t *style, lv_opa_t val[https://docs.lvgl.io/8.2/overview/style.html#_CPPv433lv_style_set_img_recolor_filteredP10lv_style_t10lv_color_t]ue)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv428lv_style_set_img_recolor_opaP10lv_style_t8lv_opa_t] <span id="_CPPv328lv_style_set_img_recolor_opaP10lv_style_t8lv_opa_t"></span><span id="_CPPv228lv_style_set_img_recolor_opaP10lv_style_t8lv_opa_t"></span><span id="lv_style_set_img_recolor_opa__lv_style_tP.lv_opa_t"></span><span id="lv__style__gen_8h_1a76415bfb7d83d75d0f81168f5f827447" class="target"></span>
+
void lv_style_set_img_recolor_opa(lv_style_t *style, lv_opa_t value)  
 
:
 
:
  
; <span id="_CPPv323lv_style_set_line_widthP10lv_style_t10lv_coord_t"></span><span id="_CPPv223lv_style_set_line_widthP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_line_width__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1a9b1bbedaf5512bd9fa19722c4e4e7eb8" class="target"></span>void lv_style_set_line_width(lv_style_t *style, lv_coord_t[https://docs.lvgl.io/8.2/overview/style.html#_CPPv428lv_style_set_img_recolor_opaP10lv_style_t8lv_opa_t] value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv423lv_style_set_line_widthP10lv_style_t10lv_coord_t] <span id="_CPPv323lv_style_set_line_widthP10lv_style_t10lv_coord_t"></span><span id="_CPPv223lv_style_set_line_widthP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_line_width__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1a9b1bbedaf5512bd9fa19722c4e4e7eb8" class="target"></span>
+
void lv_style_set_line_width(lv_style_t *style, lv_coord_t value)  
 
:
 
:
  
; <span id="_CPPv328lv_style_set_line_dash_widthP10lv_style_t10lv_coord_t"></span><span id="_CPPv228lv_style_set_line_dash_widthP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_line_dash_width__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1a058853ced4b5779a271f39a4eca406ce" class="target"></span>void lv_style_set_line_dash_width(lv_style_t *style, lv[https://docs.lvgl.io/8.2/overview/style.html#_CPPv423lv_style_set_line_widthP10lv_style_t10lv_coord_t]_coord_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv428lv_style_set_line_dash_widthP10lv_style_t10lv_coord_t] <span id="_CPPv328lv_style_set_line_dash_widthP10lv_style_t10lv_coord_t"></span><span id="_CPPv228lv_style_set_line_dash_widthP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_line_dash_width__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1a058853ced4b5779a271f39a4eca406ce" class="target"></span>
+
void lv_style_set_line_dash_width(lv_style_t *style, lv_coord_t value)  
 
:
 
:
  
; <span id="_CPPv326lv_style_set_line_dash_gapP10lv_style_t10lv_coord_t"></span><span id="_CPPv226lv_style_set_line_dash_gapP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_line_dash_gap__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1af5a3fd86511ae73316298b3a00d39118" class="target"></span>void lv_style_set_line_dash_gap(lv_style_t *style, lv_coord_[https://docs.lvgl.io/8.2/overview/style.html#_CPPv428lv_style_set_line_dash_widthP10lv_style_t10lv_coord_t]t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv426lv_style_set_line_dash_gapP10lv_style_t10lv_coord_t] <span id="_CPPv326lv_style_set_line_dash_gapP10lv_style_t10lv_coord_t"></span><span id="_CPPv226lv_style_set_line_dash_gapP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_line_dash_gap__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1af5a3fd86511ae73316298b3a00d39118" class="target"></span>
+
void lv_style_set_line_dash_gap(lv_style_t *style, lv_coord_t value)  
 
:
 
:
  
; <span id="_CPPv325lv_style_set_line_roundedP10lv_style_tb"></span><span id="_CPPv225lv_style_set_line_roundedP10lv_style_tb"></span><span id="lv_style_set_line_rounded__lv_style_tP.b"></span><span id="lv__style__gen_8h_1a0b72c2c7d0bf74a6fcf2d42b6f77b736" class="target"></span>void lv_style_set_line_rounded(lv_style_t *style, bool val[https://docs.lvgl.io/8.2/overview/style.html#_CPPv426lv_style_set_line_dash_gapP10lv_style_t10lv_coord_t]ue)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv425lv_style_set_line_roundedP10lv_style_tb] <span id="_CPPv325lv_style_set_line_roundedP10lv_style_tb"></span><span id="_CPPv225lv_style_set_line_roundedP10lv_style_tb"></span><span id="lv_style_set_line_rounded__lv_style_tP.b"></span><span id="lv__style__gen_8h_1a0b72c2c7d0bf74a6fcf2d42b6f77b736" class="target"></span>
+
void lv_style_set_line_rounded(lv_style_t *style, bool value)  
 
:
 
:
  
; <span id="_CPPv323lv_style_set_line_colorP10lv_style_t10lv_color_t"></span><span id="_CPPv223lv_style_set_line_colorP10lv_style_t10lv_color_t"></span><span id="lv_style_set_line_color__lv_style_tP.lv_color_t"></span><span id="lv__style__gen_8h_1a1eb627a8e1918b6fab45c8050f8f22e2" class="target"></span>void lv_style_set_line_color(lv_style_t *style, lv_[https://docs.lvgl.io/8.2/overview/style.html#_CPPv425lv_style_set_line_roundedP10lv_style_tb]color_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv423lv_style_set_line_colorP10lv_style_t10lv_color_t] <span id="_CPPv323lv_style_set_line_colorP10lv_style_t10lv_color_t"></span><span id="_CPPv223lv_style_set_line_colorP10lv_style_t10lv_color_t"></span><span id="lv_style_set_line_color__lv_style_tP.lv_color_t"></span><span id="lv__style__gen_8h_1a1eb627a8e1918b6fab45c8050f8f22e2" class="target"></span>
+
void lv_style_set_line_color(lv_style_t *style, lv_color_t value)  
 
:
 
:
  
; <span id="_CPPv332lv_style_set_line_color_filteredP10lv_style_t10lv_color_t"></span><span id="_CPPv232lv_style_set_line_color_filteredP10lv_style_t10lv_color_t"></span><span id="lv_style_set_line_color_filtered__lv_style_tP.lv_color_t"></span><span id="lv__style__gen_8h_1aa64c308740441947af29c1014d15c569" class="target"></span>void lv_style_set_line_color_filtered(lv_style_t *style[https://docs.lvgl.io/8.2/overview/style.html#_CPPv423lv_style_set_line_colorP10lv_style_t10lv_color_t], lv_color_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv432lv_style_set_line_color_filteredP10lv_style_t10lv_color_t] <span id="_CPPv332lv_style_set_line_color_filteredP10lv_style_t10lv_color_t"></span><span id="_CPPv232lv_style_set_line_color_filteredP10lv_style_t10lv_color_t"></span><span id="lv_style_set_line_color_filtered__lv_style_tP.lv_color_t"></span><span id="lv__style__gen_8h_1aa64c308740441947af29c1014d15c569" class="target"></span>
+
void lv_style_set_line_color_filtered(lv_style_t *style, lv_color_t value)  
 
:
 
:
  
; <span id="_CPPv321lv_style_set_line_opaP10lv_style_t8lv_opa_t"></span><span id="_CPPv221lv_style_set_line_opaP10lv_style_t8lv_opa_t"></span><span id="lv_style_set_line_opa__lv_style_tP.lv_opa_t"></span><span id="lv__style__gen_8h_1a3750c026f2656b08e79cc7a067f10487" class="target"></span>void lv_style_set_line_opa(lv_style_t *style, lv_opa_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv421lv_style_set_line_opaP10lv_style_t8lv_opa_t] <span id="_CPPv321lv_style_set_line_opaP10lv_style_t8lv_opa_t"></span><span id="_CPPv221lv_style_set_line_opaP10lv_style_t8lv_opa_t"></span><span id="lv_style_set_line_opa__lv_style_tP.lv_opa_t"></span><span id="lv__style__gen_8h_1a3750c026f2656b08e79cc7a067f10487" class="target"></span> [https://docs.lvgl.io/8.2/overview/style.html#_CPPv432lv_style_set_line_color_filteredP10lv_style_t10lv_color_t]
+
void lv_style_set_line_opa(lv_style_t *style, lv_opa_t value)
 
:
 
:
  
; <span id="_CPPv322lv_style_set_arc_widthP10lv_style_t10lv_coord_t"></span><span id="_CPPv222lv_style_set_arc_widthP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_arc_width__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1a750e1339412e746cbfba4e6e89b2418f" class="target"></span>void lv_style_set_arc_width(lv_style_t *style, lv_c[https://docs.lvgl.io/8.2/overview/style.html#_CPPv421lv_style_set_line_opaP10lv_style_t8lv_opa_t]oord_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv422lv_style_set_arc_widthP10lv_style_t10lv_coord_t] <span id="_CPPv322lv_style_set_arc_widthP10lv_style_t10lv_coord_t"></span><span id="_CPPv222lv_style_set_arc_widthP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_arc_width__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1a750e1339412e746cbfba4e6e89b2418f" class="target"></span>
+
void lv_style_set_arc_width(lv_style_t *style, lv_coord_t value)  
 
:
 
:
  
; <span id="_CPPv324lv_style_set_arc_roundedP10lv_style_tb"></span><span id="_CPPv224lv_style_set_arc_roundedP10lv_style_tb"></span><span id="lv_style_set_arc_rounded__lv_style_tP.b"></span><span id="lv__style__gen_8h_1a9b2b6a9a777de2a91afc51825071ddd6" class="target"></span>void lv_style_set_arc_rounded(lv_style_t *style, bool [https://docs.lvgl.io/8.2/overview/style.html#_CPPv422lv_style_set_arc_widthP10lv_style_t10lv_coord_t]value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv424lv_style_set_arc_roundedP10lv_style_tb] <span id="_CPPv324lv_style_set_arc_roundedP10lv_style_tb"></span><span id="_CPPv224lv_style_set_arc_roundedP10lv_style_tb"></span><span id="lv_style_set_arc_rounded__lv_style_tP.b"></span><span id="lv__style__gen_8h_1a9b2b6a9a777de2a91afc51825071ddd6" class="target"></span>
+
void lv_style_set_arc_rounded(lv_style_t *style, bool value)  
 
:
 
:
  
; <span id="_CPPv322lv_style_set_arc_colorP10lv_style_t10lv_color_t"></span><span id="_CPPv222lv_style_set_arc_colorP10lv_style_t10lv_color_t"></span><span id="lv_style_set_arc_color__lv_style_tP.lv_color_t"></span><span id="lv__style__gen_8h_1a535413c880417f7cf893d1d834a63a8f" class="target"></span>void lv_style_set_arc_color(lv_style_t *style, lv_[https://docs.lvgl.io/8.2/overview/style.html#_CPPv424lv_style_set_arc_roundedP10lv_style_tb]color_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv422lv_style_set_arc_colorP10lv_style_t10lv_color_t] <span id="_CPPv322lv_style_set_arc_colorP10lv_style_t10lv_color_t"></span><span id="_CPPv222lv_style_set_arc_colorP10lv_style_t10lv_color_t"></span><span id="lv_style_set_arc_color__lv_style_tP.lv_color_t"></span><span id="lv__style__gen_8h_1a535413c880417f7cf893d1d834a63a8f" class="target"></span>
+
void lv_style_set_arc_color(lv_style_t *style, lv_color_t value)  
 
:
 
:
  
; <span id="_CPPv331lv_style_set_arc_color_filteredP10lv_style_t10lv_color_t"></span><span id="_CPPv231lv_style_set_arc_color_filteredP10lv_style_t10lv_color_t"></span><span id="lv_style_set_arc_color_filtered__lv_style_tP.lv_color_t"></span><span id="lv__style__gen_8h_1ab85a2b5ea76b3a9636541edff9ff84c9" class="target"></span>void lv_style_set_arc_color_filtered(lv_style_t *style[https://docs.lvgl.io/8.2/overview/style.html#_CPPv422lv_style_set_arc_colorP10lv_style_t10lv_color_t], lv_color_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv431lv_style_set_arc_color_filteredP10lv_style_t10lv_color_t] <span id="_CPPv331lv_style_set_arc_color_filteredP10lv_style_t10lv_color_t"></span><span id="_CPPv231lv_style_set_arc_color_filteredP10lv_style_t10lv_color_t"></span><span id="lv_style_set_arc_color_filtered__lv_style_tP.lv_color_t"></span><span id="lv__style__gen_8h_1ab85a2b5ea76b3a9636541edff9ff84c9" class="target"></span>
+
void lv_style_set_arc_color_filtered(lv_style_t *style, lv_color_t value)  
 
:
 
:
  
; <span id="_CPPv320lv_style_set_arc_opaP10lv_style_t8lv_opa_t"></span><span id="_CPPv220lv_style_set_arc_opaP10lv_style_t8lv_opa_t"></span><span id="lv_style_set_arc_opa__lv_style_tP.lv_opa_t"></span><span id="lv__style__gen_8h_1a013a026786dfd03c44d522a895f097b4" class="target"></span>void lv_style_set_arc_opa(lv_style_t *style, lv_opa_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv420lv_style_set_arc_opaP10lv_style_t8lv_opa_t] <span id="_CPPv320lv_style_set_arc_opaP10lv_style_t8lv_opa_t"></span><span id="_CPPv220lv_style_set_arc_opaP10lv_style_t8lv_opa_t"></span><span id="lv_style_set_arc_opa__lv_style_tP.lv_opa_t"></span><span id="lv__style__gen_8h_1a013a026786dfd03c44d522a895f097b4" class="target"></span> [https://docs.lvgl.io/8.2/overview/style.html#_CPPv431lv_style_set_arc_color_filteredP10lv_style_t10lv_color_t]
+
void lv_style_set_arc_opa(lv_style_t *style, lv_opa_t value)
 
:
 
:
  
; <span id="_CPPv324lv_style_set_arc_img_srcP10lv_style_tPKv"></span><span id="_CPPv224lv_style_set_arc_img_srcP10lv_style_tPKv"></span><span id="lv_style_set_arc_img_src__lv_style_tP.voidCP"></span><span id="lv__style__gen_8h_1af32e433f7142dff9e485f043d2ce7c2c" class="target"></span>void lv_style_set_arc_img_src(lv_style_t *style, c[https://docs.lvgl.io/8.2/overview/style.html#_CPPv420lv_style_set_arc_opaP10lv_style_t8lv_opa_t]onst void *value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv424lv_style_set_arc_img_srcP10lv_style_tPKv] <span id="_CPPv324lv_style_set_arc_img_srcP10lv_style_tPKv"></span><span id="_CPPv224lv_style_set_arc_img_srcP10lv_style_tPKv"></span><span id="lv_style_set_arc_img_src__lv_style_tP.voidCP"></span><span id="lv__style__gen_8h_1af32e433f7142dff9e485f043d2ce7c2c" class="target"></span>
+
void lv_style_set_arc_img_src(lv_style_t *style, const void *value)  
 
:
 
:
  
; <span id="_CPPv323lv_style_set_text_colorP10lv_style_t10lv_color_t"></span><span id="_CPPv223lv_style_set_text_colorP10lv_style_t10lv_color_t"></span><span id="lv_style_set_text_color__lv_style_tP.lv_color_t"></span><span id="lv__style__gen_8h_1a74d7ad0e1d27b174a82fd95786020dbd" class="target"></span>void lv_style_set_text_color(lv_style_t *style, lv_color_[https://docs.lvgl.io/8.2/overview/style.html#_CPPv424lv_style_set_arc_img_srcP10lv_style_tPKv]t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv423lv_style_set_text_colorP10lv_style_t10lv_color_t] <span id="_CPPv323lv_style_set_text_colorP10lv_style_t10lv_color_t"></span><span id="_CPPv223lv_style_set_text_colorP10lv_style_t10lv_color_t"></span><span id="lv_style_set_text_color__lv_style_tP.lv_color_t"></span><span id="lv__style__gen_8h_1a74d7ad0e1d27b174a82fd95786020dbd" class="target"></span>
+
void lv_style_set_text_color(lv_style_t *style, lv_color_t value)  
 
:
 
:
  
; <span id="_CPPv332lv_style_set_text_color_filteredP10lv_style_t10lv_color_t"></span><span id="_CPPv232lv_style_set_text_color_filteredP10lv_style_t10lv_color_t"></span><span id="lv_style_set_text_color_filtered__lv_style_tP.lv_color_t"></span><span id="lv__style__gen_8h_1ad174aa898fbbb8851323d0746586d62b" class="target"></span>void lv_style_set_text_color_filtered(lv_style_t *style[https://docs.lvgl.io/8.2/overview/style.html#_CPPv423lv_style_set_text_colorP10lv_style_t10lv_color_t], lv_color_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv432lv_style_set_text_color_filteredP10lv_style_t10lv_color_t] <span id="_CPPv332lv_style_set_text_color_filteredP10lv_style_t10lv_color_t"></span><span id="_CPPv232lv_style_set_text_color_filteredP10lv_style_t10lv_color_t"></span><span id="lv_style_set_text_color_filtered__lv_style_tP.lv_color_t"></span><span id="lv__style__gen_8h_1ad174aa898fbbb8851323d0746586d62b" class="target"></span>
+
void lv_style_set_text_color_filtered(lv_style_t *style, lv_color_t value)  
 
:
 
:
  
; <span id="_CPPv321lv_style_set_text_opaP10lv_style_t8lv_opa_t"></span><span id="_CPPv221lv_style_set_text_opaP10lv_style_t8lv_opa_t"></span><span id="lv_style_set_text_opa__lv_style_tP.lv_opa_t"></span><span id="lv__style__gen_8h_1adaeddf05503fde910e64aa1465d7af78" class="target"></span>void lv_style_set_text_opa(lv_style_t *style, lv_opa_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv421lv_style_set_text_opaP10lv_style_t8lv_opa_t] <span id="_CPPv321lv_style_set_text_opaP10lv_style_t8lv_opa_t"></span><span id="_CPPv221lv_style_set_text_opaP10lv_style_t8lv_opa_t"></span><span id="lv_style_set_text_opa__lv_style_tP.lv_opa_t"></span><span id="lv__style__gen_8h_1adaeddf05503fde910e64aa1465d7af78" class="target"></span> [https://docs.lvgl.io/8.2/overview/style.html#_CPPv432lv_style_set_text_color_filteredP10lv_style_t10lv_color_t]
+
void lv_style_set_text_opa(lv_style_t *style, lv_opa_t value)
 
:
 
:
  
; <span id="_CPPv322lv_style_set_text_fontP10lv_style_tPK9lv_font_t"></span><span id="_CPPv222lv_style_set_text_fontP10lv_style_tPK9lv_font_t"></span><span id="lv_style_set_text_font__lv_style_tP.lv_font_tCP"></span><span id="lv__style__gen_8h_1a29f1e691827a59d9b27863151700b385" class="target"></span>void lv_style_set_text_font(lv_style_t *style, cons[https://docs.lvgl.io/8.2/overview/style.html#_CPPv421lv_style_set_text_opaP10lv_style_t8lv_opa_t]t lv_font_t *value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv422lv_style_set_text_fontP10lv_style_tPK9lv_font_t] <span id="_CPPv322lv_style_set_text_fontP10lv_style_tPK9lv_font_t"></span><span id="_CPPv222lv_style_set_text_fontP10lv_style_tPK9lv_font_t"></span><span id="lv_style_set_text_font__lv_style_tP.lv_font_tCP"></span><span id="lv__style__gen_8h_1a29f1e691827a59d9b27863151700b385" class="target"></span>
+
void lv_style_set_text_font(lv_style_t *style, const lv_font_t *value)  
 
:
 
:
  
; <span id="_CPPv330lv_style_set_text_letter_spaceP10lv_style_t10lv_coord_t"></span><span id="_CPPv230lv_style_set_text_letter_spaceP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_text_letter_space__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1a286ca833c39e818e7c46a2ddfcc7f596" class="target"></span>void lv_style_set_text_letter_space(lv_style_t *style, lv_co[https://docs.lvgl.io/8.2/overview/style.html#_CPPv422lv_style_set_text_fontP10lv_style_tPK9lv_font_t]ord_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv430lv_style_set_text_letter_spaceP10lv_style_t10lv_coord_t] <span id="_CPPv330lv_style_set_text_letter_spaceP10lv_style_t10lv_coord_t"></span><span id="_CPPv230lv_style_set_text_letter_spaceP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_text_letter_space__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1a286ca833c39e818e7c46a2ddfcc7f596" class="target"></span>
+
void lv_style_set_text_letter_space(lv_style_t *style, lv_coord_t value)  
 
:
 
:
  
; <span id="_CPPv328lv_style_set_text_line_spaceP10lv_style_t10lv_coord_t"></span><span id="_CPPv228lv_style_set_text_line_spaceP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_text_line_space__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1ac8d2240dfff961694b195cc59424fbfd" class="target"></span>void lv_style_set_text_line_space(lv_style_t *style, lv_coord_[https://docs.lvgl.io/8.2/overview/style.html#_CPPv430lv_style_set_text_letter_spaceP10lv_style_t10lv_coord_t]t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv428lv_style_set_text_line_spaceP10lv_style_t10lv_coord_t] <span id="_CPPv328lv_style_set_text_line_spaceP10lv_style_t10lv_coord_t"></span><span id="_CPPv228lv_style_set_text_line_spaceP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_text_line_space__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1ac8d2240dfff961694b195cc59424fbfd" class="target"></span>
+
void lv_style_set_text_line_space(lv_style_t *style, lv_coord_t value)  
 
:
 
:
  
; <span id="_CPPv323lv_style_set_text_decorP10lv_style_t15lv_text_decor_t"></span><span id="_CPPv223lv_style_set_text_decorP10lv_style_t15lv_text_decor_t"></span><span id="lv_style_set_text_decor__lv_style_tP.lv_text_decor_t"></span><span id="lv__style__gen_8h_1a499b17a606c5712c66b82f5a3c2f9453" class="target"></span>void lv_style_set_text_decor(lv_style_t *style, lv_text_deco[https://docs.lvgl.io/8.2/overview/style.html#_CPPv428lv_style_set_text_line_spaceP10lv_style_t10lv_coord_t]r_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv423lv_style_set_text_decorP10lv_style_t15lv_text_decor_t] <span id="_CPPv323lv_style_set_text_decorP10lv_style_t15lv_text_decor_t"></span><span id="_CPPv223lv_style_set_text_decorP10lv_style_t15lv_text_decor_t"></span><span id="lv_style_set_text_decor__lv_style_tP.lv_text_decor_t"></span><span id="lv__style__gen_8h_1a499b17a606c5712c66b82f5a3c2f9453" class="target"></span>
+
void lv_style_set_text_decor(lv_style_t *style, lv_text_decor_t value)  
 
:
 
:
  
; <span id="_CPPv323lv_style_set_text_alignP10lv_style_t15lv_text_align_t"></span><span id="_CPPv223lv_style_set_text_alignP10lv_style_t15lv_text_align_t"></span><span id="lv_style_set_text_align__lv_style_tP.lv_text_align_t"></span><span id="lv__style__gen_8h_1a2172551d934c38250496ae28782ee6c4" class="target"></span>void lv_style_set_text_align(lv_style_t *style, lv_text_alig[https://docs.lvgl.io/8.2/overview/style.html#_CPPv423lv_style_set_text_decorP10lv_style_t15lv_text_decor_t]n_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv423lv_style_set_text_alignP10lv_style_t15lv_text_align_t] <span id="_CPPv323lv_style_set_text_alignP10lv_style_t15lv_text_align_t"></span><span id="_CPPv223lv_style_set_text_alignP10lv_style_t15lv_text_align_t"></span><span id="lv_style_set_text_align__lv_style_tP.lv_text_align_t"></span><span id="lv__style__gen_8h_1a2172551d934c38250496ae28782ee6c4" class="target"></span>
+
void lv_style_set_text_align(lv_style_t *style, lv_text_align_t value)  
 
:
 
:
  
; <span id="_CPPv319lv_style_set_radiusP10lv_style_t10lv_coord_t"></span><span id="_CPPv219lv_style_set_radiusP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_radius__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1a0dd5fb2e6774c389eb2054f74dab3e78" class="target"></span>void lv_style_set_radius(lv_style_t *style, lv_coord_t value[https://docs.lvgl.io/8.2/overview/style.html#_CPPv423lv_style_set_text_alignP10lv_style_t15lv_text_align_t])[https://docs.lvgl.io/8.2/overview/style.html#_CPPv419lv_style_set_radiusP10lv_style_t10lv_coord_t] <span id="_CPPv319lv_style_set_radiusP10lv_style_t10lv_coord_t"></span><span id="_CPPv219lv_style_set_radiusP10lv_style_t10lv_coord_t"></span><span id="lv_style_set_radius__lv_style_tP.lv_coord_t"></span><span id="lv__style__gen_8h_1a0dd5fb2e6774c389eb2054f74dab3e78" class="target"></span>
+
void lv_style_set_radius(lv_style_t *style, lv_coord_t value)  
 
:
 
:
  
; <span id="_CPPv324lv_style_set_clip_cornerP10lv_style_tb"></span><span id="_CPPv224lv_style_set_clip_cornerP10lv_style_tb"></span><span id="lv_style_set_clip_corner__lv_style_tP.b"></span><span id="lv__style__gen_8h_1a56b599138f1a73bfba5c2cd05e552168" class="target"></span>void lv_style_set_clip_corner(lv_style_t *style, bo[https://docs.lvgl.io/8.2/overview/style.html#_CPPv419lv_style_set_radiusP10lv_style_t10lv_coord_t]ol value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv424lv_style_set_clip_cornerP10lv_style_tb] <span id="_CPPv324lv_style_set_clip_cornerP10lv_style_tb"></span><span id="_CPPv224lv_style_set_clip_cornerP10lv_style_tb"></span><span id="lv_style_set_clip_corner__lv_style_tP.b"></span><span id="lv__style__gen_8h_1a56b599138f1a73bfba5c2cd05e552168" class="target"></span>
+
void lv_style_set_clip_corner(lv_style_t *style, bool value)  
 
:
 
:
  
; <span id="_CPPv316lv_style_set_opaP10lv_style_t8lv_opa_t"></span><span id="_CPPv216lv_style_set_opaP10lv_style_t8lv_opa_t"></span><span id="lv_style_set_opa__lv_style_tP.lv_opa_t"></span><span id="lv__style__gen_8h_1ae29a93c30a0bf5d0a9af6c84c4022881" class="target"></span>void lv_style_set_opa(lv_style_t *style, lv_opa_t [https://docs.lvgl.io/8.2/overview/style.html#_CPPv424lv_style_set_clip_cornerP10lv_style_tb]value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv416lv_style_set_opaP10lv_style_t8lv_opa_t] <span id="_CPPv316lv_style_set_opaP10lv_style_t8lv_opa_t"></span><span id="_CPPv216lv_style_set_opaP10lv_style_t8lv_opa_t"></span><span id="lv_style_set_opa__lv_style_tP.lv_opa_t"></span><span id="lv__style__gen_8h_1ae29a93c30a0bf5d0a9af6c84c4022881" class="target"></span>
+
void lv_style_set_opa(lv_style_t *style, lv_opa_t value)  
 
:
 
:
  
; <span id="_CPPv329lv_style_set_color_filter_dscP10lv_style_tPK21lv_color_filter_dsc_t"></span><span id="_CPPv229lv_style_set_color_filter_dscP10lv_style_tPK21lv_color_filter_dsc_t"></span><span id="lv_style_set_color_filter_dsc__lv_style_tP.lv_color_filter_dsc_tCP"></span><span id="lv__style__gen_8h_1a7b9eb50a8ed2399a85f124566f78a586" class="target"></span>void lv_style_set_color_filter_dsc(lv_style_t [https://docs.lvgl.io/8.2/overview/style.html#_CPPv416lv_style_set_opaP10lv_style_t8lv_opa_t]*style, const lv_color_filter_dsc_t *value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv429lv_style_set_color_filter_dscP10lv_style_tPK21lv_color_filter_dsc_t] <span id="_CPPv329lv_style_set_color_filter_dscP10lv_style_tPK21lv_color_filter_dsc_t"></span><span id="_CPPv229lv_style_set_color_filter_dscP10lv_style_tPK21lv_color_filter_dsc_t"></span><span id="lv_style_set_color_filter_dsc__lv_style_tP.lv_color_filter_dsc_tCP"></span><span id="lv__style__gen_8h_1a7b9eb50a8ed2399a85f124566f78a586" class="target"></span>
+
void lv_style_set_color_filter_dsc(lv_style_t *style, const lv_color_filter_dsc_t *value)  
 
:
 
:
  
; <span id="_CPPv329lv_style_set_color_filter_opaP10lv_style_t8lv_opa_t"></span><span id="_CPPv229lv_style_set_color_filter_opaP10lv_style_t8lv_opa_t"></span><span id="lv_style_set_color_filter_opa__lv_style_tP.lv_opa_t"></span><span id="lv__style__gen_8h_1a09f5d3cfffc953c01c312a10d6a96510" class="target"></span>void lv_style_set_color_filter_opa(lv_style_t *style, lv_opa_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv429lv_style_set_color_filter_opaP10lv_style_t8lv_opa_t] <span id="_CPPv329lv_style_set_color_filter_opaP10lv_style_t8lv_opa_t"></span><span id="_CPPv229lv_style_set_color_filter_opaP10lv_style_t8lv_opa_t"></span><span id="lv_style_set_color_filter_opa__lv_style_tP.lv_opa_t"></span><span id="lv__style__gen_8h_1a09f5d3cfffc953c01c312a10d6a96510" class="target"></span>
+
void lv_style_set_color_filter_opa(lv_style_t *style, lv_opa_t value)  
 
:
 
:
  
[https://docs.lvgl.io/8.2/overview/style.html#_CPPv429lv_style_set_color_filter_dscP10lv_style_tPK21lv_color_filter_dsc_t]
+
 
; <span id="_CPPv322lv_style_set_anim_timeP10lv_style_t8uint32_t"></span><span id="_CPPv222lv_style_set_anim_timeP10lv_style_t8uint32_t"></span><span id="lv_style_set_anim_time__lv_style_tP.uint32_t"></span><span id="lv__style__gen_8h_1ab3b930847616ba07fc744bd65e3b28d1" class="target"></span>void lv_style_set_anim_time(lv_style_t *style, uint32_t val[https://docs.lvgl.io/8.2/overview/style.html#_CPPv429lv_style_set_color_filter_opaP10lv_style_t8lv_opa_t]ue)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv422lv_style_set_anim_timeP10lv_style_t8uint32_t] <span id="_CPPv322lv_style_set_anim_timeP10lv_style_t8uint32_t"></span><span id="_CPPv222lv_style_set_anim_timeP10lv_style_t8uint32_t"></span><span id="lv_style_set_anim_time__lv_style_tP.uint32_t"></span><span id="lv__style__gen_8h_1ab3b930847616ba07fc744bd65e3b28d1" class="target"></span>
+
void lv_style_set_anim_time(lv_style_t *style, uint32_t value)  
 
:
 
:
  
; <span id="_CPPv323lv_style_set_anim_speedP10lv_style_t8uint32_t"></span><span id="_CPPv223lv_style_set_anim_speedP10lv_style_t8uint32_t"></span><span id="lv_style_set_anim_speed__lv_style_tP.uint32_t"></span><span id="lv__style__gen_8h_1a25eae4307340c300fc96aeb3c65a4592" class="target"></span>void lv_style_set_anim_speed(lv_style_t *style, uint[https://docs.lvgl.io/8.2/overview/style.html#_CPPv422lv_style_set_anim_timeP10lv_style_t8uint32_t]32_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv423lv_style_set_anim_speedP10lv_style_t8uint32_t] <span id="_CPPv323lv_style_set_anim_speedP10lv_style_t8uint32_t"></span><span id="_CPPv223lv_style_set_anim_speedP10lv_style_t8uint32_t"></span><span id="lv_style_set_anim_speed__lv_style_tP.uint32_t"></span><span id="lv__style__gen_8h_1a25eae4307340c300fc96aeb3c65a4592" class="target"></span>
+
void lv_style_set_anim_speed(lv_style_t *style, uint32_t value)  
 
:
 
:
  
; <span id="_CPPv323lv_style_set_transitionP10lv_style_tPK25lv_style_transition_dsc_t"></span><span id="_CPPv223lv_style_set_transitionP10lv_style_tPK25lv_style_transition_dsc_t"></span><span id="lv_style_set_transition__lv_style_tP.lv_style_transition_dsc_tCP"></span><span id="lv__style__gen_8h_1a60842f0a8c2e4405f98e54640dfd0430" class="target"></span>void lv_style_set_transition(lv_style_t *style, const[https://docs.lvgl.io/8.2/overview/style.html#_CPPv423lv_style_set_anim_speedP10lv_style_t8uint32_t] lv_style_transition_dsc_t *value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv423lv_style_set_transitionP10lv_style_tPK25lv_style_transition_dsc_t] <span id="_CPPv323lv_style_set_transitionP10lv_style_tPK25lv_style_transition_dsc_t"></span><span id="_CPPv223lv_style_set_transitionP10lv_style_tPK25lv_style_transition_dsc_t"></span><span id="lv_style_set_transition__lv_style_tP.lv_style_transition_dsc_tCP"></span><span id="lv__style__gen_8h_1a60842f0a8c2e4405f98e54640dfd0430" class="target"></span>
+
void lv_style_set_transition(lv_style_t *style, const lv_style_transition_dsc_t *value)  
 
:
 
:
  
; <span id="_CPPv323lv_style_set_blend_modeP10lv_style_t15lv_blend_mode_t"></span><span id="_CPPv223lv_style_set_blend_modeP10lv_style_t15lv_blend_mode_t"></span><span id="lv_style_set_blend_mode__lv_style_tP.lv_blend_mode_t"></span><span id="lv__style__gen_8h_1acf2f4e9d22213bc225a62af4817f7464" class="target"></span>void lv_style_set_blend_mode(lv_style_t *style, lv_blend_mode_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv423lv_style_set_blend_modeP10lv_style_t15lv_blend_mode_t] <span id="_CPPv323lv_style_set_blend_modeP10lv_style_t15lv_blend_mode_t"></span><span id="_CPPv223lv_style_set_blend_modeP10lv_style_t15lv_blend_mode_t"></span><span id="lv_style_set_blend_mode__lv_style_tP.lv_blend_mode_t"></span><span id="lv__style__gen_8h_1acf2f4e9d22213bc225a62af4817f7464" class="target"></span>
+
void lv_style_set_blend_mode(lv_style_t *style, lv_blend_mode_t value)  
[https://docs.lvgl.io/8.2/overview/style.html#_CPPv423lv_style_set_transitionP10lv_style_tPK25lv_style_transition_dsc_t]
+
:   
  
; <span id="_CPPv319lv_style_set_layoutP10lv_style_t8uint16_t"></span><span id="_CPPv219lv_style_set_layoutP10lv_style_t8uint16_t"></span><span id="lv_style_set_layout__lv_style_tP.uint16_t"></span><span id="lv__style__gen_8h_1af3178ef626339150522f4f5dfebf6d32" class="target"></span>void lv_style_set_layout(lv_style_t *style, uint16_t value)[https://docs.lvgl.io/8.2/overview/style.html#_CPPv419lv_style_set_layoutP10lv_style_t8uint16_t][https://docs.lvgl.io/8.2/overview/style.html#_CPPv423lv_style_set_blend_modeP10lv_style_t15lv_blend_mode_t] <span id="_CPPv319lv_style_set_layoutP10lv_style_t8uint16_t"></span><span id="_CPPv219lv_style_set_layoutP10lv_style_t8uint16_t"></span><span id="lv_style_set_layout__lv_style_tP.uint16_t"></span><span id="lv__style__gen_8h_1af3178ef626339150522f4f5dfebf6d32" class="target"></span>
+
void lv_style_set_layout(lv_style_t *style, uint16_t value)  
 
:
 
:
  
; <span id="_CPPv321lv_style_set_base_dirP10lv_style_t13lv_base_dir_t"></span><span id="_CPPv221lv_style_set_base_dirP10lv_style_t13lv_base_dir_t"></span><span id="lv_style_set_base_dir__lv_style_tP.lv_base_dir_t"></span><span id="lv__style__gen_8h_1a6ede3283d160d46e78e56569e1059af6" class="target"></span>void lv_style_set_base_dir(lv_style_t *style, lv_[https://docs.lvgl.io/8.2/overview/style.html#_CPPv419lv_style_set_layoutP10lv_style_t8uint16_t]base_dir_t value)
+
void lv_style_set_base_dir(lv_style_t *style, lv_base_dir_t value)
  
  

2022年6月30日 (木) 20:55時点における版

https://docs.lvgl.io/8.2/overview/style.html

Styles

Styles are used to set the appearance of objects. Styles in lvgl are heavily inspired by CSS. The concept in a nutshell is as follows:

  • A style is an lv_style_t variable which can hold properties like border width, text color and so on. It's similar to a class in CSS.
  • Styles can be assigned to objects to change their appearance. Upon assignment, the target part (pseudo-element in CSS) and target state (pseudo class) can be specified. For example one can add style_blue to the knob of a slider when it's in pressed state.
  • The same style can be used by any number of objects.
  • Styles can be cascaded which means multiple styles may be assigned to an object and each style can have different properties. Therefore, not all properties have to be specified in a style. LVGL will search for a property until a style defines it or use a default if it's not specified by any of the styles. For example style_btn can result in a default gray button and style_btn_red can add only a background-color=red to overwrite the background color.
  • The most recently added style has higher precedence. This means if a property is specified in two styles the newest style in the object will be used.
  • Some properties (e.g. text color) can be inherited from a parent(s) if it's not specified in an object.
  • Objects can also have local styles with higher precedence than "normal" styles.
  • Unlike CSS (where pseudo-classes describe different states, e.g. :focus), in LVGL a property is assigned to a given state.
  • Transitions can be applied when the object changes state.

States

The objects can be in the combination of the following states:

  • LV_STATE_DEFAULT (0x0000) Normal, released state
  • LV_STATE_CHECKED (0x0001) Toggled or checked state
  • LV_STATE_FOCUSED (0x0002) Focused via keypad or encoder or clicked via touchpad/mouse
  • LV_STATE_FOCUS_KEY (0x0004) Focused via keypad or encoder but not via touchpad/mouse
  • LV_STATE_EDITED (0x0008) Edit by an encoder
  • LV_STATE_HOVERED (0x0010) Hovered by mouse (not supported now)
  • LV_STATE_PRESSED (0x0020) Being pressed
  • LV_STATE_SCROLLED (0x0040) Being scrolled
  • LV_STATE_DISABLED (0x0080) Disabled state
  • LV_STATE_USER_1 (0x1000) Custom state
  • LV_STATE_USER_2 (0x2000) Custom state
  • LV_STATE_USER_3 (0x4000) Custom state
  • LV_STATE_USER_4 (0x8000) Custom state

An object can be in a combination of states such as being focused and pressed at the same time. This is represented as LV_STATE_FOCUSED | LV_STATE_PRESSED.

A style can be added to any state or state combination. For example, setting a different background color for the default and pressed states. If a property is not defined in a state the best matching state's property will be used. Typically this means the property with LV_STATE_DEFAULT is used.˛ If the property is not set even for the default state the default value will be used. (See later)

But what does the "best matching state's property" really mean? States have a precedence which is shown by their value (see in the above list). A higher value means higher precedence. To determine which state's property to use let's take an example. Imagine the background color is defined like this:

  • LV_STATE_DEFAULT: white
  • LV_STATE_PRESSED: gray
  • LV_STATE_FOCUSED: red
  1. Initially the object is in the default state, so it's a simple case: the property is perfectly defined in the object's current state as white.
  2. When the object is pressed there are 2 related properties: default with white (default is related to every state) and pressed with gray. The pressed state has 0x0020 precedence which is higher than the default state's 0x0000 precedence, so gray color will be used.
  3. When the object is focused the same thing happens as in pressed state and red color will be used. (Focused state has higher precedence than default state).
  4. When the object is focused and pressed both gray and red would work, but the pressed state has higher precedence than focused so gray color will be used.
  5. It's possible to set e.g. rose color for LV_STATE_PRESSED | LV_STATE_FOCUSED. In this case, this combined state has 0x0020 + 0x0002 = 0x0022 precedence, which is higher than the pressed state's precedence so rose color would be used.
  6. When the object is in the checked state there is no property to set the background color for this state. So for lack of a better option, the object remains white from the default state's property.

Some practical notes:

  • The precedence (value) of states is quite intuitive, and it's something the user would expect naturally. E.g. if an object is focused the user will still want to see if it's pressed, therefore the pressed state has a higher precedence. If the focused state had a higher precedence it would overwrite the pressed color.
  • If you want to set a property for all states (e.g. red background color) just set it for the default state. If the object can't find a property for its current state it will fall back to the default state's property.
  • Use ORed states to describe the properties for complex cases. (E.g. pressed + checked + focused)
  • It might be a good idea to use different style elements for different states. For example, finding background colors for released, pressed, checked + pressed, focused, focused + pressed, focused + pressed + checked, etc. states is quite difficult. Instead, for example, use the background color for pressed and checked states and indicate the focused state with a different border color.



Cascading styles

It's not required to set all the properties in one style. It's possible to add more styles to an object and have the latter added style modify or extend appearance. For example, create a general gray button style and create a new one for red buttons where only the new background color is set.

This is much like in CSS when used classes are listed like <div class=".btn .btn-red">.

Styles added later have precedence over ones set earlier. So in the gray/red button example above, the normal button style should be added first and the red style second. However, the precedence of the states are still taken into account. So let's examine the following case:

  • the basic button style defines dark-gray color for the default state and light-gray color for the pressed state
  • the red button style defines the background color as red only in the default state

In this case, when the button is released (it's in default state) it will be red because a perfect match is found in the most recently added style (red). When the button is pressed the light-gray color is a better match because it describes the current state perfectly, so the button will be light-gray.

Inheritance

Some properties (typically those related to text) can be inherited from the parent object's styles. Inheritance is applied only if the given property is not set in the object's styles (even in default state). In this case, if the property is inheritable, the property's value will be searched in the parents until an object specifies a value for the property. The parents will use their own state to determine the value. So if a button is pressed, and the text color comes from here, the pressed text color will be used.

Parts

Objects can be composed of parts which may each have their own styles.

The following predefined parts exist in LVGL:

  • LV_PART_MAIN A background like rectangle
  • LV_PART_SCROLLBAR The scrollbar(s)
  • LV_PART_INDICATOR Indicator, e.g. for slider, bar, switch, or the tick box of the checkbox
  • LV_PART_KNOB Like a handle to grab to adjust a value
  • LV_PART_SELECTED Indicate the currently selected option or section
  • LV_PART_ITEMS Used if the widget has multiple similar elements (e.g. table cells)
  • LV_PART_TICKS Ticks on scales e.g. for a chart or meter
  • LV_PART_CURSOR Mark a specific place e.g. text area's or chart's cursor
  • LV_PART_CUSTOM_FIRST Custom part identifiers can be added starting from here.

For example a Slider has three parts:

  • Background
  • Indicator
  • Knob

This means all three parts of the slider can have their own styles. See later how to add styles to objects and parts.

Initialize styles and set/get properties

Styles are stored in lv_style_t variables. Style variables should be static, global or dynamically allocated. In other words they cannot be local variables in functions which are destroyed when the function exits. Before using a style it should be initialized with lv_style_init(&my_style). After initializing a style, properties can be added or changed.

Property set functions looks like this: lv_style_set_<property_name>(&style, <value>); For example:

static lv_style_t style_btn;
lv_style_init(&style_btn);
lv_style_set_bg_color(&style_btn, lv_color_hex(0x115588));
lv_style_set_bg_opa(&style_btn, LV_OPA_50);
lv_style_set_border_width(&style_btn, 2);
lv_style_set_border_color(&style_btn, lv_color_black());

static lv_style_t style_btn_red;
lv_style_init(&style_btn_red);
lv_style_set_bg_color(&style_btn_red, lv_plaette_main(LV_PALETTE_RED));
lv_style_set_bg_opa(&style_btn_red, LV_OPA_COVER);

To remove a property use:

lv_style_remove_prop(&style, LV_STYLE_BG_COLOR);

To get a property's value from a style:

lv_style_value_t v;
lv_res_t res = lv_style_get_prop(&style, LV_STYLE_BG_COLOR, &v);
if(res == LV_RES_OK) {	/*Found*/
	do_something(v.color);
}

lv_style_value_t has 3 fields:

  • num for integer, boolean and opacity properties
  • color for color properties
  • ptr for pointer properties

To reset a style (free all its data) use:

lv_style_reset(&style);

Styles can be built as const too to save RAM:

const lv_style_const_prop_t style1_props[] = {
   LV_STYLE_CONST_WIDTH(50),
   LV_STYLE_CONST_HEIGHT(50),
   LV_STYLE_PROP_INV,
};
     
LV_STYLE_CONST_INIT(style1, style1_props);

Later const style can be used like any other style but (obviously) new properties can not be added.

Add and remove styles to a widget

A style on its own is not that useful. It must be assigned to an object to take effect.

Add styles

To add a style to an object use lv_obj_add_style(obj, &style, <selector>). <selector> is an OR-ed value of parts and state to which the style should be added. Some examples:

  • LV_PART_MAIN | LV_STATE_DEFAULT
  • LV_STATE_PRESSED: The main part in pressed state. LV_PART_MAIN can be omitted
  • LV_PART_SCROLLBAR: The scrollbar part in the default state. LV_STATE_DEFAULT can be omitted.
  • LV_PART_SCROLLBAR | LV_STATE_SCROLLED: The scrollbar part when the object is being scrolled
  • 0 Same as LV_PART_MAIN | LV_STATE_DEFAULT.
  • LV_PART_INDICATOR | LV_STATE_PRESSED | LV_STATE_CHECKED The indicator part when the object is pressed and checked at the same time.



Using lv_obj_add_style:

lv_obj_add_style(btn, &style_btn, 0);      				  /*Default button style*/
lv_obj_add_style(btn, &btn_red, LV_STATE_PRESSED);  /*Overwrite only some colors to red when pressed*/

Remove styles

To remove all styles from an object use lv_obj_remove_style_all(obj).

To remove specific styles use lv_obj_remove_style(obj, style, selector). This function will remove style only if the selector matches with the selector used in lv_obj_add_style. style can be NULL to check only the selector and remove all matching styles. The selector can use the LV_STATE_ANY and LV_PART_ANY values to remove the style from any state or part.

Report style changes

If a style which is already assigned to an object changes (i.e. a property is added or changed), the objects using that style should be notified. There are 3 options to do this:

  1. If you know that the changed properties can be applied by a simple redraw (e.g. color or opacity changes) just call lv_obj_invalidate(obj) or lv_obj_invalidate(lv_scr_act()).
  2. If more complex style properties were changed or added, and you know which object(s) are affected by that style call lv_obj_refresh_style(obj, part, property). To refresh all parts and properties use lv_obj_refresh_style(obj, LV_PART_ANY, LV_STYLE_PROP_ANY).
  3. To make LVGL check all objects to see if they use a style and refresh them when needed, call lv_obj_report_style_change(&style). If style is NULL all objects will be notified about a style change.



Get a property's value on an object

To get a final value of property - considering cascading, inheritance, local styles and transitions (see below) - property get functions like this can be used: lv_obj_get_style_<property_name>(obj, <part>). These functions use the object's current state and if no better candidate exists they return a default value.   For example:

lv_color_t color = lv_obj_get_style_bg_color(btn, LV_PART_MAIN);

Local styles

In addition to "normal" styles, objects can also store local styles. This concept is similar to inline styles in CSS (e.g. <div style="color:red">) with some modification.

Local styles are like normal styles, but they can't be shared among other objects. If used, local styles are allocated automatically, and freed when the object is deleted. They are useful to add local customization to an object.

Unlike in CSS, LVGL local styles can be assigned to states (pseudo-classes) and parts (pseudo-elements).

To set a local property use functions like lv_obj_set_style_<property_name>(obj, <value>, <selector>);   For example:

lv_obj_set_style_bg_color(slider, lv_color_red(), LV_PART_INDICATOR | LV_STATE_FOCUSED);

Properties

For the full list of style properties click here.

Typical background properties

In the documentation of the widgets you will see sentences like "The widget uses the typical background properties". These "typical background properties" are the ones related to:

  • Background
  • Border
  • Outline
  • Shadow
  • Padding
  • Width and height transformation
  • X and Y translation

Transitions

By default, when an object changes state (e.g. it's pressed) the new properties from the new state are set immediately. However, with transitions it's possible to play an animation on state change. For example, on pressing a button its background color can be animated to the pressed color over 300 ms.

The parameters of the transitions are stored in the styles. It's possible to set

  • the time of the transition
  • the delay before starting the transition
  • the animation path (also known as the timing or easing function)
  • the properties to animate

The transition properties can be defined for each state. For example, setting a 500 ms transition time in the default state means that when the object goes to the default state a 500 ms transition time is applied. Setting a 100 ms transition time in the pressed state causes a 100 ms transition when going to the pressed state. This example configuration results in going to the pressed state quickly and then going back to default slowly.

To describe a transition an lv_transition_dsc_t variable needs to be initialized and added to a style:

/*Only its pointer is saved so must static, global or dynamically allocated */
static const lv_style_prop_t trans_props[] = {
											LV_STYLE_BG_OPA, LV_STYLE_BG_COLOR,
											0, /*End marker*/
};

static lv_style_transition_dsc_t trans1;
lv_style_transition_dsc_init(&trans1, trans_props, lv_anim_path_ease_out, duration_ms, delay_ms);

lv_style_set_transition(&style1, &trans1);

Color filter

TODO

Themes

Themes are a collection of styles. If there is an active theme LVGL applies it on every created widget. This will give a default appearance to the UI which can then be modified by adding further styles.

Every display can have a different theme. For example, you could have a colorful theme on a TFT and monochrome theme on a secondary monochrome display.

To set a theme for a display, two steps are required:

  1. Initialize a theme
  2. Assign the initialized theme to a display.

Theme initialization functions can have different prototypes. This example shows how to set the "default" theme:

lv_theme_t * th = lv_theme_default_init(display,  /*Use the DPI, size, etc from this display*/ 
                                        LV_COLOR_PALETTE_BLUE, LV_COLOR_PALETTE_CYAN,   /*Primary and secondary palette*/
                                        false,    /*Light or dark mode*/ 
                                        &lv_font_montserrat_10, &lv_font_montserrat_14, &lv_font_montserrat_18); /*Small, normal, large fonts*/
                                        
lv_disp_set_theme(display, th); /*Assign the theme to the display*/

The included themes are enabled in lv_conf.h. If the default theme is enabled by LV_USE_THEME_DEFAULT 1 LVGL automatically initializes and sets it when a display is created.

Extending themes

Built-in themes can be extended. If a custom theme is created, a parent theme can be selected. The parent theme's styles will be added before the custom theme's styles. Any number of themes can be chained this way. E.g. default theme -> custom theme -> dark theme.

lv_theme_set_parent(new_theme, base_theme) extends the base_theme with the new_theme.

There is an example for it below.

Examples

Size styles

LVGL docs example 004.png


Background styles

LVGL docs example 005.png


Border styles

LVGL docs example 006.png


Outline styles

LVGL docs example 007.png


Shadow styles

LVGL docs example 008.png


Image styles

LVGL docs example 009.png


Arc styles

LVGL docs overview style 07.png


Text styles

LVGL docs example 010.png


Line styles

LVGL docs example 011.png


Transition

LVGL docs example 012.png


Using multiple styles

LVGL docs example 013.png


Local styles

LVGL docs example 014.png


Add styles to parts and states

LVGL docs example 016.png


Extending the current theme

LVGL docs example 017.png


API

Typedefs

typedef uint8_t lv_blend_mode_t

typedef uint8_t lv_text_decor_t

typedef uint8_t lv_border_side_t

typedef uint8_t lv_grad_dir_t

typedef uint8_t lv_dither_mode_t

Enums

enum [anonymous]

Possible options how to blend opaque drawings Values:
enumerator LV_BLEND_MODE_NORMAL
Simply mix according to the opacity value
enumerator LV_BLEND_MODE_ADDITIVE
Add the respective color channels
enumerator LV_BLEND_MODE_SUBTRACTIVE
Subtract the foreground from the background
enumerator LV_BLEND_MODE_MULTIPLY
Multiply the foreground and background
enumerator LV_BLEND_MODE_REPLACE
Replace background with foreground in the area

enum [anonymous]

Some options to apply decorations on texts. 'OR'ed values can be used. Values:
enumerator LV_TEXT_DECOR_NONE
enumerator LV_TEXT_DECOR_UNDERLINE
enumerator LV_TEXT_DECOR_STRIKETHROUGH

enum [anonymous]

Selects on which sides border should be drawn 'OR'ed values can be used. Values:
enumerator LV_BORDER_SIDE_NONE
enumerator LV_BORDER_SIDE_BOTTOM
enumerator LV_BORDER_SIDE_TOP
enumerator LV_BORDER_SIDE_LEFT
enumerator LV_BORDER_SIDE_RIGHT
enumerator LV_BORDER_SIDE_FULL
enumerator LV_BORDER_SIDE_INTERNAL
FOR matrix-like objects (e.g. Button matrix)

enum [anonymous]

The direction of the gradient. Values:
enumerator LV_GRAD_DIR_NONE
No gradient (the grad_color property is ignored)
enumerator LV_GRAD_DIR_VER
Vertical (top to bottom) gradient
enumerator LV_GRAD_DIR_HOR
Horizontal (left to right) gradient

enum [anonymous]

The dithering algorithm for the gradient Depends on LV_DITHER_GRADIENT Values:
enumerator LV_DITHER_NONE
No dithering, colors are just quantized to the output resolution
enumerator LV_DITHER_ORDERED
Ordered dithering. Faster to compute and use less memory but lower quality
enumerator LV_DITHER_ERR_DIFF
Error diffusion mode. Slower to compute and use more memory but give highest dither quality

enum lv_style_prop_t

Enumeration of all built in style properties


Values:

enumerator LV_STYLE_PROP_INV

enumerator LV_STYLE_WIDTH

enumerator LV_STYLE_MIN_WIDTH

enumerator LV_STYLE_MAX_WIDTH

enumerator LV_STYLE_HEIGHT

enumerator LV_STYLE_MIN_HEIGHT

enumerator LV_STYLE_MAX_HEIGHT

enumerator LV_STYLE_X

enumerator LV_STYLE_Y

enumerator LV_STYLE_ALIGN

enumerator LV_STYLE_TRANSFORM_WIDTH

enumerator LV_STYLE_TRANSFORM_HEIGHT

enumerator LV_STYLE_TRANSLATE_X

enumerator LV_STYLE_TRANSLATE_Y

enumerator LV_STYLE_TRANSFORM_ZOOM

enumerator LV_STYLE_TRANSFORM_ANGLE

enumerator LV_STYLE_PAD_TOP

enumerator LV_STYLE_PAD_BOTTOM

enumerator LV_STYLE_PAD_LEFT

enumerator LV_STYLE_PAD_RIGHT

enumerator LV_STYLE_PAD_ROW

enumerator LV_STYLE_PAD_COLUMN

enumerator LV_STYLE_BG_COLOR

enumerator LV_STYLE_BG_COLOR_FILTERED

enumerator LV_STYLE_BG_OPA

enumerator LV_STYLE_BG_GRAD_COLOR

enumerator LV_STYLE_BG_GRAD_COLOR_FILTERED

enumerator LV_STYLE_BG_GRAD_DIR

enumerator LV_STYLE_BG_MAIN_STOP

enumerator LV_STYLE_BG_GRAD_STOP

enumerator LV_STYLE_BG_GRAD

enumerator LV_STYLE_BG_DITHER_MODE

enumerator LV_STYLE_BG_IMG_SRC

enumerator LV_STYLE_BG_IMG_OPA

enumerator LV_STYLE_BG_IMG_RECOLOR

enumerator LV_STYLE_BG_IMG_RECOLOR_FILTERED

enumerator LV_STYLE_BG_IMG_RECOLOR_OPA

enumerator LV_STYLE_BG_IMG_TILED

enumerator LV_STYLE_BORDER_COLOR

enumerator LV_STYLE_BORDER_COLOR_FILTERED

enumerator LV_STYLE_BORDER_OPA

enumerator LV_STYLE_BORDER_WIDTH

enumerator LV_STYLE_BORDER_SIDE

enumerator LV_STYLE_BORDER_POST

enumerator LV_STYLE_OUTLINE_WIDTH

enumerator LV_STYLE_OUTLINE_COLOR

enumerator LV_STYLE_OUTLINE_COLOR_FILTERED

enumerator LV_STYLE_OUTLINE_OPA

enumerator LV_STYLE_OUTLINE_PAD

enumerator LV_STYLE_SHADOW_WIDTH

enumerator LV_STYLE_SHADOW_OFS_X

enumerator LV_STYLE_SHADOW_OFS_Y

enumerator LV_STYLE_SHADOW_SPREAD

enumerator LV_STYLE_SHADOW_COLOR

enumerator LV_STYLE_SHADOW_COLOR_FILTERED

enumerator LV_STYLE_SHADOW_OPA

enumerator LV_STYLE_IMG_OPA

enumerator LV_STYLE_IMG_RECOLOR

enumerator LV_STYLE_IMG_RECOLOR_FILTERED

enumerator LV_STYLE_IMG_RECOLOR_OPA

enumerator LV_STYLE_LINE_WIDTH

enumerator LV_STYLE_LINE_DASH_WIDTH

enumerator LV_STYLE_LINE_DASH_GAP

enumerator LV_STYLE_LINE_ROUNDED

enumerator LV_STYLE_LINE_COLOR

enumerator LV_STYLE_LINE_COLOR_FILTERED

enumerator LV_STYLE_LINE_OPA

enumerator LV_STYLE_ARC_WIDTH

enumerator LV_STYLE_ARC_ROUNDED

enumerator LV_STYLE_ARC_COLOR

enumerator LV_STYLE_ARC_COLOR_FILTERED

enumerator LV_STYLE_ARC_OPA

enumerator LV_STYLE_ARC_IMG_SRC

enumerator LV_STYLE_TEXT_COLOR

enumerator LV_STYLE_TEXT_COLOR_FILTERED

enumerator LV_STYLE_TEXT_OPA

enumerator LV_STYLE_TEXT_FONT

enumerator LV_STYLE_TEXT_LETTER_SPACE

enumerator LV_STYLE_TEXT_LINE_SPACE

enumerator LV_STYLE_TEXT_DECOR

enumerator LV_STYLE_TEXT_ALIGN

enumerator LV_STYLE_RADIUS

enumerator LV_STYLE_CLIP_CORNER

enumerator LV_STYLE_OPA

enumerator LV_STYLE_COLOR_FILTER_DSC

enumerator LV_STYLE_COLOR_FILTER_OPA

enumerator LV_STYLE_ANIM_TIME

enumerator LV_STYLE_ANIM_SPEED

enumerator LV_STYLE_TRANSITION

enumerator LV_STYLE_BLEND_MODE

enumerator LV_STYLE_LAYOUT

enumerator LV_STYLE_BASE_DIR

enumerator _LV_STYLE_LAST_BUILT_IN_PROP

enumerator LV_STYLE_PROP_ANY


Functions

LV_EXPORT_CONST_INT(LV_IMG_ZOOM_NONE)

void lv_style_init(lv_style_t *style)

Initialize a style Note Do not call lv_style_init on styles that already have some properties because this function won't free the used memory, just sets a default state for the style. In other words be sure to initialize styles only once!
Parameters
style -- pointer to a style to initialize

void lv_style_reset(lv_style_t *style)

Clear all properties from a style and free all allocated memories.
Parameters
style -- pointer to a style

lv_style_prop_t lv_style_register_prop(void)

bool lv_style_remove_prop(lv_style_t *style, lv_style_prop_t prop)

Remove a property from a style
Parameters
  • style -- pointer to a style
  • prop -- a style property ORed with a state.
Returns
true: the property was found and removed; false: the property wasn't found

void lv_style_set_prop(lv_style_t *style, lv_style_prop_t prop, lv_style_value_t value)

Set the value of property in a style. This function shouldn't be used directly by the user. Instead use lv_style_set_<prop_name>(). E.g. lv_style_set_bg_color()
Parameters
  • style -- pointer to style
  • prop -- the ID of a property (e.g. LV_STYLE_BG_COLOR)
  • value -- lv_style_value_t variable in which a field is set according to the type of prop

lv_res_t lv_style_get_prop(const lv_style_t *style, lv_style_prop_t prop, lv_style_value_t *value)

Get the value of a property Note For performance reasons there are no sanity check on style
Parameters
  • style -- pointer to a style
  • prop -- the ID of a property
  • value -- pointer to a lv_style_value_t variable to store the value
Returns
LV_RES_INV: the property wasn't found in the style (value is unchanged) LV_RES_OK: the property was fond, and value is set accordingly

static inline lv_res_t lv_style_get_prop_inlined(const lv_style_t *style, lv_style_prop_t prop, lv_style_value_t *value)

Get the value of a property Note For performance reasons there are no sanity check on style Note This function is the same as lv_style_get_prop but inlined. Use it only on performance critical places
Parameters
  • style -- pointer to a style
  • prop -- the ID of a property
  • value -- pointer to a lv_style_value_t variable to store the value
Returns
LV_RES_INV: the property wasn't found in the style (value is unchanged) LV_RES_OK: the property was fond, and value is set accordingly

void lv_style_transition_dsc_init(lv_style_transition_dsc_t *tr, const lv_style_prop_t props[], lv_anim_path_cb_t path_cb, uint32_t time, uint32_t delay, void *user_data)

lv_style_value_t lv_style_prop_get_default(lv_style_prop_t prop)

Get the default value of a property
Parameters
prop -- the ID of a property
Returns
the default value

bool lv_style_is_empty(const lv_style_t *style)

Checks if a style is empty (has no properties)
Parameters
style -- pointer to a style
Returns
true if the style is empty

uint8_t _lv_style_get_prop_group(lv_style_prop_t prop)

Tell the group of a property. If the a property from a group is set in a style the (1 << group) bit of style->has_group is set. It allows early skipping the style if the property is not exists in the style at all.
Parameters
prop -- a style property
Returns
the group [0..7] 7 means all the custom properties with index > 112

static inline void lv_style_set_size(lv_style_t *style, lv_coord_t value)

static inline void lv_style_set_pad_all(lv_style_t *style, lv_coord_t value)

static inline void lv_style_set_pad_hor(lv_style_t *style, lv_coord_t value)

static inline void lv_style_set_pad_ver(lv_style_t *style, lv_coord_t value)

static inline void lv_style_set_pad_gap(lv_style_t *style, lv_coord_t value)

struct lv_gradient_stop_t

#include <lv_style.h> A gradient stop definition. This matches a color and a position in a virtual 0-255 scale. Public Members
lv_color_t color
The stop color
uint8_t frac
The stop position in 1/255 unit

struct lv_grad_dsc_t

#include <lv_sty'le.h> A descriptor of a gradient. Public Members
lv_gradient_stop_t stops[LV_GRADIENT_MAX_STOPS]
A gradient stop array
uint8_t stops_count
The number of used stops in the array
lv_grad_dir_t dir
The gradient direction. Any of LV_GRAD_DIR_HOR, LV_GRAD_DIR_VER, LV_GRAD_DIR_NONE
lv_dither_mode_t dither
Whether to dither the gradient or not. Any of LV_DITHER_NONE, LV_DITHER_ORDERED, LV_DITHER_ERR_DIFF

union lv_style_value_t

#include <lv_style'.h> A common type to handle all the property types in the same way. Public Members
int32_t num
Number integer number (opacity, enums, booleans or "normal" numbers)
const void *ptr
Constant pointers (font, cone text, etc)
lv_color_t color
Colors


struct lv_style_transition_dsc_t

#include <lv_style.h> Descriptor for style transitions Public Members
const lv_style_prop_t *props
An array with the properties to animate.
void *user_data
A custom user data that will be passed to the animation's user_data
lv_anim_path_cb_t path_xcb
A path for the animation.
uint32_t time
Duration of the transition in [ms]
uint32_t delay
Delay before the transition in [ms]

struct lv_style_const_prop_t

#include <lv_style.h> Descriptor of a constant style property. Public Members
lv_style_prop_t prop
lv_style_value_t value

struct lv_style_t

#include <lv_'style.h> Descriptor of a style (a collection of properties and values). Public Members
uint32_t sentinel
lv_style_value_t value1
uint8_t *values_and_props
const lv_style_const_prop_t *const_props
union lv_style_t::[anonymous] v_p
uint16_t prop1
uint16_t is_const
uint8_t has_group
uint8_t prop_cnt

Typedefs

typedef void (*lv_theme_apply_cb_t)(struct _lv_theme_t*, lv_obj_t*)

typedef struct _lv_theme_t lv_theme_t

Functions


lv_theme_t *lv_theme_get_from_obj(lv_obj_t *obj)

Get the theme assigned to the display of the object
Parameters
obj -- pointer to a theme object
Returns
the theme of the object's display (can be NULL)

void lv_theme_apply(lv_obj_t *obj)

Apply the active theme on an object
Parameters
obj -- pointer to an object

void lv_theme_set_parent(lv_theme_t *new_theme, lv_theme_t *parent)

Set a base theme for a theme. The styles from the base them will be added before the styles of the current theme. Arbitrary long chain of themes can be created by setting base themes.
Parameters
  • new_theme -- pointer to theme which base should be set
  • parent -- pointer to the base theme

void lv_theme_set_apply_cb(lv_theme_t *theme, lv_theme_apply_cb_t apply_cb)

Set an apply callback for a theme. The apply callback is used to add styles to different objects
Parameters
  • theme -- pointer to theme which callback should be set
  • apply_cb -- pointer to the callback

const lv_font_t *lv_theme_get_font_small(lv_obj_t *obj)

Get the small font of the theme
Parameters
obj -- pointer to an object
Returns
pointer to the font

const lv_font_t *lv_theme_get_font_normal(lv_obj_t *obj)

Get the normal font of the theme
Parameters
obj -- pointer to an object
Returns
pointer to the font

const lv_font_t *lv_theme_get_font_large(lv_obj_t *obj)

Get the subtitle font of the theme
Parameters
obj -- pointer to an object
Returns
pointer to the font

lv_color_t lv_theme_get_color_primary(lv_obj_t *obj)

Get the primary color of the theme
Parameters
obj -- pointer to an object
Returns
the color

lv_color_t lv_theme_get_color_secondary(lv_obj_t *obj)

Get the secondary color of the theme
Parameters
obj -- pointer to an object
Returns
the color

struct _lv_theme_t

Public Members
lv_theme_apply_cb_t apply_cb
struct _lv_theme_t *parent
Apply the current theme's style on top of this theme.
void *user_data
struct _lv_disp_t *disp
lv_color_t color_primary
lv_color_t color_secondary
const lv_font_t *font_small
const lv_font_t *font_normal
const lv_font_t *font_large
uint32_t flags

Functions

static inline lv_coord_t lv_obj_get_style_width(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_coord_t lv_obj_get_style_min_width(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_coord_t lv_obj_get_style_max_width(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_coord_t lv_obj_get_style_height(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_coord_t lv_obj_get_style_min_height(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_coord_t lv_obj_get_style_max_height(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_coord_t lv_obj_get_style_x(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_coord_t lv_obj_get_style_y(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_align_t lv_obj_get_style_align(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_coord_t lv_obj_get_style_transform_width(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_coord_t lv_obj_get_style_transform_height(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_coord_t lv_obj_get_style_translate_x(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_coord_t lv_obj_get_style_translate_y(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_coord_t lv_obj_get_style_transform_zoom(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_coord_t lv_obj_get_style_transform_angle(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_coord_t lv_obj_get_style_pad_top(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_coord_t lv_obj_get_style_pad_bottom(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_coord_t lv_obj_get_style_pad_left(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_coord_t lv_obj_get_style_pad_right(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_coord_t lv_obj_get_style_pad_row(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_coord_t lv_obj_get_style_pad_column(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_color_t lv_obj_get_style_bg_color(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_color_t lv_obj_get_style_bg_color_filtered(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_opa_t lv_obj_get_style_bg_opa(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_color_t lv_obj_get_style_bg_grad_color(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_color_t lv_obj_get_style_bg_grad_color_filtered(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_grad_dir_t lv_obj_get_style_bg_grad_dir(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_coord_t lv_obj_get_style_bg_main_stop(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_coord_t lv_obj_get_style_bg_grad_stop(const struct _lv_obj_t *obj, uint32_t part)

static inline const lv_grad_dsc_t *lv_obj_get_style_bg_grad(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_dither_mode_t lv_obj_get_style_bg_dither_mode(const struct _lv_obj_t *obj, uint32_t part)

static inline const void *lv_obj_get_style_bg_img_src(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_opa_t lv_obj_get_style_bg_img_opa(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_color_t lv_obj_get_style_bg_img_recolor(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_color_t lv_obj_get_style_bg_img_recolor_filtered(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_opa_t lv_obj_get_style_bg_img_recolor_opa(const struct _lv_obj_t *obj, uint32_t part)

static inline bool lv_obj_get_style_bg_img_tiled(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_color_t lv_obj_get_style_border_color(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_color_t lv_obj_get_style_border_color_filtered(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_opa_t lv_obj_get_style_border_opa(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_coord_t lv_obj_get_style_border_width(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_border_side_t lv_obj_get_style_border_side(const struct _lv_obj_t *obj, uint32_t part)

static inline bool lv_obj_get_style_border_post(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_coord_t lv_obj_get_style_outline_width(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_color_t lv_obj_get_style_outline_color(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_color_t lv_obj_get_style_outline_color_filtered(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_opa_t lv_obj_get_style_outline_opa(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_coord_t lv_obj_get_style_outline_pad(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_coord_t lv_obj_get_style_shadow_width(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_coord_t lv_obj_get_style_shadow_ofs_x(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_coord_t lv_obj_get_style_shadow_ofs_y(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_coord_t lv_obj_get_style_shadow_spread(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_color_t lv_obj_get_style_shadow_color(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_color_t lv_obj_get_style_shadow_color_filtered(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_opa_t lv_obj_get_style_shadow_opa(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_opa_t lv_obj_get_style_img_opa(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_color_t lv_obj_get_style_img_recolor(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_color_t lv_obj_get_style_img_recolor_filtered(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_opa_t lv_obj_get_style_img_recolor_opa(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_coord_t lv_obj_get_style_line_width(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_coord_t lv_obj_get_style_line_dash_width(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_coord_t lv_obj_get_style_line_dash_gap(const struct _lv_obj_t *obj, uint32_t part)

static inline bool lv_obj_get_style_line_rounded(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_color_t lv_obj_get_style_line_color(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_color_t lv_obj_get_style_line_color_filtered(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_opa_t lv_obj_get_style_line_opa(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_coord_t lv_obj_get_style_arc_width(const struct _lv_obj_t *obj, uint32_t part)

static inline bool lv_obj_get_style_arc_rounded(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_color_t lv_obj_get_style_arc_color(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_color_t lv_obj_get_style_arc_color_filtered(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_opa_t lv_obj_get_style_arc_opa(const struct _lv_obj_t *obj, uint32_t part)

static inline const void *lv_obj_get_style_arc_img_src(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_color_t lv_obj_get_style_text_color(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_color_t lv_obj_get_style_text_color_filtered(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_opa_t lv_obj_get_style_text_opa(const struct _lv_obj_t *obj, uint32_t part)

static inline const lv_font_t *lv_obj_get_style_text_font(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_coord_t lv_obj_get_style_text_letter_space(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_coord_t lv_obj_get_style_text_line_space(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_text_decor_t lv_obj_get_style_text_decor(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_text_align_t lv_obj_get_style_text_align(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_coord_t lv_obj_get_style_radius(const struct _lv_obj_t *obj, uint32_t part)

static inline bool lv_obj_get_style_clip_corner(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_opa_t lv_obj_get_style_opa(const struct _lv_obj_t *obj, uint32_t part)

static inline const lv_color_filter_dsc_t *lv_obj_get_style_color_filter_dsc(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_opa_t lv_obj_get_style_color_filter_opa(const struct _lv_obj_t *obj, uint32_t part)


static inline uint32_t lv_obj_get_style_anim_time(const struct _lv_obj_t *obj, uint32_t part)

static inline uint32_t lv_obj_get_style_anim_speed(const struct _lv_obj_t *obj, uint32_t part)

static inline const lv_style_transition_dsc_t *lv_obj_get_style_transition(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_blend_mode_t lv_obj_get_style_blend_mode(const struct _lv_obj_t *obj, uint32_t part)

static inline uint16_t lv_obj_get_style_layout(const struct _lv_obj_t *obj, uint32_t part)

static inline lv_base_dir_t lv_obj_get_style_base_dir(const struct _lv_obj_t *obj, uint32_t part)

void lv_obj_set_style_width(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)

void lv_obj_set_style_min_width(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)

void lv_obj_set_style_max_width(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)

void lv_obj_set_style_height(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)

void lv_obj_set_style_min_height(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)

void lv_obj_set_style_max_height(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)

void lv_obj_set_style_x(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)

void lv_obj_set_style_y(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)

void lv_obj_set_style_align(struct _lv_obj_t *obj, lv_align_t value, lv_style_selector_t selector)

void lv_obj_set_style_transform_width(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)

void lv_obj_set_style_transform_height(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)

void lv_obj_set_style_translate_x(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)

void lv_obj_set_style_translate_y(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)

void lv_obj_set_style_transform_zoom(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)

void lv_obj_set_style_transform_angle(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)

void lv_obj_set_style_pad_top(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)

void lv_obj_set_style_pad_bottom(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)

void lv_obj_set_style_pad_left(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)

void lv_obj_set_style_pad_right(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)

void lv_obj_set_style_pad_row(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)

void lv_obj_set_style_pad_column(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)

void lv_obj_set_style_bg_color(struct _lv_obj_t *obj, lv_color_t value, lv_style_selector_t selector)

void lv_obj_set_style_bg_color_filtered(struct _lv_obj_t *obj, lv_color_t value, lv_style_selector_t selector)

void lv_obj_set_style_bg_opa(struct _lv_obj_t *obj, lv_opa_t value, lv_style_selector_t selector)

void lv_obj_set_style_bg_grad_color(struct _lv_obj_t *obj, lv_color_t value, lv_style_selector_t selector)

void lv_obj_set_style_bg_grad_color_filtered(struct _lv_obj_t *obj, lv_color_t value, lv_style_selector_t selector)

void lv_obj_set_style_bg_grad_dir(struct _lv_obj_t *obj, lv_grad_dir_t value, lv_style_selector_t selector)

void lv_obj_set_style_bg_main_stop(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)

void lv_obj_set_style_bg_grad_stop(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)

void lv_obj_set_style_bg_grad(struct _lv_obj_t *obj, const lv_grad_dsc_t *value, lv_style_selector_t selector)

void lv_obj_set_style_bg_dither_mode(struct _lv_obj_t *obj, lv_dither_mode_t value, lv_style_selector_t selector)

void lv_obj_set_style_bg_img_src(struct _lv_obj_t *obj, const void *value, lv_style_selector_t selector)

void lv_obj_set_style_bg_img_opa(struct _lv_obj_t *obj, lv_opa_t value, lv_style_selector_t selector)

void lv_obj_set_style_bg_img_recolor(struct _lv_obj_t *obj, lv_color_t value, lv_style_selector_t selector)

void lv_obj_set_style_bg_img_recolor_filtered(struct _lv_obj_t *obj, lv_color_t value, lv_style_selector_t selector)

void lv_obj_set_style_bg_img_recolor_opa(struct _lv_obj_t *obj, lv_opa_t value, lv_style_selector_t selector)

void lv_obj_set_style_bg_img_tiled(struct _lv_obj_t *obj, bool value, lv_style_selector_t selector)

void lv_obj_set_style_border_color(struct _lv_obj_t *obj, lv_color_t value, lv_style_selector_t selector)

void lv_obj_set_style_border_color_filtered(struct _lv_obj_t *obj, lv_color_t value, lv_style_selector_t selector)

void lv_obj_set_style_border_opa(struct _lv_obj_t *obj, lv_opa_t value, lv_style_selector_t selector)

void lv_obj_set_style_border_width(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)

void lv_obj_set_style_border_side(struct _lv_obj_t *obj, lv_border_side_t value, lv_style_selector_t selector)

void lv_obj_set_style_border_post(struct _lv_obj_t *obj, bool value, lv_style_selector_t selector)

void lv_obj_set_style_outline_width(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)

void lv_obj_set_style_outline_color(struct _lv_obj_t *obj, lv_color_t value, lv_style_selector_t selector)

void lv_obj_set_style_outline_color_filtered(struct _lv_obj_t *obj, lv_color_t value, lv_style_selector_t selector)

void lv_obj_set_style_outline_opa(struct _lv_obj_t *obj, lv_opa_t value, lv_style_selector_t selector)

void lv_obj_set_style_outline_pad(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)

void lv_obj_set_style_shadow_width(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)

void lv_obj_set_style_shadow_ofs_x(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)

void lv_obj_set_style_shadow_ofs_y(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)

void lv_obj_set_style_shadow_spread(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)

void lv_obj_set_style_shadow_color(struct _lv_obj_t *obj, lv_color_t value, lv_style_selector_t selector)

void lv_obj_set_style_shadow_color_filtered(struct _lv_obj_t *obj, lv_color_t value, lv_style_selector_t selector)

void lv_obj_set_style_shadow_opa(struct _lv_obj_t *obj, lv_opa_t value, lv_style_selector_t selector)

void lv_obj_set_style_img_opa(struct _lv_obj_t *obj, lv_opa_t value, lv_style_selector_t selector)

void lv_obj_set_style_img_recolor(struct _lv_obj_t *obj, lv_color_t value, lv_style_selector_t selector)

void lv_obj_set_style_img_recolor_filtered(struct _lv_obj_t *obj, lv_color_t value, lv_style_selector_t selector)

void lv_obj_set_style_img_recolor_opa(struct _lv_obj_t *obj, lv_opa_t value, lv_style_selector_t selector)

void lv_obj_set_style_line_width(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)

void lv_obj_set_style_line_dash_width(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)

void lv_obj_set_style_line_dash_gap(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)

void lv_obj_set_style_line_rounded(struct _lv_obj_t *obj, bool value, lv_style_selector_t selector)

void lv_obj_set_style_line_color(struct _lv_obj_t *obj, lv_color_t value, lv_style_selector_t selector)

void lv_obj_set_style_line_color_filtered(struct _lv_obj_t *obj, lv_color_t value, lv_style_selector_t selector)

void lv_obj_set_style_line_opa(struct _lv_obj_t *obj, lv_opa_t value, lv_style_selector_t selector)

void lv_obj_set_style_arc_width(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)

void lv_obj_set_style_arc_rounded(struct _lv_obj_t *obj, bool value, lv_style_selector_t selector)

void lv_obj_set_style_arc_color(struct _lv_obj_t *obj, lv_color_t value, lv_style_selector_t selector)

void lv_obj_set_style_arc_color_filtered(struct _lv_obj_t *obj, lv_color_t value, lv_style_selector_t selector)

void lv_obj_set_style_arc_opa(struct _lv_obj_t *obj, lv_opa_t value, lv_style_selector_t selector)

void lv_obj_set_style_arc_img_src(struct _lv_obj_t *obj, const void *value, lv_style_selector_t selector)

void lv_obj_set_style_text_color(struct _lv_obj_t *obj, lv_color_t value, lv_style_selector_t selector)

void lv_obj_set_style_text_color_filtered(struct _lv_obj_t *obj, lv_color_t value, lv_style_selector_t selector)

void lv_obj_set_style_text_opa(struct _lv_obj_t *obj, lv_opa_t value, lv_style_selector_t selector)

void lv_obj_set_style_text_font(struct _lv_obj_t *obj, const lv_font_t *value, lv_style_selector_t selector)

void lv_obj_set_style_text_letter_space(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)

void lv_obj_set_style_text_line_space(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)

void lv_obj_set_style_text_decor(struct _lv_obj_t *obj, lv_text_decor_t value, lv_style_selector_t selector)

void lv_obj_set_style_text_align(struct _lv_obj_t *obj, lv_text_align_t value, lv_style_selector_t selector)

void lv_obj_set_style_radius(struct _lv_obj_t *obj, lv_coord_t value, lv_style_selector_t selector)

void lv_obj_set_style_clip_corner(struct _lv_obj_t *obj, bool value, lv_style_selector_t selector)

void lv_obj_set_style_opa(struct _lv_obj_t *obj, lv_opa_t value, lv_style_selector_t selector)

void lv_obj_set_style_color_filter_dsc(struct _lv_obj_t *obj, const lv_color_filter_dsc_t *value, lv_style_selector_t selector)

void lv_obj_set_style_color_filter_opa(struct _lv_obj_t *obj, lv_opa_t value, lv_style_selector_t selector)


void lv_obj_set_style_anim_time(struct _lv_obj_t *obj, uint32_t value, lv_style_selector_t selector)

void lv_obj_set_style_anim_speed(struct _lv_obj_t *obj, uint32_t value, lv_style_selector_t selector)

void lv_obj_set_style_transition(struct _lv_obj_t *obj, const lv_style_transition_dsc_t *value, lv_style_selector_t selector)

void lv_obj_set_style_blend_mode(struct _lv_obj_t *obj, lv_blend_mode_t value, lv_style_selector_t selector)

void lv_obj_set_style_layout(struct _lv_obj_t *obj, uint16_t value, lv_style_selector_t selector)

void lv_obj_set_style_base_dir(struct _lv_obj_t *obj, lv_base_dir_t value, lv_style_selector_t selector)


Functions

void lv_style_set_width(lv_style_t *style, lv_coord_t value)

void lv_style_set_min_width(lv_style_t *style, lv_coord_t value)

void lv_style_set_max_width(lv_style_t *style, lv_coord_t value)

void lv_style_set_height(lv_style_t *style, lv_coord_t value)

void lv_style_set_min_height(lv_style_t *style, lv_coord_t value)

void lv_style_set_max_height(lv_style_t *style, lv_coord_t value)

void lv_style_set_x(lv_style_t *style, lv_coord_t value)

void lv_style_set_y(lv_style_t *style, lv_coord_t value)

void lv_style_set_align(lv_style_t *style, lv_align_t value)

void lv_style_set_transform_width(lv_style_t *style, lv_coord_t value)

void lv_style_set_transform_height(lv_style_t *style, lv_coord_t value)

void lv_style_set_translate_x(lv_style_t *style, lv_coord_t value)

void lv_style_set_translate_y(lv_style_t *style, lv_coord_t value)

void lv_style_set_transform_zoom(lv_style_t *style, lv_coord_t value)

void lv_style_set_transform_angle(lv_style_t *style, lv_coord_t value)

void lv_style_set_pad_top(lv_style_t *style, lv_coord_t value)

void lv_style_set_pad_bottom(lv_style_t *style, lv_coord_t value)

void lv_style_set_pad_left(lv_style_t *style, lv_coord_t value)

void lv_style_set_pad_right(lv_style_t *style, lv_coord_t value)

void lv_style_set_pad_row(lv_style_t *style, lv_coord_t value)

void lv_style_set_pad_column(lv_style_t *style, lv_coord_t value)

void lv_style_set_bg_color(lv_style_t *style, lv_color_t value)

void lv_style_set_bg_color_filtered(lv_style_t *style, lv_color_t value)

void lv_style_set_bg_opa(lv_style_t *style, lv_opa_t value)

void lv_style_set_bg_grad_color(lv_style_t *style, lv_color_t value)

void lv_style_set_bg_grad_color_filtered(lv_style_t *style, lv_color_t value)

void lv_style_set_bg_grad_dir(lv_style_t *style, lv_grad_dir_t value)

void lv_style_set_bg_main_stop(lv_style_t *style, lv_coord_t value)

void lv_style_set_bg_grad_stop(lv_style_t *style, lv_coord_t value)

void lv_style_set_bg_grad(lv_style_t *style, const lv_grad_dsc_t *value)

void lv_style_set_bg_dither_mode(lv_style_t *style, lv_dither_mode_t value)

void lv_style_set_bg_img_src(lv_style_t *style, const void *value)

void lv_style_set_bg_img_opa(lv_style_t *style, lv_opa_t value)

void lv_style_set_bg_img_recolor(lv_style_t *style, lv_color_t value)

void lv_style_set_bg_img_recolor_filtered(lv_style_t *style, lv_color_t value)

void lv_style_set_bg_img_recolor_opa(lv_style_t *style, lv_opa_t value)

void lv_style_set_bg_img_tiled(lv_style_t *style, bool value)

void lv_style_set_border_color(lv_style_t *style, lv_color_t value)

void lv_style_set_border_color_filtered(lv_style_t *style, lv_color_t value)

void lv_style_set_border_opa(lv_style_t *style, lv_opa_t value)

void lv_style_set_border_width(lv_style_t *style, lv_coord_t value)

void lv_style_set_border_side(lv_style_t *style, lv_border_side_t value)

void lv_style_set_border_post(lv_style_t *style, bool value)

void lv_style_set_outline_width(lv_style_t *style, lv_coord_t value)

void lv_style_set_outline_color(lv_style_t *style, lv_color_t value)

void lv_style_set_outline_color_filtered(lv_style_t *style, lv_color_t value)

void lv_style_set_outline_opa(lv_style_t *style, lv_opa_t value)

void lv_style_set_outline_pad(lv_style_t *style, lv_coord_t value)

void lv_style_set_shadow_width(lv_style_t *style, lv_coord_t value)

void lv_style_set_shadow_ofs_x(lv_style_t *style, lv_coord_t value)

void lv_style_set_shadow_ofs_y(lv_style_t *style, lv_coord_t value)

void lv_style_set_shadow_spread(lv_style_t *style, lv_coord_t value)

void lv_style_set_shadow_color(lv_style_t *style, lv_color_t value)

void lv_style_set_shadow_color_filtered(lv_style_t *style, lv_color_t value)

void lv_style_set_shadow_opa(lv_style_t *style, lv_opa_t value)

void lv_style_set_img_opa(lv_style_t *style, lv_opa_t value)

void lv_style_set_img_recolor(lv_style_t *style, lv_color_t value)

void lv_style_set_img_recolor_filtered(lv_style_t *style, lv_color_t value)

void lv_style_set_img_recolor_opa(lv_style_t *style, lv_opa_t value)

void lv_style_set_line_width(lv_style_t *style, lv_coord_t value)

void lv_style_set_line_dash_width(lv_style_t *style, lv_coord_t value)

void lv_style_set_line_dash_gap(lv_style_t *style, lv_coord_t value)

void lv_style_set_line_rounded(lv_style_t *style, bool value)

void lv_style_set_line_color(lv_style_t *style, lv_color_t value)

void lv_style_set_line_color_filtered(lv_style_t *style, lv_color_t value)

void lv_style_set_line_opa(lv_style_t *style, lv_opa_t value)

void lv_style_set_arc_width(lv_style_t *style, lv_coord_t value)

void lv_style_set_arc_rounded(lv_style_t *style, bool value)

void lv_style_set_arc_color(lv_style_t *style, lv_color_t value)

void lv_style_set_arc_color_filtered(lv_style_t *style, lv_color_t value)

void lv_style_set_arc_opa(lv_style_t *style, lv_opa_t value)

void lv_style_set_arc_img_src(lv_style_t *style, const void *value)

void lv_style_set_text_color(lv_style_t *style, lv_color_t value)

void lv_style_set_text_color_filtered(lv_style_t *style, lv_color_t value)

void lv_style_set_text_opa(lv_style_t *style, lv_opa_t value)

void lv_style_set_text_font(lv_style_t *style, const lv_font_t *value)

void lv_style_set_text_letter_space(lv_style_t *style, lv_coord_t value)

void lv_style_set_text_line_space(lv_style_t *style, lv_coord_t value)

void lv_style_set_text_decor(lv_style_t *style, lv_text_decor_t value)

void lv_style_set_text_align(lv_style_t *style, lv_text_align_t value)

void lv_style_set_radius(lv_style_t *style, lv_coord_t value)

void lv_style_set_clip_corner(lv_style_t *style, bool value)

void lv_style_set_opa(lv_style_t *style, lv_opa_t value)

void lv_style_set_color_filter_dsc(lv_style_t *style, const lv_color_filter_dsc_t *value)

void lv_style_set_color_filter_opa(lv_style_t *style, lv_opa_t value)


void lv_style_set_anim_time(lv_style_t *style, uint32_t value)

void lv_style_set_anim_speed(lv_style_t *style, uint32_t value)

void lv_style_set_transition(lv_style_t *style, const lv_style_transition_dsc_t *value)

void lv_style_set_blend_mode(lv_style_t *style, lv_blend_mode_t value)

void lv_style_set_layout(lv_style_t *style, uint16_t value)

void lv_style_set_base_dir(lv_style_t *style, lv_base_dir_t value)




戻る : Previous