elm_panes_legacy: Fix description of functions

This commit is contained in:
Jaehyun Cho 2018-01-30 18:53:33 +09:00
parent 9f59009131
commit 10342af920
1 changed files with 7 additions and 17 deletions

View File

@ -29,7 +29,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
@ -57,7 +57,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.
*
@ -79,7 +79,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.
*
@ -112,15 +112,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.
*
@ -156,15 +151,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.
*
@ -191,7 +181,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.
*
@ -217,7 +207,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.
*