elm_widget_entry.h: added more comment for entry + formatting fix.

This commit is contained in:
Daniel Juyung Seo 2013-07-03 13:11:13 +09:00
parent 65771f8b22
commit 19cec53fff
1 changed files with 6 additions and 5 deletions

View File

@ -62,11 +62,12 @@ struct _Elm_Entry_Smart_Data
int input_panel_imdata_len;
int input_panel_layout_variation;
struct
{
Evas_Object *hover_parent;
Evas_Object *pop, *hover;
const char *hover_style;
} anchor_hover;
{
Evas_Object *hover_parent; /**< hover parent object. entry is a hover parent object by default */
Evas_Object *pop; /**< hidden icon for hover target */
Evas_Object *hover; /**< hover object */
const char *hover_style; /**< style of a hover object */
} anchor_hover;
Elm_Cnp_Mode cnp_mode;