[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 f58c9fd..f0fa004 100644 (file)
@@ -23,7 +23,7 @@
  * Available styles for it:
  * - @c "default"
  *
- * Default contents parts of the panes widget that you can use 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
  *
@@ -31,9 +31,9 @@
  * top.
  *
  * Supported elm_object common APIs.
- * @li elm_object_part_content_set
- * @li elm_object_part_content_get
- * @li elm_object_part_content_unset
+ * @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
 EAPI Evas_Object                 *elm_panes_add(Evas_Object *parent);
 
 /**
- * Set the left pane content object of the panes object. 
- *
- * @param obj The panes object.
- * @param left_content The left content object.
- *
- * This function sets the left pane contents of a panes widgets.
- *
- * @ingroup Panes
- */
-EAPI void elm_panes_content_left_set(Evas_Object *obj, Evas_Object *left_content);
-
-/**
- * Get the left pane content object of the panes object. 
- *
- * @param obj The panes object.
- * @return the left pane widget handle or @c NULL, on errors.
- *
- * This function gets the left pane contents of a panes widget.
- *
- * @ingroup Panes
- */
-EAPI Evas_Object * elm_panes_content_left_get(const Evas_Object *obj);
-
-/**
- * Unset the left pane content object of the panes object. 
- *
- * @param obj The panes object.
- * @return the left pane widget handle or @c NULL, on errors.
- *
- * This function unsets the left pane contents of a panes widget and makes
- * the left pane empty.
- *
- * @ingroup Panes
- */
-EAPI Evas_Object * elm_panes_content_left_unset(Evas_Object *obj);
-
-/**
- * Set the right pane content object of the panes object. 
- *
- * @param obj The panes object.
- * @param right_content The right content object.
- *
- * This function sets the right pane contents of a panes widgets.
- *
- * @ingroup Panes
- */
-EAPI void elm_panes_content_right_set(Evas_Object *obj, Evas_Object *right_content);
-
-/**
- * Get the right pane content object of the panes object. 
- *
- * @param obj The panes object.
- * @return the right pane widget handle or @c NULL, on errors.
- *
- * This function gets the right pane contents of a panes widget.
- *
- * @ingroup Panes
- */
-EAPI Evas_Object * elm_panes_content_right_get(const Evas_Object *obj);
-
-/**
- * Unset the right pane content object of the panes object. 
- *
- * @param obj The panes object.
- * @return the right pane widget handle or @c NULL, on errors.
- *
- * This function unsets the right pane contents of a panes widget and makes
- * the right pane empty.
- *
- * @ingroup Panes
- */
-EAPI Evas_Object * elm_panes_content_right_unset(Evas_Object *obj);
-
-/**
  * Set whether the left and right panes resize homogeneously or not.
  *
  * @param obj The panes object.
  * @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 
+ * 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.
@@ -145,7 +71,7 @@ EAPI Evas_Object * elm_panes_content_right_unset(Evas_Object *obj);
  * By default panes are resized homogeneously.
  *
  * @see elm_panes_fixed_get()
- * @see elmpanes_content_left_size_set()
+ * @see elm_panes_content_left_size_set()
  * @see elm_panes_content_right_size_set()
  *
  * @ingroup Panes
@@ -159,7 +85,7 @@ EAPI void                         elm_panes_fixed_set(Evas_Object *obj, Eina_Boo
  * @return @c EINA_TRUE, if @p obj is set to be resized @b homogeneously,
  *
  * @see elm_panes_fixed_set() for more details.
- * @see elmpanes_content_left_size_get()
+ * @see elm_panes_content_left_size_get()
  * @see elm_panes_content_right_size_get()
  *
  * @ingroup Panes
@@ -229,9 +155,9 @@ EAPI double                       elm_panes_content_right_size_get(const Evas_Ob
  * If something different is required, it can be set with this function.
  * 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, right content is displayed at top, and
+ * 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.