Files
lvgl/xmls/lv_arc.xml
T
Gabor Kiss-Vamosi 3e61613fdd refactor(xml): use single properties and introduce the prop-paramX syntax
e.g. <lv_roller options=... options-mode=normal/>
2025-06-17 11:43:50 +02:00

25 lines
927 B
XML

<!--
Example
<lv_arc mode="reverse" angles="100° 200°" bg_angles="30° 150° range="40 100" value="60"/>
-->
<widget>
<api>
<enumdef name="lv_arc_mode" help="the mode">
<enum name="normal" help="normal"/>
<enum name="symmetrical" help="sym"/>
<enum name="reverse" help="reverse"/>
</enumdef>
<prop name="start_angle" help="Start angles of the indicator"/>
<prop name="end_angle" help="End angles of the indicator"/>
<prop name="bg_angle_start" help="Start angles of the background"/>
<prop name="bg_angle_end" help="End angles of the background"/>
<prop name="min_value" type="int"/>
<prop name="max_value" type="int"/>
<prop name="value" type="int" help="The current value"/>
<prop name="mode" type="enum:lv_arc_mode" help="The mode"/>
<prop name="bind_value" type="subject" help="Connect a subject to the arc's value"/>
</api>
</widget>