naviframe: Better structure packing for naviframe item and added more

description about item structure members.
This commit is contained in:
Daniel Juyung Seo 2014-01-24 10:51:12 +09:00
parent eb66e87955
commit 3f4325c459
1 changed files with 4 additions and 3 deletions

View File

@ -54,11 +54,12 @@ struct _Elm_Naviframe_Item
Evas_Coord minw;
Evas_Coord minh;
int ref;
Eina_Bool title_enabled : 1;
Eina_Bool unfocusable : 1;
Eina_Bool popping : 1;
Eina_Bool delete_me : 1;
int ref;
Eina_Bool popping : 1; /*<< a flag to notify the item is on poping. this flag is set true at the start of item pop. */
Eina_Bool delete_me : 1; /*<< a flag to notify the item is on deletion. this flag is set true at the start of item deletion. */
};
typedef struct _Elm_Naviframe_Content_Item_Pair Elm_Naviframe_Content_Item_Pair;