docs/src/widgets/bar.rst
.. _lv_bar:
Overview
The Bar Widget has a background and an indicator. The length of the indicator against the background indicates the Bar's current value.
Both the start and end values of the Bar can be set. Changing the start value to a value other than the minimum value in its range adjusts the start position of the indicator.
.. _lv_bar_parts_and_styles:
Parts and Styles
LV_PART_MAIN The Bar's background. It uses the :ref:typical background style properties <typical bg props>. Adding padding makes the indicator
smaller or larger. The anim_time style property sets the
animation time if the values set with :cpp:enumerator:LV_ANIM_ON.LV_PART_INDICATOR The Bar's indicator; also uses the :ref:typical background style properties <typical bg props>... _lv_bar_usage:
Usage
for orientation, width and height, simply set width and height style properties;
:cpp:expr:lv_bar_set_orientation(bar, orientation) to override orientation
caused by width and height. Valid values for orientation are:
LV_BAR_ORIENTATION_AUTOLV_BAR_ORIENTATION_HORIZONTALLV_BAR_ORIENTATION_VERTICALA new value can be set with
:cpp:expr:lv_bar_set_value(bar, new_value, LV_ANIM_ON/OFF). The value is
interpreted in a range (minimum and maximum values) which can be
modified with :cpp:expr:lv_bar_set_range(bar, min, max). The default range is
0..100, and the default drawing direction is from left to right in horizontal mode and
bottom to top in vertical mode. If the minimum value is greater than the maximum value, like
100..0, the drawing direction is reversed.
The new value in :cpp:func:lv_bar_set_value can be set with or without an
animation depending on the last parameter (LV_ANIM_ON/OFF).
The Bar can be one of the following modes:
LV_BAR_MODE_NORMAL A normal Bar as described aboveLV_BAR_MODE_SYMMETRICAL Draws indicator from zero value to current value. Requires a negative
minimum value and positive maximum value, e.g. [-100..100].LV_BAR_MODE_RANGE Allows setting the start value as well with
:cpp:expr:lv_bar_set_start_value(bar, new_value, LV_ANIM_ON/OFF). The start
value must be smaller than the end value.To get familiar with observers, subjects, and data bindings in general visit the
:ref:Observer <observer_how_to_use> page.
This method of subscribing to an integer Subject affects a Bar Widget's integer value directly. Note that this is a one-way binding (Subject ==> Widget) so when the subject changes the Bar will be updated too.
It supports integer and float subjects.
lv_bar_bind_value(bar, &subject).. _lv_bar_events:
Events
No special events are sent by Bar Widgets.
.. admonition:: Further Reading
Learn more about :ref:`lv_obj_events` emitted by all Widgets.
Learn more about :ref:`events`.
.. _lv_bar_keys:
Keys
No Keys are processed by Bar Widgets.
.. admonition:: Further Reading
Learn more about :ref:`indev_keys`.
.. _lv_bar_example:
Examples
.. include:: /examples/widgets/bar/index.rst
.. _lv_bar_api:
API