elm_entry: update documentation for elm_entnry_textonly_mode_set/get

Summary: update documentation

Reviewers: Jaehyun_Cho, raster

Reviewed By: Jaehyun_Cho

Subscribers: cedric, #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D7089
This commit is contained in:
Taehyub Kim 2018-09-21 18:04:49 +09:00 committed by Jaehyun Cho
parent 0f1227c158
commit 17d5a20a3b
1 changed files with 24 additions and 0 deletions

View File

@ -59,7 +59,31 @@ EINA_DEPRECATED EAPI void elm_scrolled_entry_file_get(const Evas_Object
EINA_DEPRECATED EAPI void elm_scrolled_entry_file_save(Evas_Object *obj);
EINA_DEPRECATED EAPI void elm_scrolled_entry_autosave_set(Evas_Object *obj, Eina_Bool autosave);
EINA_DEPRECATED EAPI Eina_Bool elm_scrolled_entry_autosave_get(const Evas_Object *obj);
/**
* This function sets the entry to textonly mode.
*
* @param obj The entry object
* @param textonly the mode of textonly.
*
* @deprecated
*
* @ingroup Elm_Entry
*/
EINA_DEPRECATED EAPI void elm_scrolled_entry_cnp_textonly_set(Evas_Object *obj, Eina_Bool textonly);
/**
* This function gets the current textonly mode of the entry.
*
* @param obj The entry object
* @return @c EINA_TRUE textonly mode, @c EINA_FALSE not textonly mode
*
* @deprecated
*
* @ingroup Elm_Entry
*/
EINA_DEPRECATED EAPI Eina_Bool elm_scrolled_entry_cnp_textonly_get(Evas_Object *obj);
/**