[elm_image.c, elm_icon.c] bug fix : elm_icon is disappeared when theme hook is called...
[framework/uifw/elementary.git] / src / lib / elm_panes.h
index dbb2453..f0fa004 100644 (file)
@@ -8,8 +8,8 @@
  * @image html img/panes.png
  * @image latex img/panes.eps width=\textwidth
  *
- * The panes adds a dragable bar between two contents. When dragged
- * this bar will resize contents size.
+ * The panes widget adds a draggable bar between two contents. When dragged
+ * this bar will resize contents' size.
  *
  * Panes can be displayed vertically or horizontally, and contents
  * size proportion can be customized (homogeneous by default).
  * Available styles for it:
  * - @c "default"
  *
- * Default contents parts of the panes widget that you can use for are:
+ * Default content parts of the panes widget that you can use are:
  * @li "left" - A leftside content of the panes
  * @li "right" - A rightside content of the panes
  *
- * If panes is displayed vertically, left content will be displayed at
+ * If panes are displayed vertically, left content will be displayed on
  * top.
  *
+ * Supported elm_object common APIs.
+ * @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 panes_example
  */
  *
  * @ingroup Panes
  */
-EAPI Evas_Object *
-                                  elm_panes_add(Evas_Object *parent)
-EINA_ARG_NONNULL(1);
+EAPI Evas_Object                 *elm_panes_add(Evas_Object *parent);
 
 /**
- * Set the left content of the panes widget.
+ * Set whether the left and right panes resize homogeneously or not.
  *
  * @param obj The panes object.
- * @param content The new left content object.
- *
- * Once the content object is set, a previously set one will be deleted.
- * If you want to keep that old content object, use the
- * elm_panes_content_left_unset() function.
- *
- * If panes is displayed vertically, left content will be displayed at
- * top.
+ * @param fixed Use @c EINA_TRUE to make @p obj to be
+ * resize the left and right panes @b homogeneously.
+ * Use @c EINA_FALSE to make use of the values specified in
+ * elm_panes_content_left_size_set() and
+ * elm_panes_content_right_size_set()
+ * to resize the left and right panes.
  *
- * @see elm_panes_content_left_get()
- * @see elm_panes_content_right_set() to set content on the other side.
+ * By default panes are resized homogeneously.
  *
- * @deprecated use elm_object_part_content_set() instead
+ * @see elm_panes_fixed_get()
+ * @see elm_panes_content_left_size_set()
+ * @see elm_panes_content_right_size_set()
  *
  * @ingroup Panes
  */
-EINA_DEPRECATED EAPI void         elm_panes_content_left_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
+EAPI void                         elm_panes_fixed_set(Evas_Object *obj, Eina_Bool fixed);
 
 /**
- * Set the right content of the panes widget.
+ * Retrieve the resize mode for the panes of a given panes widget.
  *
  * @param obj The panes object.
- * @param content The new right content object.
- *
- * Once the content object is set, a previously set one will be deleted.
- * If you want to keep that old content object, use the
- * elm_panes_content_right_unset() function.
- *
- * If panes is displayed vertically, left content will be displayed at
- * bottom.
- *
- * @see elm_panes_content_right_get()
- * @see elm_panes_content_left_set() to set content on the other side.
+ * @return @c EINA_TRUE, if @p obj is set to be resized @b homogeneously,
  *
- * @deprecated use elm_object_part_content_set() instead
+ * @see elm_panes_fixed_set() for more details.
+ * @see elm_panes_content_left_size_get()
+ * @see elm_panes_content_right_size_get()
  *
  * @ingroup Panes
  */
-EINA_DEPRECATED EAPI void         elm_panes_content_right_set(Evas_Object *obj, Evas_Object *content) EINA_ARG_NONNULL(1);
+EAPI Eina_Bool                    elm_panes_fixed_get(const Evas_Object *obj);
 
 /**
- * Get the left content of the panes.
+ * Get the size proportion of panes widget's left side.
  *
  * @param obj The panes object.
- * @return The left content object that is being used.
- *
- * Return the left content object which is set for this widget.
- *
- * @see elm_panes_content_left_set() for details.
- *
- * @deprecated use elm_object_part_content_get() instead
- *
- * @ingroup Panes
- */
-EINA_DEPRECATED EAPI Evas_Object *elm_panes_content_left_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
-
-/**
- * Get the right content of the panes.
- *
- * @param obj The panes object
- * @return The right content object that is being used
- *
- * Return the right content object which is set for this widget.
- *
- * @see elm_panes_content_right_set() for details.
+ * @return float value between 0.0 and 1.0 representing size proportion
+ * of left side.
  *
- * @deprecated use elm_object_part_content_get() instead
+ * @see elm_panes_content_left_size_set() for more details.
  *
  * @ingroup Panes
  */
-EINA_DEPRECATED EAPI Evas_Object *elm_panes_content_right_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
+EAPI double                       elm_panes_content_left_size_get(const Evas_Object *obj);
 
 /**
- * Unset the left content used for the panes.
+ * Set the size proportion of panes widget's left side.
  *
  * @param obj The panes object.
- * @return The left content object that was being used.
- *
- * Unparent and return the left content object which was set for this widget.
- *
- * @see elm_panes_content_left_set() for details.
- * @see elm_panes_content_left_get().
- *
- * @deprecated use elm_object_part_content_unset() instead
+ * @param size Value between 0.0 and 1.0 representing size proportion
+ * of left side.
  *
- * @ingroup Panes
- */
-EINA_DEPRECATED EAPI Evas_Object *elm_panes_content_left_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
-
-/**
- * Unset the right content used for the panes.
+ * By default it's homogeneous, i.e., both sides have the same size.
  *
- * @param obj The panes object.
- * @return The right content object that was being used.
+ * If something different is required, it can be set with this function.
+ * For example, if the left content should be displayed over
+ * 75% of the panes size, @p size should be passed as @c 0.75.
+ * This way, right content will be resized to 25% of panes size.
  *
- * Unparent and return the right content object which was set for this
- * widget.
+ * If displayed vertically, left content is displayed at top, and
+ * right content at bottom.
  *
- * @see elm_panes_content_right_set() for details.
- * @see elm_panes_content_right_get().
+ * @note This proportion will change when user drags the panes bar.
  *
- * @deprecated use elm_object_part_content_unset() instead
+ * @see elm_panes_content_left_size_get()
  *
  * @ingroup Panes
  */
-EINA_DEPRECATED EAPI Evas_Object *elm_panes_content_right_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);
+EAPI void                         elm_panes_content_left_size_set(Evas_Object *obj, double size);
 
 /**
- * Get the size proportion of panes widget's left side.
+ * Get the size proportion of panes widget's right side.
  *
  * @param obj The panes object.
  * @return float value between 0.0 and 1.0 representing size proportion
- * of left side.
+ * of right side.
  *
- * @see elm_panes_content_left_size_set() for more details.
+ * @see elm_panes_content_right_size_set() for more details.
  *
  * @ingroup Panes
  */
-EAPI double                       elm_panes_content_left_size_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
+EAPI double                       elm_panes_content_right_size_get(const Evas_Object *obj);
 
 /**
- * Set the size proportion of panes widget's left side.
+ * Set the size proportion of panes widget's right side.
  *
  * @param obj The panes object.
  * @param size Value between 0.0 and 1.0 representing size proportion
- * of left side.
+ * of right side.
  *
  * By default it's homogeneous, i.e., both sides have the same size.
  *
  * If something different is required, it can be set with this function.
- * For example, if the left content should be displayed over
+ * For example, if the right content should be displayed over
  * 75% of the panes size, @p size should be passed as @c 0.75.
- * This way, right content will be resized to 25% of panes size.
+ * This way, left content will be resized to 25% of panes size.
  *
  * If displayed vertically, left content is displayed at top, and
  * right content at bottom.
  *
  * @note This proportion will change when user drags the panes bar.
  *
- * @see elm_panes_content_left_size_get()
+ * @see elm_panes_content_right_size_get()
  *
  * @ingroup Panes
  */
-EAPI void                         elm_panes_content_left_size_set(Evas_Object *obj, double size) EINA_ARG_NONNULL(1);
+EAPI void                         elm_panes_content_right_size_set(Evas_Object *obj, double size);
+
 
 /**
  * Set the orientation of a given panes widget.
@@ -219,7 +185,7 @@ EAPI void                         elm_panes_content_left_size_set(Evas_Object *o
  *
  * @ingroup Panes
  */
-EAPI void                         elm_panes_horizontal_set(Evas_Object *obj, Eina_Bool horizontal) EINA_ARG_NONNULL(1);
+EAPI void                         elm_panes_horizontal_set(Evas_Object *obj, Eina_Bool horizontal);
 
 /**
  * Retrieve the orientation of a given panes widget.
@@ -232,9 +198,7 @@ EAPI void                         elm_panes_horizontal_set(Evas_Object *obj, Ein
  *
  * @ingroup Panes
  */
-EAPI Eina_Bool                    elm_panes_horizontal_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
-EAPI void                         elm_panes_fixed_set(Evas_Object *obj, Eina_Bool fixed) EINA_ARG_NONNULL(1);
-EAPI Eina_Bool                    elm_panes_fixed_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
+EAPI Eina_Bool                    elm_panes_horizontal_get(const Evas_Object *obj);
 
 /**
  * @}