fix genlist item signals on prepend
[framework/uifw/elementary.git] / src / lib / elm_slider.h
index 1ced64e..5375aaf 100644 (file)
@@ -5,7 +5,7 @@
  * @image html img/widget/slider/preview-00.png
  * @image latex img/widget/slider/preview-00.eps width=\textwidth
  *
- * The slider adds a dragable “slider” widget for selecting the value of
+ * The slider adds a draggable “slider” widget for selecting the value of
  * something within a range.
  *
  * A slider can be horizontal or vertical. It can contain an Icon and has a
  * Available styles for it:
  * - @c "default"
  *
- * Default contents parts of the slider widget that you can use for are:
+ * Default content parts of the slider widget that you can use for are:
  * @li "icon" - An icon of the slider
  * @li "end" - A end part content of the slider
  *
- * Default text parts of the silder widget that you can use for are:
- * @li "default" - Label of the silder
+ * Default text parts of the slider widget that you can use for are:
+ * @li "default" - Label of the slider
+ *
+ * Supported elm_object common APIs.
+ * @li @ref elm_object_disabled_set
+ * @li @ref elm_object_disabled_get
+ * @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 slider_example
  */
@@ -201,7 +211,7 @@ EAPI const char                  *elm_slider_indicator_format_get(const Evas_Obj
  *
  * @ingroup Slider
  */
-EAPI void                         elm_slider_indicator_format_function_set(Evas_Object *obj, const char *(*func)(double val), void (*free_func)(const char *str));
+EAPI void                         elm_slider_indicator_format_function_set(Evas_Object *obj, char *(*func)(double val), void (*free_func)(char *str));
 
 /**
  * Set the format function pointer for the units label
@@ -216,7 +226,7 @@ EAPI void                         elm_slider_indicator_format_function_set(Evas_
  *
  * @ingroup Slider
  */
-EAPI void                         elm_slider_units_format_function_set(Evas_Object *obj, const char *(*func)(double val), void (*free_func)(const char *str));
+EAPI void                         elm_slider_units_format_function_set(Evas_Object *obj, char *(*func)(double val), void (*free_func)(char *str));
 
 /**
  * Set the orientation of a given slider widget.
@@ -277,8 +287,8 @@ EAPI void                         elm_slider_min_max_set(Evas_Object *obj, doubl
  * Get the minimum and maximum values of the slider.
  *
  * @param obj The slider object.
- * @param min Pointer where to store the minimum value.
- * @param max Pointer where to store the maximum value.
+ * @param min Pointer to store the minimum value.
+ * @param max Pointer to store the maximum value.
  *
  * @note If only one value is needed, the other pointer can be passed
  * as @c NULL.