/usr/include/elementary-1/elm_progressbar.h is in libelementary-dev 1.8.5-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 | /**
* @defgroup Progressbar Progress bar
* @ingroup Elementary
*
* @image html progressbar_inheritance_tree.png
* @image latex progressbar_inheritance_tree.eps
*
* The progress bar is a widget for visually representing the
* progress status of a given job/task.
*
* A progress bar may be horizontal or vertical. It may display an
* icon besides it, as well as primary and @b units labels. The
* former is meant to label the widget as a whole, while the
* latter, which is formatted with floating point values (and thus
* accepts a <c>printf</c>-style format string, like <c>"%1.2f
* units"</c>), is meant to label the widget's <b>progress
* value</b>. Label, icon and unit strings/objects are @b optional
* for progress bars.
*
* A progress bar may be @b inverted, in which case it gets its
* values inverted, i.e., high values being on the left or top and
* low values on the right or bottom, for horizontal and vertical modes
* respectively.
*
* The @b span of the progress, as set by
* elm_progressbar_span_size_set(), is its length (horizontally or
* vertically), unless one puts size hints on the widget to expand
* on desired directions, by any container. That length will be
* scaled by the object or applications scaling factor.
* Applications can query the progress bar for its value with
* elm_progressbar_value_get().
*
* This widget inherits from the @ref Layout one, so that all the
* functions acting on it also work for progress bar objects.
*
* This widget emits the following signals, besides the ones sent from
* @ref Layout:
* @li @c "changed" - when the value is changed (since 1.7)
* @li @c "focused" - When the progressbar has received focus. (since 1.8)
* @li @c "unfocused" - When the progressbar has lost focus. (since 1.8)
*
* This widget has the following styles:
* - @c "default"
* - @c "wheel" (simple style, no text, no progression, only
* "pulse" effect is available)
*
* Default text parts of the progressbar widget that you can use for are:
* @li "default" - Label of the progressbar
*
* Default content parts of the progressbar widget that you can use for are:
* @li "icon" - An icon of the progressbar
*
* Supported elm_object common APIs.
* @li @ref elm_object_part_text_set
* @li @ref elm_object_part_text_get
* @li @ref elm_object_part_content_set
* @li @ref elm_object_part_content_get
* @li @ref elm_object_part_content_unset
*
* Here is an example on its usage:
* @li @ref progressbar_example
*/
#ifdef EFL_EO_API_SUPPORT
#include "elm_progressbar_eo.h"
#endif
#ifndef EFL_NOLEGACY_API_SUPPORT
#include "elm_progressbar_legacy.h"
#endif
/**
* @}
*/
|