[multibuttonentry]Fixed [Nabi S1-539]narrow region about internal entry
[framework/uifw/elementary.git] / src / lib / elm_button.h
index d0c4f5e..5893898 100644 (file)
@@ -1,5 +1,6 @@
 /**
  * @defgroup Button Button
+ * @ingroup Elementary
  *
  * @image html img/widget/button/preview-00.png
  * @image latex img/widget/button/preview-00.eps
  * This is a push-button. Press it and run some function. It can contain
  * a simple label and icon object and it also has an autorepeat feature.
  *
- * This widgets emits the following signals:
+ * This widget emits the following signals:
  * @li "clicked": the user clicked the button (press/release).
  * @li "repeated": the user pressed the button without releasing it.
  * @li "pressed": button was pressed.
  * @li "unpressed": button was released after being pressed.
- * In all three cases, the @c event parameter of the callback will be
+ * In all cases, the @c event parameter of the callback will be
  * @c NULL.
  *
  * Also, defined in the default theme, the button has the following styles
  * @li hoversel_vertical: Internally used by @ref Hoversel to give a
  * continuous look across its options.
  * @li hoversel_vertical_entry: Another internal for @ref Hoversel.
+ * @li naviframe: Internally used by @ref Naviframe for its back button.
+ * @li colorselector: Internally used by @ref Colorselector
+ * for its left and right buttons.
  *
- * Default contents parts of the button widget that you can use for are:
+ * Default content parts of the button widget that you can use for are:
  * @li "icon" - An icon of the button
  *
  * Default text parts of the button widget that you can use for are:
  * @li "default" - Label of the button
  *
- * Follow through a complete example @ref button_example_01 "here".
+ * 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
+ * @li @ref elm_object_signal_emit
+ * @li @ref elm_object_signal_callback_add
+ * @li @ref elm_object_signal_callback_del
+ *
+ * Here is some sample code using it:
+ * @li @ref button_example_00
+ * @li @ref button_example_01
+ */
+
+/**
+ * @addtogroup Button
  * @{
  */
 
  *
  * @param parent The parent object
  * @return The new object or NULL if it cannot be created
- */
-EAPI Evas_Object *
-                                  elm_button_add(Evas_Object *parent)
-EINA_ARG_NONNULL(1);
-
-/**
- * Set the label used in the button
- *
- * The passed @p label can be NULL to clean any existing text in it and
- * leave the button as an icon only object.
- *
- * @param obj The button object
- * @param label The text will be written on the button
- * @deprecated use elm_object_text_set() instead.
- */
-EINA_DEPRECATED EAPI void         elm_button_label_set(Evas_Object *obj, const char *label) EINA_ARG_NONNULL(1);
-
-/**
- * Get the label set for the button
- *
- * The string returned is an internal pointer and should not be freed or
- * altered. It will also become invalid when the button is destroyed.
- * The string returned, if not NULL, is a stringshare, so if you need to
- * keep it around even after the button is destroyed, you can use
- * eina_stringshare_ref().
- *
- * @param obj The button object
- * @return The text set to the label, or NULL if nothing is set
- * @deprecated use elm_object_text_set() instead.
- */
-EINA_DEPRECATED EAPI const char  *elm_button_label_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
-
-/**
- * Set the icon used for the button
  *
- * Setting a new icon will delete any other that was previously set, making
- * any reference to them invalid. If you need to maintain the previous
- * object alive, unset it first with elm_button_icon_unset().
- *
- * @param obj The button object
- * @param icon The icon object for the button
- * @deprecated use elm_object_part_content_set() instead.
+ * @ingroup Button
  */
-EINA_DEPRECATED EAPI void         elm_button_icon_set(Evas_Object *obj, Evas_Object *icon) EINA_ARG_NONNULL(1);
-
-/**
- * Get the icon used for the button
- *
- * Return the icon object which is set for this widget. If the button is
- * destroyed or another icon is set, the returned object will be deleted
- * and any reference to it will be invalid.
- *
- * @param obj The button object
- * @return The icon object that is being used
- *
- * @deprecated use elm_object_part_content_get() instead
- */
-EINA_DEPRECATED EAPI Evas_Object *elm_button_icon_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
-
-/**
- * Remove the icon set without deleting it and return the object
- *
- * This function drops the reference the button holds of the icon object
- * and returns this last object. It is used in case you want to remove any
- * icon, or set another one, without deleting the actual object. The button
- * will be left without an icon set.
- *
- * @param obj The button object
- * @return The icon object that was being used
- * @deprecated use elm_object_part_content_unset() instead.
- */
-EINA_DEPRECATED EAPI Evas_Object *elm_button_icon_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
+EAPI Evas_Object                 *elm_button_add(Evas_Object *parent);
 
 /**
  * Turn on/off the autorepeat event generated when the button is kept pressed
@@ -130,8 +82,10 @@ EINA_DEPRECATED EAPI Evas_Object *elm_button_icon_unset(Evas_Object *obj) EINA_A
  *
  * @param obj The button object
  * @param on  A bool to turn on/off the event
+ *
+ * @ingroup Button
  */
-EAPI void                         elm_button_autorepeat_set(Evas_Object *obj, Eina_Bool on) EINA_ARG_NONNULL(1);
+EAPI void                         elm_button_autorepeat_set(Evas_Object *obj, Eina_Bool on);
 
 /**
  * Get whether the autorepeat feature is enabled
@@ -140,15 +94,17 @@ EAPI void                         elm_button_autorepeat_set(Evas_Object *obj, Ei
  * @return EINA_TRUE if autorepeat is on, EINA_FALSE otherwise
  *
  * @see elm_button_autorepeat_set()
+ *
+ * @ingroup Button
  */
-EAPI Eina_Bool                    elm_button_autorepeat_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
+EAPI Eina_Bool                    elm_button_autorepeat_get(const Evas_Object *obj);
 
 /**
  * Set the initial timeout before the autorepeat event is generated
  *
  * Sets the timeout, in seconds, since the button is pressed until the
  * first @c repeated signal is emitted. If @p t is 0.0 or less, there
- * won't be any delay and the even will be fired the moment the button is
+ * won't be any delay and the event will be fired the moment the button is
  * pressed.
  *
  * @param obj The button object
@@ -156,8 +112,10 @@ EAPI Eina_Bool                    elm_button_autorepeat_get(const Evas_Object *o
  *
  * @see elm_button_autorepeat_set()
  * @see elm_button_autorepeat_gap_timeout_set()
+ *
+ * @ingroup Button
  */
-EAPI void                         elm_button_autorepeat_initial_timeout_set(Evas_Object *obj, double t) EINA_ARG_NONNULL(1);
+EAPI void                         elm_button_autorepeat_initial_timeout_set(Evas_Object *obj, double t);
 
 /**
  * Get the initial timeout before the autorepeat event is generated
@@ -166,8 +124,10 @@ EAPI void                         elm_button_autorepeat_initial_timeout_set(Evas
  * @return Timeout in seconds
  *
  * @see elm_button_autorepeat_initial_timeout_set()
+ *
+ * @ingroup Button
  */
-EAPI double                       elm_button_autorepeat_initial_timeout_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
+EAPI double                       elm_button_autorepeat_initial_timeout_get(const Evas_Object *obj);
 
 /**
  * Set the interval between each generated autorepeat event
@@ -179,16 +139,20 @@ EAPI double                       elm_button_autorepeat_initial_timeout_get(cons
  * @param t   Interval in seconds
  *
  * @see elm_button_autorepeat_initial_timeout_set()
+ *
+ * @ingroup Button
  */
-EAPI void                         elm_button_autorepeat_gap_timeout_set(Evas_Object *obj, double t) EINA_ARG_NONNULL(1);
+EAPI void                         elm_button_autorepeat_gap_timeout_set(Evas_Object *obj, double t);
 
 /**
  * Get the interval between each generated autorepeat event
  *
  * @param obj The button object
  * @return Interval in seconds
+ *
+ * @ingroup Button
  */
-EAPI double                       elm_button_autorepeat_gap_timeout_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
+EAPI double                       elm_button_autorepeat_gap_timeout_get(const Evas_Object *obj);
 
 /**
  * @}