elm_panes_legacy: Fix description of functions 56/168756/2
authorJaehyun Cho <jae_hyun.cho@samsung.com>
Tue, 30 Jan 2018 09:53:33 +0000 (18:53 +0900)
committerJaehyun Cho <jae_hyun.cho@samsung.com>
Wed, 31 Jan 2018 02:07:46 +0000 (02:07 +0000)
Change-Id: I50ee33a95750302e7848860ee1bc5937d693de50

src/lib/elementary/elm_panes_legacy.h

index 6a9a1e8..b33bbf0 100644 (file)
@@ -31,7 +31,7 @@ EAPI Evas_Object                 *elm_panes_add(Evas_Object *parent);
 EAPI void elm_panes_horizontal_set(Evas_Object *obj, Eina_Bool horizontal);
 
 /**
- * @brief Set how to split and dispose each content.
+ * @brief Get how to split and dispose each content.
  *
  * Use this function to change how your panes is to be disposed: vertically or
  * horizontally. Horizontal panes have "top" and "bottom" contents, vertical
@@ -59,7 +59,7 @@ EAPI Eina_Bool elm_panes_horizontal_get(const Evas_Object *obj);
 EAPI void elm_panes_content_left_min_size_set(Evas_Object *obj, int size);
 
 /**
- * @brief Set the absolute minimum size of panes widget's left side.
+ * @brief Get the absolute minimum size of panes widget's left side.
  *
  * @note If displayed vertically, left content is displayed at top.
  *
@@ -81,7 +81,7 @@ EAPI int elm_panes_content_left_min_size_get(const Evas_Object *obj);
 EAPI void elm_panes_content_right_min_size_set(Evas_Object *obj, int size);
 
 /**
- * @brief Control the absolute minimum size of panes widget's right side.
+ * @brief Get the absolute minimum size of panes widget's right side.
  *
  * @note If displayed vertically, right content is displayed at bottom.
  *
@@ -114,15 +114,10 @@ EAPI int elm_panes_content_right_min_size_get(const Evas_Object *obj);
 EAPI void elm_panes_content_right_size_set(Evas_Object *obj, double size);
 
 /**
- * @brief Set the size proportion of panes widget's right side.
+ * @brief Get the size proportion of panes widget's 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 right content should be displayed over 75% of the panes
- * size, @c size should be passed as 0.75. 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.
  *
@@ -158,15 +153,10 @@ EAPI double elm_panes_content_right_size_get(const Evas_Object *obj);
 EAPI void elm_panes_content_left_size_set(Evas_Object *obj, double size);
 
 /**
- * @brief Set the size proportion of panes widget's left side.
+ * @brief Get the size proportion of panes widget's left 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 75% of the panes size,
- * @c size should be passed as 0.75. This way, right content will be resized to
- * 25% of panes size.
- *
  * If displayed vertically, left content is displayed at top, and right content
  * at bottom.
  *
@@ -193,7 +183,7 @@ EAPI double elm_panes_content_left_size_get(const Evas_Object *obj);
 EAPI void elm_panes_content_left_min_relative_size_set(Evas_Object *obj, double size);
 
 /**
- * @brief Controls the relative minimum size of panes widget's left side.
+ * @brief Get the relative minimum size of panes widget's left side.
  *
  * proportion of minimum size of left side.
  *
@@ -219,7 +209,7 @@ EAPI double elm_panes_content_left_min_relative_size_get(const Evas_Object *obj)
 EAPI void elm_panes_content_right_min_relative_size_set(Evas_Object *obj, double size);
 
 /**
- * @brief Set the relative minimum size of panes widget's right side.
+ * @brief Get the relative minimum size of panes widget's right side.
  *
  * @note If displayed vertically, right content is displayed at bottom.
  *