mirror of
https://github.com/lvgl/lvgl.git
synced 2026-05-12 06:37:46 +08:00
3e61613fdd
e.g. <lv_roller options=... options-mode=normal/>
25 lines
927 B
XML
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>
|