naviframe: Better structure packing for naviframe item and added more
authorDaniel Juyung Seo <seojuyung2@gmail.com>
Fri, 24 Jan 2014 01:51:12 +0000 (10:51 +0900)
committerDaniel Juyung Seo <seojuyung2@gmail.com>
Fri, 24 Jan 2014 01:51:48 +0000 (10:51 +0900)
description about item structure members.

src/lib/elm_widget_naviframe.h

index 1b4d3fc..1b347da 100644 (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;