[navbarex] remove DOS CRLF line endings
authorMike McCormack <mj.mccormack@samsung.com>
Mon, 7 Nov 2011 08:36:18 +0000 (17:36 +0900)
committerMike McCormack <mj.mccormack@samsung.com>
Mon, 7 Nov 2011 08:36:18 +0000 (17:36 +0900)
src/lib/elc_navigationbar_ex.c

index 5e15c46..3c23b7d 100644 (file)
-#include <Elementary.h>\r
-#include "elm_priv.h"\r
-\r
-/**\r
- * @defgroup Navigationbar_ex Navigationbar_ex\r
- * @ingroup Elementary\r
- *\r
- * The NavigationBar_ex is an object that allows flipping (with animation) between 1 or\r
- * more pages of objects, much like a stack of windows within the window as well display\r
- * the title area for the page consisting of buttons, title, titleobjects etc:-.\r
- *\r
- * Objects can be pushed or popped from the stack or deleted as normal.\r
- * Pushes and pops will animate and a pop will delete the object once the\r
- * animation is finished if delete_on_pop is set else the content is unset and the\r
- * content pointer is sent as event information in the hide,finished signal.\r
- * Any object in the Navigationbar_ex can be promoted to the top\r
- * (from its current stacking position) as well. Objects are pushed to the\r
- * top with elm_navigationbar_ex_item_push() and when the top item is no longer\r
- * wanted, simply pop it with elm_navigationbar_ex_item_pop() and it will also be\r
- * deleted/unset depending on delete_on_pop variable.\r
- * Any object you wish to promote to the top that is already in the\r
- * navigationbar, simply use elm_navigationbar_ex_item_promote(). If an object is no longer\r
- * needed and is not the top item, just delete it as normal. You can query\r
- * which objects are the top and bottom with elm_navigationbar_ex_item_bottom_get()\r
- * and elm_navigationbar_ex_item_top_get().\r
- */\r
-\r
-typedef struct _Widget_Data Widget_Data;\r
-typedef struct _function_button fn_button;\r
-\r
-struct _Widget_Data\r
-{\r
-   Eina_List *stack, *to_delete;\r
-   Elm_Navigationbar_ex_Item *top, *oldtop;\r
-   Evas_Object *rect, *clip;\r
-   Eina_Bool del_on_pop : 1;\r
-   Eina_Bool disable_animation: 1;\r
-};\r
-\r
-struct _Elm_Navigationbar_ex_Item\r
-{\r
-   Evas_Object *obj, *base, *content;\r
-   Evas_Object *ct_base;\r
-   Evas_Coord minw, minh;\r
-   const char *title;\r
-   const char *subtitle;\r
-   const char *item_style;\r
-   Eina_List *fnbtn_list;\r
-   Evas_Object *title_obj;\r
-   Evas_Object *icon;\r
-   Eina_Bool popme : 1;\r
-   Eina_Bool titleobj_visible:1;\r
-};\r
-\r
-struct _function_button\r
-{\r
-   Evas_Object *btn;\r
-   int btn_id;\r
-};\r
-\r
-static const char *widtype = NULL;\r
-static void _del_hook(Evas_Object *obj);\r
-static void _theme_hook(Evas_Object *obj);\r
-static void _sizing_eval(Evas_Object *obj);\r
-static void _changed_size_hints(void *data, Evas *e, Evas_Object *obj, void *event_info);\r
-static void _sub_del(void *data, Evas_Object *obj, void *event_info);\r
-\r
-static const char SIG_HIDE_FINISHED[] = "hide,finished";\r
-static const char SIG_TITLE_OBJ_VISIBLE_CHANGED[] = "titleobj,visible,changed";\r
-\r
-static const Evas_Smart_Cb_Description _signals[] = {\r
-       {SIG_HIDE_FINISHED, ""},\r
-       {SIG_TITLE_OBJ_VISIBLE_CHANGED, ""},\r
-       {NULL, NULL}\r
-};\r
-\r
-static void\r
-_del_hook(Evas_Object *obj)\r
-{\r
-   Widget_Data *wd = elm_widget_data_get(obj);\r
-   if (!wd) return;\r
-   free(wd);\r
-}\r
-\r
-static Evas_Object*\r
-_content_unset(Elm_Navigationbar_ex_Item* item)\r
-{\r
-   if (!item) return NULL;\r
-   Evas_Object *content = NULL;\r
-   if (!item->content) return NULL;\r
-   content = item->content;\r
-   elm_widget_sub_object_del(item->obj,item->content);\r
-   edje_object_part_unswallow(item->ct_base,item->content);\r
-   item->content = NULL;\r
-   evas_object_hide(content);\r
-   return content;\r
-}\r
-\r
-static void\r
-_theme_hook(Evas_Object *obj)\r
-{\r
-   Widget_Data *wd = elm_widget_data_get(obj);\r
-   Eina_List *l;\r
-   char buf_fn[1024];\r
-   char buf[1024];\r
-   Elm_Navigationbar_ex_Item *it;\r
-   if (!wd) return;\r
-   EINA_LIST_FOREACH(wd->stack, l, it)\r
-     {\r
-        Eina_List *bl;\r
-        fn_button *btn_det;\r
-        edje_object_scale_set(it->base, elm_widget_scale_get(obj) *\r
-                              _elm_config->scale);\r
-        strncpy(buf, "item/", sizeof(buf));\r
-        strncat(buf, it->item_style, sizeof(buf) - strlen(buf));\r
-        _elm_theme_object_set(obj, it->base,  "navigationbar_ex", buf, elm_widget_style_get(obj));\r
-        _elm_theme_object_set(obj, it->ct_base,  "navigationbar_ex", "content", elm_widget_style_get(obj));\r
-        if (it->title)\r
-          edje_object_part_text_set(it->base, "elm.text", it->title);\r
-        if (it->subtitle)\r
-          edje_object_part_text_set(it->base, "elm.text.sub", it->subtitle);\r
-        if (it->title_obj)\r
-          {\r
-             edje_object_part_swallow(it->base, "elm.swallow.title", it->title_obj);\r
-             if (it->titleobj_visible)\r
-               edje_object_signal_emit(it->base, "elm,state,show,title", "elm");\r
-             else\r
-               edje_object_signal_emit(it->base, "elm,state,hide,title", "elm");\r
-          }\r
-        if (it->icon)\r
-          edje_object_part_swallow(it->base, "elm.swallow.icon", it->icon);\r
-        EINA_LIST_FOREACH(it->fnbtn_list, bl, btn_det)\r
-          {\r
-             if (btn_det->btn_id == ELM_NAVIGATIONBAR_EX_BACK_BUTTON)\r
-               {\r
-                  snprintf(buf_fn, sizeof(buf_fn), "navigationbar_backbutton/%s", elm_widget_style_get(obj));\r
-                  snprintf(buf, sizeof(buf), "elm.swallow.back");\r
-               }\r
-             else\r
-               {\r
-                  snprintf(buf_fn, sizeof(buf_fn), "navigationbar_functionbutton/%s", elm_widget_style_get(obj));\r
-                  snprintf(buf, sizeof(buf), "elm.swallow.btn%d", btn_det->btn_id);\r
-               }\r
-             elm_object_style_set(btn_det->btn, buf_fn);\r
-             edje_object_part_swallow(it->base, buf, btn_det->btn);\r
-          }\r
-     }\r
-   _sizing_eval(obj);\r
-}\r
-\r
-static void\r
-_sizing_eval(Evas_Object *obj)\r
-{\r
-   Widget_Data *wd = elm_widget_data_get(obj);\r
-   Evas_Coord minw = -1, minh = -1;\r
-   Eina_List *l;\r
-   Elm_Navigationbar_ex_Item *it;\r
-   if (!wd) return;\r
-   EINA_LIST_FOREACH(wd->stack, l, it)\r
-     {\r
-        if (it->minw > minw) minw = it->minw;\r
-        if (it->minh > minh) minh = it->minh;\r
-     }\r
-   evas_object_size_hint_min_set(obj, minw, minh);\r
-   evas_object_size_hint_max_set(obj, -1, -1);\r
-}\r
-\r
-static void\r
-_changed_size_hints(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)\r
-{\r
-   Elm_Navigationbar_ex_Item *it = data;\r
-   Evas_Coord minw = -1, minh = -1;\r
-   evas_object_size_hint_min_get(it->content, &minw, &minh);\r
-   // FIXME: why is this needed? how does edje get this unswallowed or\r
-   // lose its callbacks to edje\r
-   edje_object_part_swallow(it->ct_base, "elm.swallow.content", it->content);\r
-   edje_object_size_min_calc(it->base, &it->minw, &it->minh);\r
-   _sizing_eval(it->obj);\r
-}\r
-\r
-static void\r
-_eval_top(Evas_Object *obj)\r
-{\r
-   Widget_Data *wd = elm_widget_data_get(obj);\r
-   Eina_Bool animate = EINA_TRUE;\r
-   Elm_Navigationbar_ex_Item *ittop = NULL;\r
-   if (!wd) return;\r
-   if (!wd->stack) return;\r
-   ittop = eina_list_last(wd->stack)->data;\r
-   if (ittop != wd->top)\r
-     {\r
-        Evas_Object *o1, *o2;\r
-        const char *onshow, *onhide;\r
-\r
-        if (wd->top)\r
-          {\r
-             o1 = wd->top->ct_base;\r
-             o2 = wd->top->base;/*make use of the signals sent for animation*/\r
-\r
-             /*issue to fix, hide signal does not come for t_base, increasing time helps\r
-              in getting correct events in pop*/\r
-             if (wd->disable_animation)\r
-               {\r
-                  edje_object_signal_emit(o2, "elm,action,hide,noanimate", "elm");\r
-                  edje_object_signal_emit(o1, "elm,action,hide,noanimate", "elm");\r
-               }\r
-             else if (wd->top->popme)\r
-               {\r
-                  edje_object_signal_emit(o2, "elm,action,pop", "elm");\r
-                  edje_object_signal_emit(o1, "elm,action,pop", "elm");\r
-               }\r
-             else\r
-               {\r
-                  edje_object_signal_emit(o2, "elm,action,hide", "elm");\r
-                  edje_object_signal_emit(o1, "elm,action,hide", "elm");\r
-               }\r
-             onhide = edje_object_data_get(o1, "onhide");\r
-             if (onhide)\r
-               {\r
-                  if (!strcmp(onhide, "raise")) {\r
-                     evas_object_raise(o2);\r
-                     evas_object_raise(o1);\r
-                  }\r
-                  else if (!strcmp(onhide, "lower")) {\r
-                       evas_object_lower(o2);\r
-                       evas_object_lower(o1);\r
-                  }\r
-               }\r
-          }\r
-        else\r
-          {\r
-             animate = EINA_FALSE;\r
-          }\r
-        wd->oldtop = wd->top;\r
-        wd->top = ittop;\r
-        o1 = wd->top->ct_base;\r
-        o2 = wd->top->base;\r
-        evas_object_show(o2);\r
-        evas_object_show(o1);\r
-\r
-        if ((!animate)||(wd->disable_animation))\r
-          {\r
-             edje_object_signal_emit(o2, "elm,action,show,noanimate", "elm");\r
-             edje_object_signal_emit(o1, "elm,action,show,noanimate", "elm");\r
-          }\r
-        else if (wd->oldtop)\r
-          {\r
-             if (elm_object_focus_get(wd->oldtop->content))\r
-               elm_widget_focused_object_clear(wd->oldtop->content);\r
-             if (wd->oldtop->popme)\r
-               {\r
-                  edje_object_signal_emit(o2, "elm,action,show", "elm");\r
-                  edje_object_signal_emit(o1, "elm,action,show", "elm");\r
-               }\r
-             else\r
-               {\r
-                  edje_object_signal_emit(o2, "elm,action,push", "elm");\r
-                  edje_object_signal_emit(o1, "elm,action,push", "elm");\r
-               }\r
-          }\r
-        else\r
-          {\r
-             edje_object_signal_emit(o2, "elm,action,push", "elm");\r
-             edje_object_signal_emit(o1, "elm,action,push", "elm");\r
-          }\r
-        onshow = edje_object_data_get(o1, "onshow");\r
-        if (onshow)\r
-          {\r
-             if (!strcmp(onshow, "raise")) {\r
-                evas_object_raise(o2);\r
-                evas_object_raise(o1);\r
-             }\r
-             else if (!strcmp(onshow, "lower")) {\r
-                evas_object_lower(o2);\r
-                evas_object_lower(o1);\r
-             }\r
-          }\r
-     }\r
-}\r
-\r
-static void\r
-_move(void *data, Evas *e __UNUSED__, Evas_Object *obj, void *event_info __UNUSED__)\r
-{\r
-   Widget_Data *wd = elm_widget_data_get(data);\r
-   Evas_Coord x, y;\r
-   Eina_List *l;\r
-   Elm_Navigationbar_ex_Item *it;\r
-   if (!wd) return;\r
-   evas_object_geometry_get(obj, &x, &y, NULL, NULL);\r
-   EINA_LIST_FOREACH(wd->stack, l, it)\r
-     evas_object_move(it->base, x, y);\r
-}\r
-\r
-static void\r
-_sub_del(void *data, Evas_Object *obj __UNUSED__, void *event_info)\r
-{\r
-   Widget_Data *wd = elm_widget_data_get(data);\r
-   Evas_Object *sub = event_info;\r
-   Eina_List *l,*list;\r
-   fn_button *btn_data;\r
-   Elm_Navigationbar_ex_Item *it;\r
-   if (!wd) return;\r
-   EINA_LIST_FOREACH(wd->stack, l, it)\r
-     {\r
-        if (it->content == sub)\r
-          {\r
-             wd->stack = eina_list_remove_list(wd->stack, l);\r
-             evas_object_event_callback_del_full\r
-               (sub, EVAS_CALLBACK_CHANGED_SIZE_HINTS, _changed_size_hints, it);\r
-             if (it->title) eina_stringshare_del(it->title);\r
-             if (it->subtitle) eina_stringshare_del(it->subtitle);\r
-             EINA_LIST_FOREACH(it->fnbtn_list, list, btn_data)\r
-               {\r
-                  evas_object_del(btn_data->btn);\r
-                  free(btn_data);\r
-                  btn_data = NULL;\r
-               }\r
-             if (it->item_style) eina_stringshare_del(it->item_style);\r
-             if (it->title_obj) evas_object_del(it->title_obj);\r
-             if (it->icon) evas_object_del(it->icon);\r
-             evas_object_del(it->ct_base);\r
-             evas_object_del(it->base);\r
-             _eval_top(it->obj);\r
-             free(it);\r
-             return;\r
-          }\r
-     }\r
-}\r
-\r
-static void\r
-_resize(void *data, Evas *e __UNUSED__, Evas_Object *obj, void *event_info __UNUSED__)\r
-{\r
-   Widget_Data *wd = elm_widget_data_get(data);\r
-   Evas_Coord w, h;\r
-   Eina_List *l;\r
-   Elm_Navigationbar_ex_Item *it;\r
-   if (!wd) return;\r
-   evas_object_geometry_get(obj, NULL, NULL, &w, &h);\r
-   EINA_LIST_FOREACH(wd->stack, l, it) evas_object_resize(it->base, w, h);\r
-}\r
-\r
-static void\r
-_signal_hide_finished(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)\r
-{\r
-   Elm_Navigationbar_ex_Item *it = data;\r
-   Evas_Object *obj2 = it->obj;\r
-   Widget_Data *wd = elm_widget_data_get(it->obj);\r
-   evas_object_hide(it->ct_base);\r
-   evas_object_hide(it->base);\r
-   edje_object_signal_emit(it->base, "elm,action,reset", "elm");\r
-   edje_object_signal_emit(it->ct_base, "elm,action,reset", "elm");\r
-   evas_object_smart_callback_call(obj2, SIG_HIDE_FINISHED, it->content);\r
-   edje_object_message_signal_process(it->base);\r
-   edje_object_message_signal_process(it->ct_base);\r
-   if (it->popme)\r
-     {\r
-        if (wd->del_on_pop)\r
-          {\r
-             evas_object_del(it->content);\r
-          }\r
-        else\r
-          {\r
-             _content_unset(it);\r
-          }\r
-     }\r
-   _sizing_eval(obj2);\r
-}\r
-\r
-static void\r
-_item_promote(Elm_Navigationbar_ex_Item* item)\r
-{\r
-   if (!item) return;\r
-   Widget_Data *wd = elm_widget_data_get(item->obj);\r
-   Eina_List *l;\r
-   Elm_Navigationbar_ex_Item *it;\r
-   if (!wd) return;\r
-   EINA_LIST_FOREACH(wd->stack, l, it)\r
-     {\r
-        if (it == item)\r
-          {\r
-             wd->stack = eina_list_remove_list(wd->stack, l);\r
-             wd->stack = eina_list_append(wd->stack, it);\r
-             _eval_top(it->obj);\r
-             return;\r
-          }\r
-     }\r
-}\r
-\r
-static void\r
-_process_deletions(Widget_Data *wd)\r
-{\r
-   if (!wd) return;\r
-   Elm_Navigationbar_ex_Item *it;\r
-   fn_button *btn_data;\r
-   Eina_List *list;\r
-   EINA_LIST_FREE(wd->to_delete, it)\r
-     {\r
-        evas_object_event_callback_del_full\r
-          (it->content, EVAS_CALLBACK_CHANGED_SIZE_HINTS, _changed_size_hints, it);\r
-        if (it->title) eina_stringshare_del(it->title);\r
-        if (it->subtitle) eina_stringshare_del(it->subtitle);\r
-        if (it->item_style) eina_stringshare_del(it->item_style);\r
-        EINA_LIST_FOREACH(it->fnbtn_list, list, btn_data)\r
-          {\r
-             evas_object_del(btn_data->btn);\r
-             free(btn_data);\r
-             btn_data = NULL;\r
-          }\r
-        if (it->title_obj) evas_object_del(it->title_obj);\r
-        if (it->content)  evas_object_del(it->content);\r
-        if (it->icon) evas_object_del(it->icon);\r
-        evas_object_del(it->ct_base);\r
-        evas_object_del(it->base);\r
-        _eval_top(it->obj);\r
-        free(it);\r
-        it = NULL;\r
-     }\r
-}\r
-\r
-static void\r
-_switch_titleobj_visibility(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)\r
-{\r
-   Elm_Navigationbar_ex_Item *item = (Elm_Navigationbar_ex_Item *)data;\r
-   if(!item) return;\r
-   if(!item->title_obj) return;\r
-   if(!item->titleobj_visible)\r
-     {\r
-        edje_object_signal_emit(item->base, "elm,state,show,title", "elm");\r
-        evas_object_smart_callback_call(item->obj, SIG_TITLE_OBJ_VISIBLE_CHANGED, (void *) EINA_TRUE);\r
-        item->titleobj_visible = EINA_TRUE;\r
-     }\r
-   else\r
-     {\r
-        edje_object_signal_emit(item->base, "elm,state,hide,title", "elm");\r
-        evas_object_smart_callback_call(item->obj, SIG_TITLE_OBJ_VISIBLE_CHANGED, (void *) EINA_FALSE);\r
-        item->titleobj_visible = EINA_FALSE;\r
-     }\r
-}\r
-\r
-static void\r
-_emit_hook(Evas_Object *obj, const char *emission, const char *source)\r
-{\r
-   ELM_CHECK_WIDTYPE(obj, widtype);\r
-\r
-   Widget_Data *wd;\r
-   Eina_List *last;\r
-   Elm_Navigationbar_ex_Item *it;\r
-\r
-   wd = elm_widget_data_get(obj);\r
-   if (!wd) return;\r
-\r
-   last = eina_list_last(wd->stack);\r
-   if (!last) return;\r
-\r
-   it = eina_list_data_get(last);\r
-   if ((!it) || (!it->title_obj)) return;\r
-\r
-   if (!strcmp(source, "elm"))\r
-     {\r
-        if (!strcmp(emission, "elm,state,hide,noanimate,title"))\r
-          it->titleobj_visible = EINA_FALSE;\r
-        else if (!strcmp(emission, "elm,state,show,noanimate,title"))\r
-          it->titleobj_visible = EINA_TRUE;\r
-     }\r
-   /*sending signal to top most item of the stack*/\r
-   edje_object_signal_emit(it->base, emission, source);\r
-}\r
-\r
-/**\r
- * Add a new navigationbar_ex to the parent\r
- *\r
- * @param[in] parent The parent object\r
- * @return The new object or NULL if it cannot be created\r
- *\r
- * @ingroup Navigationbar_ex\r
- */\r
-EAPI Evas_Object *\r
-elm_navigationbar_ex_add(Evas_Object *parent)\r
-{\r
-   Evas_Object *obj;\r
-   Evas *e;\r
-   Widget_Data *wd;\r
-\r
-   EINA_SAFETY_ON_NULL_RETURN_VAL(parent, NULL);\r
-\r
-   wd = ELM_NEW(Widget_Data);\r
-   e = evas_object_evas_get(parent);\r
-   obj = elm_widget_add(e);\r
-   ELM_SET_WIDTYPE(widtype, "navigationbar_ex");\r
-   elm_widget_type_set(obj, "navigationbar_ex");\r
-   elm_widget_sub_object_add(parent, obj);\r
-   elm_widget_data_set(obj, wd);\r
-   elm_widget_del_hook_set(obj, _del_hook);\r
-   elm_widget_theme_hook_set(obj, _theme_hook);\r
-   elm_widget_can_focus_set(obj, EINA_FALSE);\r
-   elm_widget_signal_emit_hook_set(obj, _emit_hook);\r
-   wd->clip = evas_object_rectangle_add(e);\r
-   elm_widget_resize_object_set(obj, wd->clip);\r
-   elm_widget_sub_object_add(obj, wd->clip);\r
-\r
-   wd->rect = evas_object_rectangle_add(e);\r
-   elm_widget_sub_object_add(obj, wd->rect);\r
-   evas_object_color_set(wd->rect, 255, 255, 255, 0);\r
-   evas_object_clip_set(wd->rect, wd->clip);\r
-\r
-   evas_object_event_callback_add(obj, EVAS_CALLBACK_MOVE, _move, obj);\r
-   evas_object_event_callback_add(obj, EVAS_CALLBACK_RESIZE, _resize, obj);\r
-\r
-   evas_object_smart_callback_add(obj, "sub-object-del", _sub_del, obj);\r
-   wd->del_on_pop = EINA_TRUE;\r
-   _sizing_eval(obj);\r
-   return obj;\r
-}\r
-\r
-/**\r
- * Push an object along with its style to the top of the Navigationbar_ex stack (and show it)\r
- *\r
- * The object pushed becomes a child of the Navigationbar_ex and will be controlled\r
- * it will be deleted when the Navigationbar_ex is deleted or when content is popped(depending on del_\r
- * on_pop variable).\r
- *\r
- * @param[in] obj The Navigationbar_ex object\r
- * @param[in] content The object to push\r
- * @param[in] item_style The style of the page\r
- * @return The Navigationbar_ex Item or NULL\r
- * @ingroup Navigationbar_ex\r
- */\r
-EAPI Elm_Navigationbar_ex_Item*\r
-elm_navigationbar_ex_item_push(Evas_Object *obj, Evas_Object *content, const char* item_style)\r
-{\r
-   ELM_CHECK_WIDTYPE(obj, widtype)NULL;\r
-   Widget_Data *wd = elm_widget_data_get(obj);\r
-   Elm_Navigationbar_ex_Item *it;\r
-   Evas_Coord x, y, w, h;\r
-   char buf[1024];\r
-   if (!wd) return NULL;\r
-   if (!content) return NULL;\r
-   if (!item_style) return NULL;\r
-   it = ELM_NEW(Elm_Navigationbar_ex_Item);\r
-   if (!it) return NULL;\r
-   it->obj = obj;\r
-   it->content = content;\r
-   it->base = edje_object_add(evas_object_evas_get(obj));\r
-   it->ct_base = edje_object_add(evas_object_evas_get(obj));\r
-   it->titleobj_visible = EINA_TRUE;\r
-\r
-   evas_object_smart_member_add(it->base, obj);\r
-   evas_object_smart_member_add(it->ct_base, obj);\r
-\r
-   evas_object_geometry_get(obj, &x, &y, &w, &h);\r
-   evas_object_move(it->base, x, y);\r
-   evas_object_resize(it->base, w, h);\r
-   evas_object_clip_set(it->base, wd->clip);\r
-\r
-   elm_widget_sub_object_add(obj, it->base);\r
-   elm_widget_sub_object_add(obj, it->ct_base);\r
-\r
-   elm_widget_sub_object_add(obj, it->content);\r
-\r
-   _elm_theme_object_set(obj, it->ct_base,  "navigationbar_ex", "content", elm_widget_style_get(obj));\r
-\r
-   strncpy(buf, "item/", sizeof(buf));\r
-   strncat(buf, item_style, sizeof(buf) - strlen(buf));\r
-   eina_stringshare_replace(&it->item_style, item_style);\r
-   _elm_theme_object_set(obj, it->base,  "navigationbar_ex", buf, elm_widget_style_get(obj));\r
-\r
-\r
-   edje_object_part_swallow(it->base, "elm.swallow.content", it->ct_base);\r
-\r
-   edje_object_signal_callback_add(it->ct_base, "elm,action,hide,finished", "",\r
-                                   _signal_hide_finished, it);\r
-   evas_object_event_callback_add(it->content,\r
-                                  EVAS_CALLBACK_CHANGED_SIZE_HINTS,\r
-                                  _changed_size_hints, it);\r
-   edje_object_part_swallow(it->ct_base, "elm.swallow.content", it->content);\r
-   edje_object_size_min_calc(it->base, &it->minw, &it->minh);\r
-   evas_object_data_set(it->base, "_elm_leaveme", obj);\r
-   evas_object_show(it->content);\r
-   wd->stack = eina_list_append(wd->stack, it);\r
-   _eval_top(obj);\r
-   _sizing_eval(obj);\r
-   return it;\r
-}\r
-\r
-/**\r
- * Set the title string for the pushed Item.\r
- * @param[in] item The Navigationbar_ex Item\r
- * @param[in] title The title string\r
- *\r
- * @ingroup Navigationbar_ex\r
- */\r
-EAPI void\r
-elm_navigationbar_ex_item_title_label_set( Elm_Navigationbar_ex_Item* item, const char *title)\r
-{\r
-   if (!item) return;\r
-   if (!eina_stringshare_replace(&item->title, title)) return;\r
-   if (item->base)\r
-     {\r
-        edje_object_part_text_set(item->base, "elm.text", item->title);\r
-     }\r
-}\r
-\r
-/**\r
- * Return the title string of the pushed item.\r
- *\r
- * @param[in]  item The Navigationbar_ex Item\r
- * @return The title string or NULL if none\r
- *\r
- * @ingroup Navigationbar_ex\r
- */\r
-EAPI const char *\r
-elm_navigationbar_ex_item_title_label_get(Elm_Navigationbar_ex_Item* item)\r
-{\r
-   if(!item) return NULL;\r
-   return item->title;\r
-}\r
-\r
-/**\r
- * Set the sub title string for the pushed content\r
- *\r
- * @param[in] item The Navigationbar_ex Item\r
- * @param[in] subtitle The subtitle string\r
- *\r
- * @ingroup Navigationbar_ex\r
- */\r
-EAPI void\r
-elm_navigationbar_ex_item_subtitle_label_set( Elm_Navigationbar_ex_Item* item, const char *subtitle)\r
-{\r
-   if (!item) return;\r
-   if (!eina_stringshare_replace(&item->subtitle, subtitle)) return;\r
-   if (item->base)\r
-     edje_object_part_text_set(item->base, "elm.text.sub", item->subtitle);\r
-}\r
-\r
-/**\r
- * Return the subtitle string of the pushed content\r
- *\r
- * @param[in] item The Navigationbar_ex Item\r
- * @return The subtitle string or NULL if none\r
- *\r
- * @ingroup Navigationbar_ex\r
- */\r
-EAPI const char *\r
-elm_navigationbar_ex_item_subtitle_label_get(Elm_Navigationbar_ex_Item* item)\r
-{\r
-   if (!item) return NULL;\r
-   return item->subtitle;\r
-}\r
-\r
-/**\r
- * Set's the icon object of the pushed content\r
- *\r
- * @param[in] item The Navigationbar_ex Item\r
- * @param[in] The icon object or NULL if none\r
- *\r
- *@ingroup Navigationbar_ex\r
- */\r
-EAPI void\r
-elm_navigationbar_ex_item_icon_set(Elm_Navigationbar_ex_Item* item, Evas_Object *icon)\r
-{\r
-   if (!item) return;\r
-   if (item->icon == icon) return;\r
-   if (item->icon) evas_object_del(item->icon);\r
-   item->icon = icon;\r
-   if(icon)\r
-     {\r
-        edje_object_part_swallow(item->base, "elm.swallow.icon", icon);\r
-        elm_widget_sub_object_add(item->obj, icon);\r
-        edje_object_signal_emit(item->base, "elm,state,icon,visible", "elm");\r
-        edje_object_message_signal_process(item->base);\r
-     }\r
-   else\r
-     edje_object_signal_emit(item->base, "elm,state,icon,hidden", "elm");\r
-}\r
-\r
-/**\r
- * Return the icon object of the pushed content\r
- *\r
- * @param[in] item The Navigationbar_ex Item\r
- * @return The icon object or NULL if none\r
- *\r
- * @ingroup Navigationbar_ex\r
- */\r
-EAPI Evas_Object *\r
-elm_navigationbar_ex_item_icon_get(Elm_Navigationbar_ex_Item* item)\r
-{\r
-   if (!item) return NULL;\r
-   return item->icon;\r
-}\r
-\r
-\r
-/**\r
- * Set the button object of the pushed content\r
- *\r
- * @param[in] item The Navigationbar_ex Item\r
- * @param[in] btn_label The button label\r
- * @param[in] icon The button icon\r
- * @param[in] button_type Indicates the position[use macros of type Elm_Navi_ex_Button_Type\r
- * if more function buttons are required you can use values ELM_NAVIGATIONBAR_EX_MAX and more]\r
- * @param[in] func Callback function called when button is clicked.\r
- * @param[in] data Callback data that would be sent when button is clicked.\r
- * @ingroup Navigationbar_ex\r
- */\r
-EAPI void\r
-elm_navigationbar_ex_item_title_button_set(Elm_Navigationbar_ex_Item* item, char *btn_label, Evas_Object *icon, int button_type, Evas_Smart_Cb func, const void *data)\r
-{\r
-   if (!item) return;\r
-   Eina_List *bl;\r
-   Evas_Object *btn;\r
-   char buf[1024],theme[1024];\r
-   fn_button *btn_det = NULL;\r
-   EINA_LIST_FOREACH(item->fnbtn_list, bl, btn_det)\r
-     {\r
-        if (btn_det->btn_id == button_type)\r
-          {\r
-             evas_object_del(btn_det->btn);\r
-             free(btn_det);\r
-             btn_det = NULL;\r
-             item->fnbtn_list = eina_list_remove_list(item->fnbtn_list, bl);\r
-          }\r
-     }\r
-   btn = elm_button_add(item->obj);\r
-   btn_det = ELM_NEW(btn_det);\r
-   if (!btn_det) return;\r
-   if (button_type == ELM_NAVIGATIONBAR_EX_BACK_BUTTON)\r
-     {\r
-        snprintf(theme, sizeof(theme), "navigationbar_backbutton/%s", elm_widget_style_get(item->obj));\r
-        elm_object_style_set(btn, theme);\r
-        snprintf(buf, sizeof(buf), "elm.swallow.back");\r
-     }\r
-   else\r
-     {\r
-        snprintf(theme, sizeof(theme), "navigationbar_functionbutton/%s", elm_widget_style_get(item->obj));\r
-        elm_object_style_set(btn, theme);\r
-        snprintf(buf, sizeof(buf), "elm.swallow.btn%d", button_type);\r
-     }\r
-   if (btn_label)\r
-     elm_object_text_set(btn, btn_label);\r
-   if (icon)\r
-     elm_button_icon_set(btn, icon);\r
-   elm_object_focus_allow_set(btn, EINA_FALSE);\r
-   evas_object_smart_callback_add(btn, "clicked", func, data);\r
-   edje_object_part_swallow(item->base, buf, btn);\r
-   elm_widget_sub_object_add(item->obj, btn);\r
-   btn_det->btn = btn;\r
-   btn_det->btn_id = button_type;\r
-   item->fnbtn_list = eina_list_append(item->fnbtn_list, btn_det);\r
-}\r
-\r
-/**\r
- * Return the button object of the pushed content\r
- *\r
- * @param[in] item The Navigationbar_ex Item\r
- * @param[in] button_type Indicates the position\r
- * @return The button object or NULL if none\r
- *\r
- * @ingroup Navigationbar_ex\r
- */\r
-EAPI Evas_Object *\r
-elm_navigationbar_ex_item_title_button_get(Elm_Navigationbar_ex_Item* item, int button_type)\r
-{\r
-   if (!item) return NULL;\r
-   fn_button *btn_det;\r
-   Eina_List *bl;\r
-   EINA_LIST_FOREACH(item->fnbtn_list, bl, btn_det)\r
-     {\r
-        if (btn_det->btn_id == button_type)\r
-          return btn_det->btn;\r
-     }\r
-   return NULL;\r
-}\r
-\r
-/**\r
- * Unset the button object of the pushed content\r
- *\r
- * @param[in] item The Navigationbar_ex Item\r
- * @param[in] button_type Indicates the position\r
- * @return The button object or NULL if none\r
- *\r
- * @ingroup Navigationbar_ex\r
- */\r
-EAPI Evas_Object *\r
-elm_navigationbar_ex_item_title_button_unset(Elm_Navigationbar_ex_Item* item, int button_type)\r
-{\r
-   if (!item) return NULL;\r
-   fn_button *btn_det;\r
-   Eina_List *bl;\r
-   Evas_Object *btn_ret;\r
-   EINA_LIST_FOREACH(item->fnbtn_list, bl, btn_det)\r
-     {\r
-        if (btn_det->btn_id == button_type)\r
-          {\r
-             btn_ret = btn_det->btn;\r
-             elm_widget_sub_object_del(item->obj,btn_det->btn);\r
-             edje_object_part_unswallow(item->base,btn_det->btn);\r
-             item->fnbtn_list = eina_list_remove_list(item->fnbtn_list, bl);\r
-             btn_det->btn = NULL;\r
-             return btn_ret;\r
-          }\r
-     }\r
-   return NULL;\r
-}\r
-\r
-/**\r
- * Sets a title object for the Item\r
- * @param[in] item The Navigationbar_ex Item\r
- * @param[in] title_obj Title object (normally segment_control/searchbar)\r
- *\r
- * @ingroup Navigationbar_ex\r
- */\r
-EAPI void\r
-elm_navigationbar_ex_item_title_object_set(Elm_Navigationbar_ex_Item* item, Evas_Object *title_obj)\r
-{\r
-   if (!item) return;\r
-   if (item->title_obj) evas_object_del(item->title_obj);\r
-   item->title_obj = title_obj;\r
-   if (title_obj)\r
-     {\r
-        elm_widget_sub_object_add(item->obj,title_obj);\r
-        edje_object_part_swallow(item->base, "elm.swallow.title", title_obj);\r
-        edje_object_signal_callback_add(item->base, "elm,action,clicked", "elm",\r
-                                        _switch_titleobj_visibility, item);\r
-     }\r
-   _sizing_eval(item->obj);\r
-}\r
-\r
-/**\r
- * Hides the title area of the item.\r
- * @param[in] item The Navigationbar_ex Item\r
- * @param[in] hidden if EINA_TRUE the title area is hidden else its shown.\r
- *\r
- * @ingroup Navigationbar_ex\r
- */\r
-\r
-EAPI void\r
-elm_navigationbar_ex_item_title_hidden_set(Elm_Navigationbar_ex_Item* item, Eina_Bool hidden)\r
-{\r
-   if (!item) return;\r
-   if (hidden) edje_object_signal_emit(item->base, "elm,state,item,moveup", "elm");\r
-   else edje_object_signal_emit(item->base, "elm,state,item,movedown", "elm");\r
-   _sizing_eval(item->obj);\r
-}\r
-\r
-/**\r
- * Unsets a title object for the item, the return object has to be deleted\r
- * by application if not added again in to navigationbar.\r
- *\r
- * @param[in] item The Navigationbar_ex Item\r
- * @return The title object or NULL if none is set\r
- *\r
- * @ingroup Navigationbar_ex\r
- */\r
-EAPI Evas_Object*\r
-elm_navigationbar_ex_item_title_object_unset(Elm_Navigationbar_ex_Item* item)\r
-{\r
-   if (!item) return NULL;\r
-   Evas_Object *title_obj=NULL;\r
-   if (!item->title_obj) return NULL;\r
-   title_obj = item->title_obj;\r
-   edje_object_signal_callback_del(item->base, "elm,action,clicked", "elm",\r
-                                   _switch_titleobj_visibility);\r
-   elm_widget_sub_object_del(item->obj,item->title_obj);\r
-   edje_object_part_unswallow(item->base,item->title_obj);\r
-   item->title_obj = NULL;\r
-   return title_obj;\r
-}\r
-\r
-/**\r
- * Returns the title object of the pushed content.\r
- *\r
- * @param[in] item The Navigationbar_ex Item\r
- * @return The title object or NULL if none is set\r
- *\r
- * @ingroup Navigationbar_ex\r
- */\r
-EAPI Evas_Object*\r
-elm_navigationbar_ex_item_title_object_get(Elm_Navigationbar_ex_Item* item)\r
-{\r
-   if (!item) return NULL;\r
-   return item->title_obj;\r
-}\r
-\r
-\r
-/**\r
- * Unsets the content of the item, the return object has to be deleted\r
- * by application if not added again in to navigationbar, when the content\r
- * is unset the corresponding item would be deleted, when this content is pushed again\r
- * a new item would be created again.\r
- *\r
- * @param[in] item The Navigationbar_ex Item\r
- * @return The content object or NULL if none is set\r
- *\r
- * @ingroup Navigationbar_ex\r
- */\r
-EAPI Evas_Object *\r
-elm_navigationbar_ex_item_content_unset(Elm_Navigationbar_ex_Item* item)\r
-{\r
- if (!item) return NULL;\r
-   Evas_Object *content = _content_unset(item);\r
-   return content;\r
-}\r
-\r
-/**\r
- * Returns the content of the item.\r
- *\r
- * @param[in] item The Navigationbar_ex Item\r
- * @return The content object or NULL if none is set\r
- *\r
- * @ingroup Navigationbar_ex\r
- */\r
-EAPI Evas_Object *\r
-elm_navigationbar_ex_item_content_get(Elm_Navigationbar_ex_Item* item)\r
-{\r
-   if (!item) return NULL;\r
-   return item->content;\r
-}\r
-\r
-/**\r
- * Set whether the content pushed has to be deleted on pop.\r
- * if false the item is not deleted but only removed from the stack\r
- * the pointer of the content is sent along with hide,finished signal.\r
- *\r
- * @param[in] obj The Navigationbar_ex object.\r
- * @param[in] del_on_pop if set the content is deleted on pop else unset, by default the value is EINA_TRUE.\r
- *\r
- * @ingroup Navigationbar_ex\r
- */\r
-EAPI void\r
-elm_navigationbar_ex_delete_on_pop_set(Evas_Object *obj, Eina_Bool del_on_pop)\r
-{\r
-   ELM_CHECK_WIDTYPE(obj, widtype);\r
-   Widget_Data *wd = elm_widget_data_get(obj);\r
-   if (!wd) return;\r
-   wd->del_on_pop = del_on_pop;\r
-}\r
-\r
-/**\r
- * Sets the style of the navigationbar item.\r
- * @param[in] item The Navigationbar_ex Item\r
- * @param[in] item_style Navigationbar Item style, this can be used when the style of the item has to be dynamically set.\r
- *\r
- * @ingroup Navigationbar_ex\r
- */\r
-EAPI void\r
-elm_navigationbar_ex_item_style_set(Elm_Navigationbar_ex_Item* item, const char* item_style)\r
-{\r
-   if (!item) return;\r
-   if(!item_style) return;\r
-   char buf[1024];\r
-   char buf_fn[1024];\r
-   Eina_List *bl;\r
-   fn_button *btn_det;\r
-   strncpy(buf, "item/", sizeof(buf));\r
-   strncat(buf, item_style, sizeof(buf) - strlen(buf));\r
-   if (!eina_stringshare_replace(&item->item_style, item_style)) return;\r
-   _elm_theme_object_set(item->obj, item->base,  "navigationbar_ex", buf, elm_widget_style_get(item->obj));\r
-   if (item->title)\r
-     edje_object_part_text_set(item->base, "elm.text", item->title);\r
-   if (item->subtitle)\r
-     edje_object_part_text_set(item->base, "elm.text.sub", item->subtitle);\r
-   if (item->fnbtn_list)\r
-     {\r
-        EINA_LIST_FOREACH(item->fnbtn_list, bl, btn_det)\r
-          {\r
-             if (btn_det->btn_id == ELM_NAVIGATIONBAR_EX_BACK_BUTTON)\r
-               {\r
-                  snprintf(buf_fn, sizeof(buf_fn), "navigationbar_backbutton/%s", elm_widget_style_get(item->obj));\r
-                  elm_object_style_set(btn_det->btn, buf_fn);\r
-               }\r
-             else\r
-               {\r
-                  snprintf(buf_fn, sizeof(buf_fn), "navigationbar_functionbutton/%s", elm_widget_style_get(item->obj));\r
-                  elm_object_style_set(btn_det->btn, buf_fn);\r
-               }\r
-          }\r
-     }\r
-}\r
-\r
-/**\r
- * Returns the style of the item.\r
- *\r
- * @param[in] item The Navigationbar_ex Item\r
- * @return The item style.\r
- *\r
- * @ingroup Navigationbar_ex\r
- */\r
-EAPI const char*\r
-elm_navigationbar_ex_item_style_get(Elm_Navigationbar_ex_Item* item)\r
-{\r
-   if (!item) return NULL;\r
-   return item->item_style;\r
-}\r
-\r
-\r
-/**\r
- * Promote an object already in the stack to the top of the stack\r
- *\r
- * This will take the indicated object and promote it to the top of the stack\r
- * as if it had been pushed there. The object must already be inside the\r
- * Navigationbar_ex stack to work.\r
- *\r
- * @param[in] item The Navigationbar_ex item to promote.\r
- * @ingroup Navigationbar_ex\r
- */\r
-EAPI void\r
-elm_navigationbar_ex_item_promote(Elm_Navigationbar_ex_Item* item)\r
-{\r
-   if (!item) return;\r
-   _item_promote(item);\r
-}\r
-\r
-/**\r
- * Pop to the inputted Navigationbar_ex item\r
- * the rest of the items are deleted.\r
- *\r
- * @param[in] item The Navigationbar_ex item\r
- *\r
- * @ingroup Navigationbar_ex\r
- */\r
-EAPI void\r
-elm_navigationbar_ex_to_item_pop(Elm_Navigationbar_ex_Item* item)\r
-{\r
-   if (!item) return;\r
-   Widget_Data *wd = elm_widget_data_get(item->obj);\r
-   Elm_Navigationbar_ex_Item *it = NULL;\r
-   Eina_List *list;\r
-   if (!wd) return;\r
-   if (!wd->stack) return;\r
-   it = eina_list_last(wd->stack)->data;\r
-   it->popme = EINA_TRUE;\r
-   list = eina_list_last(wd->stack);\r
-   if (list)\r
-     {\r
-        while (list)\r
-          {\r
-             it = list->data;\r
-             if (it != item)\r
-               {\r
-                  wd->to_delete = eina_list_append(wd->to_delete, it);\r
-                  wd->stack = eina_list_remove_list(wd->stack, list);\r
-               }\r
-             else\r
-               break;\r
-\r
-             list = list->prev;\r
-          }\r
-     }\r
-   _eval_top(it->obj);\r
-   if (wd->to_delete)\r
-     _process_deletions(wd);\r
-}\r
-\r
-/**\r
- * Pop the object that is on top of the Navigationbar_ex stack\r
- * This pops the object that is on top (visible) in the navigationbar, makes it disappear, then deletes/unsets the object\r
- * based on del_on_pop variable.\r
- * The object that was underneath it on the stack will become visible.\r
- *\r
- * @param[in] obj The Navigationbar_ex object\r
- *\r
- * @ingroup Navigationbar_ex\r
- */\r
-EAPI void\r
-elm_navigationbar_ex_item_pop(Evas_Object *obj)\r
-{\r
-   ELM_CHECK_WIDTYPE(obj, widtype);\r
-   Widget_Data *wd = elm_widget_data_get(obj);\r
-   Eina_List *ll;\r
-   Elm_Navigationbar_ex_Item *it;\r
-   if (!wd) return;\r
-   if (!wd->stack) return;\r
-   it = eina_list_last(wd->stack)->data;\r
-   it->popme = EINA_TRUE;\r
-   ll = eina_list_last(wd->stack);\r
-   if (ll)\r
-     {\r
-        ll = ll->prev;\r
-        if (!ll)\r
-          {\r
-\r
-             Evas_Object *o, *o2;\r
-             const char *onhide;\r
-\r
-             wd->top = it;\r
-             o = wd->top->ct_base;\r
-             o2 = wd->top->base;\r
-\r
-             edje_object_signal_emit(o2, "elm,action,pop", "elm");\r
-             edje_object_signal_emit(o, "elm,action,pop", "elm");\r
-             onhide = edje_object_data_get(o, "onhide");\r
-             if (onhide)\r
-               {\r
-                  if (!strcmp(onhide, "raise"))\r
-                    {\r
-                       evas_object_raise(o2);\r
-                       evas_object_raise(o);\r
-                    }\r
-                  else if (!strcmp(onhide, "lower"))\r
-                    {\r
-                       evas_object_lower(o2);\r
-                       evas_object_lower(o);\r
-                    }\r
-               }\r
-             wd->top = NULL;\r
-          }\r
-        else\r
-          {\r
-             it = ll->data;\r
-             _item_promote(it);\r
-          }\r
-     }\r
-}\r
-\r
-\r
-/**\r
- * Return the item at the bottom of the Navigationbar_ex stack\r
- *\r
- * @param[in] obj The Navigationbar_ex object\r
- * @return The bottom item or NULL if none\r
- *\r
- * @ingroup Navigationbar_ex\r
- */\r
-EAPI Elm_Navigationbar_ex_Item*\r
-elm_navigationbar_ex_item_bottom_get(const Evas_Object *obj)\r
-{\r
-   ELM_CHECK_WIDTYPE(obj, widtype) NULL;\r
-   Widget_Data *wd = elm_widget_data_get(obj);\r
-   Elm_Navigationbar_ex_Item *it;\r
-   if (!wd) return NULL;\r
-   if (!wd->stack) return NULL;\r
-   it = wd->stack->data;\r
-   return it;\r
-}\r
-\r
-/**\r
- * Return the item at the top of the Navigationbar_ex stack\r
- *\r
- * @param[in] obj The Navigationbar_ex object\r
- * @return The top object or NULL if none\r
- *\r
- * @ingroup Navigationbar_ex\r
- */\r
-EAPI Elm_Navigationbar_ex_Item*\r
-elm_navigationbar_ex_item_top_get(const Evas_Object *obj)\r
-{\r
-   ELM_CHECK_WIDTYPE(obj, widtype) NULL;\r
-   Widget_Data *wd = elm_widget_data_get(obj);\r
-   Elm_Navigationbar_ex_Item *it;\r
-   if (!wd) return NULL;\r
-   if (!wd->stack) return NULL;\r
-   it = eina_list_last(wd->stack)->data;\r
-   return it;\r
-}\r
-\r
-/**\r
- * This disables content animation on push/pop.\r
- *\r
- * @param obj The navigationbar_ex object\r
- * @param disable  if EINA_TRUE animation is disabled.\r
- *\r
- * @ingroup Navigationbar_ex\r
- */\r
-EAPI void\r
-elm_navigationbar_ex_animation_disable_set(Evas_Object *obj, Eina_Bool disable)\r
-{\r
-   ELM_CHECK_WIDTYPE(obj, widtype);\r
-   Widget_Data *wd = elm_widget_data_get(obj);\r
-   wd->disable_animation = disable;\r
-}\r
-\r
-/**\r
- * This shows/hides title object area.\r
- *\r
- * @param[in] item The Navigationbar_ex item\r
- * @param[in] visible  if EINA_TRUE title object is shown else its hidden.\r
- * @ingroup Navigationbar_ex\r
- */\r
-EAPI void\r
-elm_navigationbar_ex_title_object_visible_set(Elm_Navigationbar_ex_Item* item, Eina_Bool visible)\r
-{\r
-   if(!item) return;\r
-   if(!item->title_obj) return;\r
-   if(visible)\r
-     {\r
-        edje_object_signal_emit(item->base, "elm,state,show,title", "elm");\r
-        evas_object_smart_callback_call(item->obj, SIG_TITLE_OBJ_VISIBLE_CHANGED, (void *) EINA_TRUE);\r
-     }\r
-   else\r
-     {\r
-        edje_object_signal_emit(item->base, "elm,state,hide,title", "elm");\r
-        evas_object_smart_callback_call(item->obj, SIG_TITLE_OBJ_VISIBLE_CHANGED, (void *) EINA_FALSE);\r
-     }\r
-   item->titleobj_visible = visible;\r
-}\r
-\r
-/**\r
- * This gets the status whether title object is shown/hidden.\r
- *\r
- * @param[in] item The Navigationbar_ex item\r
- * @return The status whether title object is shown/hidden.\r
- * @ingroup Navigationbar_ex\r
- */\r
-Eina_Bool\r
-elm_navigationbar_ex_title_object_visible_get(Elm_Navigationbar_ex_Item* item)\r
-{\r
-   if (!item) return EINA_FALSE;\r
-   return item->titleobj_visible;\r
-}\r
-\r
-\r
-\r
+#include <Elementary.h>
+#include "elm_priv.h"
+
+/**
+ * @defgroup Navigationbar_ex Navigationbar_ex
+ * @ingroup Elementary
+ *
+ * The NavigationBar_ex is an object that allows flipping (with animation) between 1 or
+ * more pages of objects, much like a stack of windows within the window as well display
+ * the title area for the page consisting of buttons, title, titleobjects etc:-.
+ *
+ * Objects can be pushed or popped from the stack or deleted as normal.
+ * Pushes and pops will animate and a pop will delete the object once the
+ * animation is finished if delete_on_pop is set else the content is unset and the
+ * content pointer is sent as event information in the hide,finished signal.
+ * Any object in the Navigationbar_ex can be promoted to the top
+ * (from its current stacking position) as well. Objects are pushed to the
+ * top with elm_navigationbar_ex_item_push() and when the top item is no longer
+ * wanted, simply pop it with elm_navigationbar_ex_item_pop() and it will also be
+ * deleted/unset depending on delete_on_pop variable.
+ * Any object you wish to promote to the top that is already in the
+ * navigationbar, simply use elm_navigationbar_ex_item_promote(). If an object is no longer
+ * needed and is not the top item, just delete it as normal. You can query
+ * which objects are the top and bottom with elm_navigationbar_ex_item_bottom_get()
+ * and elm_navigationbar_ex_item_top_get().
+ */
+
+typedef struct _Widget_Data Widget_Data;
+typedef struct _function_button fn_button;
+
+struct _Widget_Data
+{
+   Eina_List *stack, *to_delete;
+   Elm_Navigationbar_ex_Item *top, *oldtop;
+   Evas_Object *rect, *clip;
+   Eina_Bool del_on_pop : 1;
+   Eina_Bool disable_animation: 1;
+};
+
+struct _Elm_Navigationbar_ex_Item
+{
+   Evas_Object *obj, *base, *content;
+   Evas_Object *ct_base;
+   Evas_Coord minw, minh;
+   const char *title;
+   const char *subtitle;
+   const char *item_style;
+   Eina_List *fnbtn_list;
+   Evas_Object *title_obj;
+   Evas_Object *icon;
+   Eina_Bool popme : 1;
+   Eina_Bool titleobj_visible:1;
+};
+
+struct _function_button
+{
+   Evas_Object *btn;
+   int btn_id;
+};
+
+static const char *widtype = NULL;
+static void _del_hook(Evas_Object *obj);
+static void _theme_hook(Evas_Object *obj);
+static void _sizing_eval(Evas_Object *obj);
+static void _changed_size_hints(void *data, Evas *e, Evas_Object *obj, void *event_info);
+static void _sub_del(void *data, Evas_Object *obj, void *event_info);
+
+static const char SIG_HIDE_FINISHED[] = "hide,finished";
+static const char SIG_TITLE_OBJ_VISIBLE_CHANGED[] = "titleobj,visible,changed";
+
+static const Evas_Smart_Cb_Description _signals[] = {
+       {SIG_HIDE_FINISHED, ""},
+       {SIG_TITLE_OBJ_VISIBLE_CHANGED, ""},
+       {NULL, NULL}
+};
+
+static void
+_del_hook(Evas_Object *obj)
+{
+   Widget_Data *wd = elm_widget_data_get(obj);
+   if (!wd) return;
+   free(wd);
+}
+
+static Evas_Object*
+_content_unset(Elm_Navigationbar_ex_Item* item)
+{
+   if (!item) return NULL;
+   Evas_Object *content = NULL;
+   if (!item->content) return NULL;
+   content = item->content;
+   elm_widget_sub_object_del(item->obj,item->content);
+   edje_object_part_unswallow(item->ct_base,item->content);
+   item->content = NULL;
+   evas_object_hide(content);
+   return content;
+}
+
+static void
+_theme_hook(Evas_Object *obj)
+{
+   Widget_Data *wd = elm_widget_data_get(obj);
+   Eina_List *l;
+   char buf_fn[1024];
+   char buf[1024];
+   Elm_Navigationbar_ex_Item *it;
+   if (!wd) return;
+   EINA_LIST_FOREACH(wd->stack, l, it)
+     {
+        Eina_List *bl;
+        fn_button *btn_det;
+        edje_object_scale_set(it->base, elm_widget_scale_get(obj) *
+                              _elm_config->scale);
+        strncpy(buf, "item/", sizeof(buf));
+        strncat(buf, it->item_style, sizeof(buf) - strlen(buf));
+        _elm_theme_object_set(obj, it->base,  "navigationbar_ex", buf, elm_widget_style_get(obj));
+        _elm_theme_object_set(obj, it->ct_base,  "navigationbar_ex", "content", elm_widget_style_get(obj));
+        if (it->title)
+          edje_object_part_text_set(it->base, "elm.text", it->title);
+        if (it->subtitle)
+          edje_object_part_text_set(it->base, "elm.text.sub", it->subtitle);
+        if (it->title_obj)
+          {
+             edje_object_part_swallow(it->base, "elm.swallow.title", it->title_obj);
+             if (it->titleobj_visible)
+               edje_object_signal_emit(it->base, "elm,state,show,title", "elm");
+             else
+               edje_object_signal_emit(it->base, "elm,state,hide,title", "elm");
+          }
+        if (it->icon)
+          edje_object_part_swallow(it->base, "elm.swallow.icon", it->icon);
+        EINA_LIST_FOREACH(it->fnbtn_list, bl, btn_det)
+          {
+             if (btn_det->btn_id == ELM_NAVIGATIONBAR_EX_BACK_BUTTON)
+               {
+                  snprintf(buf_fn, sizeof(buf_fn), "navigationbar_backbutton/%s", elm_widget_style_get(obj));
+                  snprintf(buf, sizeof(buf), "elm.swallow.back");
+               }
+             else
+               {
+                  snprintf(buf_fn, sizeof(buf_fn), "navigationbar_functionbutton/%s", elm_widget_style_get(obj));
+                  snprintf(buf, sizeof(buf), "elm.swallow.btn%d", btn_det->btn_id);
+               }
+             elm_object_style_set(btn_det->btn, buf_fn);
+             edje_object_part_swallow(it->base, buf, btn_det->btn);
+          }
+     }
+   _sizing_eval(obj);
+}
+
+static void
+_sizing_eval(Evas_Object *obj)
+{
+   Widget_Data *wd = elm_widget_data_get(obj);
+   Evas_Coord minw = -1, minh = -1;
+   Eina_List *l;
+   Elm_Navigationbar_ex_Item *it;
+   if (!wd) return;
+   EINA_LIST_FOREACH(wd->stack, l, it)
+     {
+        if (it->minw > minw) minw = it->minw;
+        if (it->minh > minh) minh = it->minh;
+     }
+   evas_object_size_hint_min_set(obj, minw, minh);
+   evas_object_size_hint_max_set(obj, -1, -1);
+}
+
+static void
+_changed_size_hints(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
+{
+   Elm_Navigationbar_ex_Item *it = data;
+   Evas_Coord minw = -1, minh = -1;
+   evas_object_size_hint_min_get(it->content, &minw, &minh);
+   // FIXME: why is this needed? how does edje get this unswallowed or
+   // lose its callbacks to edje
+   edje_object_part_swallow(it->ct_base, "elm.swallow.content", it->content);
+   edje_object_size_min_calc(it->base, &it->minw, &it->minh);
+   _sizing_eval(it->obj);
+}
+
+static void
+_eval_top(Evas_Object *obj)
+{
+   Widget_Data *wd = elm_widget_data_get(obj);
+   Eina_Bool animate = EINA_TRUE;
+   Elm_Navigationbar_ex_Item *ittop = NULL;
+   if (!wd) return;
+   if (!wd->stack) return;
+   ittop = eina_list_last(wd->stack)->data;
+   if (ittop != wd->top)
+     {
+        Evas_Object *o1, *o2;
+        const char *onshow, *onhide;
+
+        if (wd->top)
+          {
+             o1 = wd->top->ct_base;
+             o2 = wd->top->base;/*make use of the signals sent for animation*/
+
+             /*issue to fix, hide signal does not come for t_base, increasing time helps
+              in getting correct events in pop*/
+             if (wd->disable_animation)
+               {
+                  edje_object_signal_emit(o2, "elm,action,hide,noanimate", "elm");
+                  edje_object_signal_emit(o1, "elm,action,hide,noanimate", "elm");
+               }
+             else if (wd->top->popme)
+               {
+                  edje_object_signal_emit(o2, "elm,action,pop", "elm");
+                  edje_object_signal_emit(o1, "elm,action,pop", "elm");
+               }
+             else
+               {
+                  edje_object_signal_emit(o2, "elm,action,hide", "elm");
+                  edje_object_signal_emit(o1, "elm,action,hide", "elm");
+               }
+             onhide = edje_object_data_get(o1, "onhide");
+             if (onhide)
+               {
+                  if (!strcmp(onhide, "raise")) {
+                     evas_object_raise(o2);
+                     evas_object_raise(o1);
+                  }
+                  else if (!strcmp(onhide, "lower")) {
+                       evas_object_lower(o2);
+                       evas_object_lower(o1);
+                  }
+               }
+          }
+        else
+          {
+             animate = EINA_FALSE;
+          }
+        wd->oldtop = wd->top;
+        wd->top = ittop;
+        o1 = wd->top->ct_base;
+        o2 = wd->top->base;
+        evas_object_show(o2);
+        evas_object_show(o1);
+
+        if ((!animate)||(wd->disable_animation))
+          {
+             edje_object_signal_emit(o2, "elm,action,show,noanimate", "elm");
+             edje_object_signal_emit(o1, "elm,action,show,noanimate", "elm");
+          }
+        else if (wd->oldtop)
+          {
+             if (elm_object_focus_get(wd->oldtop->content))
+               elm_widget_focused_object_clear(wd->oldtop->content);
+             if (wd->oldtop->popme)
+               {
+                  edje_object_signal_emit(o2, "elm,action,show", "elm");
+                  edje_object_signal_emit(o1, "elm,action,show", "elm");
+               }
+             else
+               {
+                  edje_object_signal_emit(o2, "elm,action,push", "elm");
+                  edje_object_signal_emit(o1, "elm,action,push", "elm");
+               }
+          }
+        else
+          {
+             edje_object_signal_emit(o2, "elm,action,push", "elm");
+             edje_object_signal_emit(o1, "elm,action,push", "elm");
+          }
+        onshow = edje_object_data_get(o1, "onshow");
+        if (onshow)
+          {
+             if (!strcmp(onshow, "raise")) {
+                evas_object_raise(o2);
+                evas_object_raise(o1);
+             }
+             else if (!strcmp(onshow, "lower")) {
+                evas_object_lower(o2);
+                evas_object_lower(o1);
+             }
+          }
+     }
+}
+
+static void
+_move(void *data, Evas *e __UNUSED__, Evas_Object *obj, void *event_info __UNUSED__)
+{
+   Widget_Data *wd = elm_widget_data_get(data);
+   Evas_Coord x, y;
+   Eina_List *l;
+   Elm_Navigationbar_ex_Item *it;
+   if (!wd) return;
+   evas_object_geometry_get(obj, &x, &y, NULL, NULL);
+   EINA_LIST_FOREACH(wd->stack, l, it)
+     evas_object_move(it->base, x, y);
+}
+
+static void
+_sub_del(void *data, Evas_Object *obj __UNUSED__, void *event_info)
+{
+   Widget_Data *wd = elm_widget_data_get(data);
+   Evas_Object *sub = event_info;
+   Eina_List *l,*list;
+   fn_button *btn_data;
+   Elm_Navigationbar_ex_Item *it;
+   if (!wd) return;
+   EINA_LIST_FOREACH(wd->stack, l, it)
+     {
+        if (it->content == sub)
+          {
+             wd->stack = eina_list_remove_list(wd->stack, l);
+             evas_object_event_callback_del_full
+               (sub, EVAS_CALLBACK_CHANGED_SIZE_HINTS, _changed_size_hints, it);
+             if (it->title) eina_stringshare_del(it->title);
+             if (it->subtitle) eina_stringshare_del(it->subtitle);
+             EINA_LIST_FOREACH(it->fnbtn_list, list, btn_data)
+               {
+                  evas_object_del(btn_data->btn);
+                  free(btn_data);
+                  btn_data = NULL;
+               }
+             if (it->item_style) eina_stringshare_del(it->item_style);
+             if (it->title_obj) evas_object_del(it->title_obj);
+             if (it->icon) evas_object_del(it->icon);
+             evas_object_del(it->ct_base);
+             evas_object_del(it->base);
+             _eval_top(it->obj);
+             free(it);
+             return;
+          }
+     }
+}
+
+static void
+_resize(void *data, Evas *e __UNUSED__, Evas_Object *obj, void *event_info __UNUSED__)
+{
+   Widget_Data *wd = elm_widget_data_get(data);
+   Evas_Coord w, h;
+   Eina_List *l;
+   Elm_Navigationbar_ex_Item *it;
+   if (!wd) return;
+   evas_object_geometry_get(obj, NULL, NULL, &w, &h);
+   EINA_LIST_FOREACH(wd->stack, l, it) evas_object_resize(it->base, w, h);
+}
+
+static void
+_signal_hide_finished(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
+{
+   Elm_Navigationbar_ex_Item *it = data;
+   Evas_Object *obj2 = it->obj;
+   Widget_Data *wd = elm_widget_data_get(it->obj);
+   evas_object_hide(it->ct_base);
+   evas_object_hide(it->base);
+   edje_object_signal_emit(it->base, "elm,action,reset", "elm");
+   edje_object_signal_emit(it->ct_base, "elm,action,reset", "elm");
+   evas_object_smart_callback_call(obj2, SIG_HIDE_FINISHED, it->content);
+   edje_object_message_signal_process(it->base);
+   edje_object_message_signal_process(it->ct_base);
+   if (it->popme)
+     {
+        if (wd->del_on_pop)
+          {
+             evas_object_del(it->content);
+          }
+        else
+          {
+             _content_unset(it);
+          }
+     }
+   _sizing_eval(obj2);
+}
+
+static void
+_item_promote(Elm_Navigationbar_ex_Item* item)
+{
+   if (!item) return;
+   Widget_Data *wd = elm_widget_data_get(item->obj);
+   Eina_List *l;
+   Elm_Navigationbar_ex_Item *it;
+   if (!wd) return;
+   EINA_LIST_FOREACH(wd->stack, l, it)
+     {
+        if (it == item)
+          {
+             wd->stack = eina_list_remove_list(wd->stack, l);
+             wd->stack = eina_list_append(wd->stack, it);
+             _eval_top(it->obj);
+             return;
+          }
+     }
+}
+
+static void
+_process_deletions(Widget_Data *wd)
+{
+   if (!wd) return;
+   Elm_Navigationbar_ex_Item *it;
+   fn_button *btn_data;
+   Eina_List *list;
+   EINA_LIST_FREE(wd->to_delete, it)
+     {
+        evas_object_event_callback_del_full
+          (it->content, EVAS_CALLBACK_CHANGED_SIZE_HINTS, _changed_size_hints, it);
+        if (it->title) eina_stringshare_del(it->title);
+        if (it->subtitle) eina_stringshare_del(it->subtitle);
+        if (it->item_style) eina_stringshare_del(it->item_style);
+        EINA_LIST_FOREACH(it->fnbtn_list, list, btn_data)
+          {
+             evas_object_del(btn_data->btn);
+             free(btn_data);
+             btn_data = NULL;
+          }
+        if (it->title_obj) evas_object_del(it->title_obj);
+        if (it->content)  evas_object_del(it->content);
+        if (it->icon) evas_object_del(it->icon);
+        evas_object_del(it->ct_base);
+        evas_object_del(it->base);
+        _eval_top(it->obj);
+        free(it);
+        it = NULL;
+     }
+}
+
+static void
+_switch_titleobj_visibility(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
+{
+   Elm_Navigationbar_ex_Item *item = (Elm_Navigationbar_ex_Item *)data;
+   if(!item) return;
+   if(!item->title_obj) return;
+   if(!item->titleobj_visible)
+     {
+        edje_object_signal_emit(item->base, "elm,state,show,title", "elm");
+        evas_object_smart_callback_call(item->obj, SIG_TITLE_OBJ_VISIBLE_CHANGED, (void *) EINA_TRUE);
+        item->titleobj_visible = EINA_TRUE;
+     }
+   else
+     {
+        edje_object_signal_emit(item->base, "elm,state,hide,title", "elm");
+        evas_object_smart_callback_call(item->obj, SIG_TITLE_OBJ_VISIBLE_CHANGED, (void *) EINA_FALSE);
+        item->titleobj_visible = EINA_FALSE;
+     }
+}
+
+static void
+_emit_hook(Evas_Object *obj, const char *emission, const char *source)
+{
+   ELM_CHECK_WIDTYPE(obj, widtype);
+
+   Widget_Data *wd;
+   Eina_List *last;
+   Elm_Navigationbar_ex_Item *it;
+
+   wd = elm_widget_data_get(obj);
+   if (!wd) return;
+
+   last = eina_list_last(wd->stack);
+   if (!last) return;
+
+   it = eina_list_data_get(last);
+   if ((!it) || (!it->title_obj)) return;
+
+   if (!strcmp(source, "elm"))
+     {
+        if (!strcmp(emission, "elm,state,hide,noanimate,title"))
+          it->titleobj_visible = EINA_FALSE;
+        else if (!strcmp(emission, "elm,state,show,noanimate,title"))
+          it->titleobj_visible = EINA_TRUE;
+     }
+   /*sending signal to top most item of the stack*/
+   edje_object_signal_emit(it->base, emission, source);
+}
+
+/**
+ * Add a new navigationbar_ex to the parent
+ *
+ * @param[in] parent The parent object
+ * @return The new object or NULL if it cannot be created
+ *
+ * @ingroup Navigationbar_ex
+ */
+EAPI Evas_Object *
+elm_navigationbar_ex_add(Evas_Object *parent)
+{
+   Evas_Object *obj;
+   Evas *e;
+   Widget_Data *wd;
+
+   EINA_SAFETY_ON_NULL_RETURN_VAL(parent, NULL);
+
+   wd = ELM_NEW(Widget_Data);
+   e = evas_object_evas_get(parent);
+   obj = elm_widget_add(e);
+   ELM_SET_WIDTYPE(widtype, "navigationbar_ex");
+   elm_widget_type_set(obj, "navigationbar_ex");
+   elm_widget_sub_object_add(parent, obj);
+   elm_widget_data_set(obj, wd);
+   elm_widget_del_hook_set(obj, _del_hook);
+   elm_widget_theme_hook_set(obj, _theme_hook);
+   elm_widget_can_focus_set(obj, EINA_FALSE);
+   elm_widget_signal_emit_hook_set(obj, _emit_hook);
+   wd->clip = evas_object_rectangle_add(e);
+   elm_widget_resize_object_set(obj, wd->clip);
+   elm_widget_sub_object_add(obj, wd->clip);
+
+   wd->rect = evas_object_rectangle_add(e);
+   elm_widget_sub_object_add(obj, wd->rect);
+   evas_object_color_set(wd->rect, 255, 255, 255, 0);
+   evas_object_clip_set(wd->rect, wd->clip);
+
+   evas_object_event_callback_add(obj, EVAS_CALLBACK_MOVE, _move, obj);
+   evas_object_event_callback_add(obj, EVAS_CALLBACK_RESIZE, _resize, obj);
+
+   evas_object_smart_callback_add(obj, "sub-object-del", _sub_del, obj);
+   wd->del_on_pop = EINA_TRUE;
+   _sizing_eval(obj);
+   return obj;
+}
+
+/**
+ * Push an object along with its style to the top of the Navigationbar_ex stack (and show it)
+ *
+ * The object pushed becomes a child of the Navigationbar_ex and will be controlled
+ * it will be deleted when the Navigationbar_ex is deleted or when content is popped(depending on del_
+ * on_pop variable).
+ *
+ * @param[in] obj The Navigationbar_ex object
+ * @param[in] content The object to push
+ * @param[in] item_style The style of the page
+ * @return The Navigationbar_ex Item or NULL
+ * @ingroup Navigationbar_ex
+ */
+EAPI Elm_Navigationbar_ex_Item*
+elm_navigationbar_ex_item_push(Evas_Object *obj, Evas_Object *content, const char* item_style)
+{
+   ELM_CHECK_WIDTYPE(obj, widtype)NULL;
+   Widget_Data *wd = elm_widget_data_get(obj);
+   Elm_Navigationbar_ex_Item *it;
+   Evas_Coord x, y, w, h;
+   char buf[1024];
+   if (!wd) return NULL;
+   if (!content) return NULL;
+   if (!item_style) return NULL;
+   it = ELM_NEW(Elm_Navigationbar_ex_Item);
+   if (!it) return NULL;
+   it->obj = obj;
+   it->content = content;
+   it->base = edje_object_add(evas_object_evas_get(obj));
+   it->ct_base = edje_object_add(evas_object_evas_get(obj));
+   it->titleobj_visible = EINA_TRUE;
+
+   evas_object_smart_member_add(it->base, obj);
+   evas_object_smart_member_add(it->ct_base, obj);
+
+   evas_object_geometry_get(obj, &x, &y, &w, &h);
+   evas_object_move(it->base, x, y);
+   evas_object_resize(it->base, w, h);
+   evas_object_clip_set(it->base, wd->clip);
+
+   elm_widget_sub_object_add(obj, it->base);
+   elm_widget_sub_object_add(obj, it->ct_base);
+
+   elm_widget_sub_object_add(obj, it->content);
+
+   _elm_theme_object_set(obj, it->ct_base,  "navigationbar_ex", "content", elm_widget_style_get(obj));
+
+   strncpy(buf, "item/", sizeof(buf));
+   strncat(buf, item_style, sizeof(buf) - strlen(buf));
+   eina_stringshare_replace(&it->item_style, item_style);
+   _elm_theme_object_set(obj, it->base,  "navigationbar_ex", buf, elm_widget_style_get(obj));
+
+
+   edje_object_part_swallow(it->base, "elm.swallow.content", it->ct_base);
+
+   edje_object_signal_callback_add(it->ct_base, "elm,action,hide,finished", "",
+                                   _signal_hide_finished, it);
+   evas_object_event_callback_add(it->content,
+                                  EVAS_CALLBACK_CHANGED_SIZE_HINTS,
+                                  _changed_size_hints, it);
+   edje_object_part_swallow(it->ct_base, "elm.swallow.content", it->content);
+   edje_object_size_min_calc(it->base, &it->minw, &it->minh);
+   evas_object_data_set(it->base, "_elm_leaveme", obj);
+   evas_object_show(it->content);
+   wd->stack = eina_list_append(wd->stack, it);
+   _eval_top(obj);
+   _sizing_eval(obj);
+   return it;
+}
+
+/**
+ * Set the title string for the pushed Item.
+ * @param[in] item The Navigationbar_ex Item
+ * @param[in] title The title string
+ *
+ * @ingroup Navigationbar_ex
+ */
+EAPI void
+elm_navigationbar_ex_item_title_label_set( Elm_Navigationbar_ex_Item* item, const char *title)
+{
+   if (!item) return;
+   if (!eina_stringshare_replace(&item->title, title)) return;
+   if (item->base)
+     {
+        edje_object_part_text_set(item->base, "elm.text", item->title);
+     }
+}
+
+/**
+ * Return the title string of the pushed item.
+ *
+ * @param[in]  item The Navigationbar_ex Item
+ * @return The title string or NULL if none
+ *
+ * @ingroup Navigationbar_ex
+ */
+EAPI const char *
+elm_navigationbar_ex_item_title_label_get(Elm_Navigationbar_ex_Item* item)
+{
+   if(!item) return NULL;
+   return item->title;
+}
+
+/**
+ * Set the sub title string for the pushed content
+ *
+ * @param[in] item The Navigationbar_ex Item
+ * @param[in] subtitle The subtitle string
+ *
+ * @ingroup Navigationbar_ex
+ */
+EAPI void
+elm_navigationbar_ex_item_subtitle_label_set( Elm_Navigationbar_ex_Item* item, const char *subtitle)
+{
+   if (!item) return;
+   if (!eina_stringshare_replace(&item->subtitle, subtitle)) return;
+   if (item->base)
+     edje_object_part_text_set(item->base, "elm.text.sub", item->subtitle);
+}
+
+/**
+ * Return the subtitle string of the pushed content
+ *
+ * @param[in] item The Navigationbar_ex Item
+ * @return The subtitle string or NULL if none
+ *
+ * @ingroup Navigationbar_ex
+ */
+EAPI const char *
+elm_navigationbar_ex_item_subtitle_label_get(Elm_Navigationbar_ex_Item* item)
+{
+   if (!item) return NULL;
+   return item->subtitle;
+}
+
+/**
+ * Set's the icon object of the pushed content
+ *
+ * @param[in] item The Navigationbar_ex Item
+ * @param[in] The icon object or NULL if none
+ *
+ *@ingroup Navigationbar_ex
+ */
+EAPI void
+elm_navigationbar_ex_item_icon_set(Elm_Navigationbar_ex_Item* item, Evas_Object *icon)
+{
+   if (!item) return;
+   if (item->icon == icon) return;
+   if (item->icon) evas_object_del(item->icon);
+   item->icon = icon;
+   if(icon)
+     {
+        edje_object_part_swallow(item->base, "elm.swallow.icon", icon);
+        elm_widget_sub_object_add(item->obj, icon);
+        edje_object_signal_emit(item->base, "elm,state,icon,visible", "elm");
+        edje_object_message_signal_process(item->base);
+     }
+   else
+     edje_object_signal_emit(item->base, "elm,state,icon,hidden", "elm");
+}
+
+/**
+ * Return the icon object of the pushed content
+ *
+ * @param[in] item The Navigationbar_ex Item
+ * @return The icon object or NULL if none
+ *
+ * @ingroup Navigationbar_ex
+ */
+EAPI Evas_Object *
+elm_navigationbar_ex_item_icon_get(Elm_Navigationbar_ex_Item* item)
+{
+   if (!item) return NULL;
+   return item->icon;
+}
+
+
+/**
+ * Set the button object of the pushed content
+ *
+ * @param[in] item The Navigationbar_ex Item
+ * @param[in] btn_label The button label
+ * @param[in] icon The button icon
+ * @param[in] button_type Indicates the position[use macros of type Elm_Navi_ex_Button_Type
+ * if more function buttons are required you can use values ELM_NAVIGATIONBAR_EX_MAX and more]
+ * @param[in] func Callback function called when button is clicked.
+ * @param[in] data Callback data that would be sent when button is clicked.
+ * @ingroup Navigationbar_ex
+ */
+EAPI void
+elm_navigationbar_ex_item_title_button_set(Elm_Navigationbar_ex_Item* item, char *btn_label, Evas_Object *icon, int button_type, Evas_Smart_Cb func, const void *data)
+{
+   if (!item) return;
+   Eina_List *bl;
+   Evas_Object *btn;
+   char buf[1024],theme[1024];
+   fn_button *btn_det = NULL;
+   EINA_LIST_FOREACH(item->fnbtn_list, bl, btn_det)
+     {
+        if (btn_det->btn_id == button_type)
+          {
+             evas_object_del(btn_det->btn);
+             free(btn_det);
+             btn_det = NULL;
+             item->fnbtn_list = eina_list_remove_list(item->fnbtn_list, bl);
+          }
+     }
+   btn = elm_button_add(item->obj);
+   btn_det = ELM_NEW(btn_det);
+   if (!btn_det) return;
+   if (button_type == ELM_NAVIGATIONBAR_EX_BACK_BUTTON)
+     {
+        snprintf(theme, sizeof(theme), "navigationbar_backbutton/%s", elm_widget_style_get(item->obj));
+        elm_object_style_set(btn, theme);
+        snprintf(buf, sizeof(buf), "elm.swallow.back");
+     }
+   else
+     {
+        snprintf(theme, sizeof(theme), "navigationbar_functionbutton/%s", elm_widget_style_get(item->obj));
+        elm_object_style_set(btn, theme);
+        snprintf(buf, sizeof(buf), "elm.swallow.btn%d", button_type);
+     }
+   if (btn_label)
+     elm_object_text_set(btn, btn_label);
+   if (icon)
+     elm_button_icon_set(btn, icon);
+   elm_object_focus_allow_set(btn, EINA_FALSE);
+   evas_object_smart_callback_add(btn, "clicked", func, data);
+   edje_object_part_swallow(item->base, buf, btn);
+   elm_widget_sub_object_add(item->obj, btn);
+   btn_det->btn = btn;
+   btn_det->btn_id = button_type;
+   item->fnbtn_list = eina_list_append(item->fnbtn_list, btn_det);
+}
+
+/**
+ * Return the button object of the pushed content
+ *
+ * @param[in] item The Navigationbar_ex Item
+ * @param[in] button_type Indicates the position
+ * @return The button object or NULL if none
+ *
+ * @ingroup Navigationbar_ex
+ */
+EAPI Evas_Object *
+elm_navigationbar_ex_item_title_button_get(Elm_Navigationbar_ex_Item* item, int button_type)
+{
+   if (!item) return NULL;
+   fn_button *btn_det;
+   Eina_List *bl;
+   EINA_LIST_FOREACH(item->fnbtn_list, bl, btn_det)
+     {
+        if (btn_det->btn_id == button_type)
+          return btn_det->btn;
+     }
+   return NULL;
+}
+
+/**
+ * Unset the button object of the pushed content
+ *
+ * @param[in] item The Navigationbar_ex Item
+ * @param[in] button_type Indicates the position
+ * @return The button object or NULL if none
+ *
+ * @ingroup Navigationbar_ex
+ */
+EAPI Evas_Object *
+elm_navigationbar_ex_item_title_button_unset(Elm_Navigationbar_ex_Item* item, int button_type)
+{
+   if (!item) return NULL;
+   fn_button *btn_det;
+   Eina_List *bl;
+   Evas_Object *btn_ret;
+   EINA_LIST_FOREACH(item->fnbtn_list, bl, btn_det)
+     {
+        if (btn_det->btn_id == button_type)
+          {
+             btn_ret = btn_det->btn;
+             elm_widget_sub_object_del(item->obj,btn_det->btn);
+             edje_object_part_unswallow(item->base,btn_det->btn);
+             item->fnbtn_list = eina_list_remove_list(item->fnbtn_list, bl);
+             btn_det->btn = NULL;
+             return btn_ret;
+          }
+     }
+   return NULL;
+}
+
+/**
+ * Sets a title object for the Item
+ * @param[in] item The Navigationbar_ex Item
+ * @param[in] title_obj Title object (normally segment_control/searchbar)
+ *
+ * @ingroup Navigationbar_ex
+ */
+EAPI void
+elm_navigationbar_ex_item_title_object_set(Elm_Navigationbar_ex_Item* item, Evas_Object *title_obj)
+{
+   if (!item) return;
+   if (item->title_obj) evas_object_del(item->title_obj);
+   item->title_obj = title_obj;
+   if (title_obj)
+     {
+        elm_widget_sub_object_add(item->obj,title_obj);
+        edje_object_part_swallow(item->base, "elm.swallow.title", title_obj);
+        edje_object_signal_callback_add(item->base, "elm,action,clicked", "elm",
+                                        _switch_titleobj_visibility, item);
+     }
+   _sizing_eval(item->obj);
+}
+
+/**
+ * Hides the title area of the item.
+ * @param[in] item The Navigationbar_ex Item
+ * @param[in] hidden if EINA_TRUE the title area is hidden else its shown.
+ *
+ * @ingroup Navigationbar_ex
+ */
+
+EAPI void
+elm_navigationbar_ex_item_title_hidden_set(Elm_Navigationbar_ex_Item* item, Eina_Bool hidden)
+{
+   if (!item) return;
+   if (hidden) edje_object_signal_emit(item->base, "elm,state,item,moveup", "elm");
+   else edje_object_signal_emit(item->base, "elm,state,item,movedown", "elm");
+   _sizing_eval(item->obj);
+}
+
+/**
+ * Unsets a title object for the item, the return object has to be deleted
+ * by application if not added again in to navigationbar.
+ *
+ * @param[in] item The Navigationbar_ex Item
+ * @return The title object or NULL if none is set
+ *
+ * @ingroup Navigationbar_ex
+ */
+EAPI Evas_Object*
+elm_navigationbar_ex_item_title_object_unset(Elm_Navigationbar_ex_Item* item)
+{
+   if (!item) return NULL;
+   Evas_Object *title_obj=NULL;
+   if (!item->title_obj) return NULL;
+   title_obj = item->title_obj;
+   edje_object_signal_callback_del(item->base, "elm,action,clicked", "elm",
+                                   _switch_titleobj_visibility);
+   elm_widget_sub_object_del(item->obj,item->title_obj);
+   edje_object_part_unswallow(item->base,item->title_obj);
+   item->title_obj = NULL;
+   return title_obj;
+}
+
+/**
+ * Returns the title object of the pushed content.
+ *
+ * @param[in] item The Navigationbar_ex Item
+ * @return The title object or NULL if none is set
+ *
+ * @ingroup Navigationbar_ex
+ */
+EAPI Evas_Object*
+elm_navigationbar_ex_item_title_object_get(Elm_Navigationbar_ex_Item* item)
+{
+   if (!item) return NULL;
+   return item->title_obj;
+}
+
+
+/**
+ * Unsets the content of the item, the return object has to be deleted
+ * by application if not added again in to navigationbar, when the content
+ * is unset the corresponding item would be deleted, when this content is pushed again
+ * a new item would be created again.
+ *
+ * @param[in] item The Navigationbar_ex Item
+ * @return The content object or NULL if none is set
+ *
+ * @ingroup Navigationbar_ex
+ */
+EAPI Evas_Object *
+elm_navigationbar_ex_item_content_unset(Elm_Navigationbar_ex_Item* item)
+{
+ if (!item) return NULL;
+   Evas_Object *content = _content_unset(item);
+   return content;
+}
+
+/**
+ * Returns the content of the item.
+ *
+ * @param[in] item The Navigationbar_ex Item
+ * @return The content object or NULL if none is set
+ *
+ * @ingroup Navigationbar_ex
+ */
+EAPI Evas_Object *
+elm_navigationbar_ex_item_content_get(Elm_Navigationbar_ex_Item* item)
+{
+   if (!item) return NULL;
+   return item->content;
+}
+
+/**
+ * Set whether the content pushed has to be deleted on pop.
+ * if false the item is not deleted but only removed from the stack
+ * the pointer of the content is sent along with hide,finished signal.
+ *
+ * @param[in] obj The Navigationbar_ex object.
+ * @param[in] del_on_pop if set the content is deleted on pop else unset, by default the value is EINA_TRUE.
+ *
+ * @ingroup Navigationbar_ex
+ */
+EAPI void
+elm_navigationbar_ex_delete_on_pop_set(Evas_Object *obj, Eina_Bool del_on_pop)
+{
+   ELM_CHECK_WIDTYPE(obj, widtype);
+   Widget_Data *wd = elm_widget_data_get(obj);
+   if (!wd) return;
+   wd->del_on_pop = del_on_pop;
+}
+
+/**
+ * Sets the style of the navigationbar item.
+ * @param[in] item The Navigationbar_ex Item
+ * @param[in] item_style Navigationbar Item style, this can be used when the style of the item has to be dynamically set.
+ *
+ * @ingroup Navigationbar_ex
+ */
+EAPI void
+elm_navigationbar_ex_item_style_set(Elm_Navigationbar_ex_Item* item, const char* item_style)
+{
+   if (!item) return;
+   if(!item_style) return;
+   char buf[1024];
+   char buf_fn[1024];
+   Eina_List *bl;
+   fn_button *btn_det;
+   strncpy(buf, "item/", sizeof(buf));
+   strncat(buf, item_style, sizeof(buf) - strlen(buf));
+   if (!eina_stringshare_replace(&item->item_style, item_style)) return;
+   _elm_theme_object_set(item->obj, item->base,  "navigationbar_ex", buf, elm_widget_style_get(item->obj));
+   if (item->title)
+     edje_object_part_text_set(item->base, "elm.text", item->title);
+   if (item->subtitle)
+     edje_object_part_text_set(item->base, "elm.text.sub", item->subtitle);
+   if (item->fnbtn_list)
+     {
+        EINA_LIST_FOREACH(item->fnbtn_list, bl, btn_det)
+          {
+             if (btn_det->btn_id == ELM_NAVIGATIONBAR_EX_BACK_BUTTON)
+               {
+                  snprintf(buf_fn, sizeof(buf_fn), "navigationbar_backbutton/%s", elm_widget_style_get(item->obj));
+                  elm_object_style_set(btn_det->btn, buf_fn);
+               }
+             else
+               {
+                  snprintf(buf_fn, sizeof(buf_fn), "navigationbar_functionbutton/%s", elm_widget_style_get(item->obj));
+                  elm_object_style_set(btn_det->btn, buf_fn);
+               }
+          }
+     }
+}
+
+/**
+ * Returns the style of the item.
+ *
+ * @param[in] item The Navigationbar_ex Item
+ * @return The item style.
+ *
+ * @ingroup Navigationbar_ex
+ */
+EAPI const char*
+elm_navigationbar_ex_item_style_get(Elm_Navigationbar_ex_Item* item)
+{
+   if (!item) return NULL;
+   return item->item_style;
+}
+
+
+/**
+ * Promote an object already in the stack to the top of the stack
+ *
+ * This will take the indicated object and promote it to the top of the stack
+ * as if it had been pushed there. The object must already be inside the
+ * Navigationbar_ex stack to work.
+ *
+ * @param[in] item The Navigationbar_ex item to promote.
+ * @ingroup Navigationbar_ex
+ */
+EAPI void
+elm_navigationbar_ex_item_promote(Elm_Navigationbar_ex_Item* item)
+{
+   if (!item) return;
+   _item_promote(item);
+}
+
+/**
+ * Pop to the inputted Navigationbar_ex item
+ * the rest of the items are deleted.
+ *
+ * @param[in] item The Navigationbar_ex item
+ *
+ * @ingroup Navigationbar_ex
+ */
+EAPI void
+elm_navigationbar_ex_to_item_pop(Elm_Navigationbar_ex_Item* item)
+{
+   if (!item) return;
+   Widget_Data *wd = elm_widget_data_get(item->obj);
+   Elm_Navigationbar_ex_Item *it = NULL;
+   Eina_List *list;
+   if (!wd) return;
+   if (!wd->stack) return;
+   it = eina_list_last(wd->stack)->data;
+   it->popme = EINA_TRUE;
+   list = eina_list_last(wd->stack);
+   if (list)
+     {
+        while (list)
+          {
+             it = list->data;
+             if (it != item)
+               {
+                  wd->to_delete = eina_list_append(wd->to_delete, it);
+                  wd->stack = eina_list_remove_list(wd->stack, list);
+               }
+             else
+               break;
+
+             list = list->prev;
+          }
+     }
+   _eval_top(it->obj);
+   if (wd->to_delete)
+     _process_deletions(wd);
+}
+
+/**
+ * Pop the object that is on top of the Navigationbar_ex stack
+ * This pops the object that is on top (visible) in the navigationbar, makes it disappear, then deletes/unsets the object
+ * based on del_on_pop variable.
+ * The object that was underneath it on the stack will become visible.
+ *
+ * @param[in] obj The Navigationbar_ex object
+ *
+ * @ingroup Navigationbar_ex
+ */
+EAPI void
+elm_navigationbar_ex_item_pop(Evas_Object *obj)
+{
+   ELM_CHECK_WIDTYPE(obj, widtype);
+   Widget_Data *wd = elm_widget_data_get(obj);
+   Eina_List *ll;
+   Elm_Navigationbar_ex_Item *it;
+   if (!wd) return;
+   if (!wd->stack) return;
+   it = eina_list_last(wd->stack)->data;
+   it->popme = EINA_TRUE;
+   ll = eina_list_last(wd->stack);
+   if (ll)
+     {
+        ll = ll->prev;
+        if (!ll)
+          {
+
+             Evas_Object *o, *o2;
+             const char *onhide;
+
+             wd->top = it;
+             o = wd->top->ct_base;
+             o2 = wd->top->base;
+
+             edje_object_signal_emit(o2, "elm,action,pop", "elm");
+             edje_object_signal_emit(o, "elm,action,pop", "elm");
+             onhide = edje_object_data_get(o, "onhide");
+             if (onhide)
+               {
+                  if (!strcmp(onhide, "raise"))
+                    {
+                       evas_object_raise(o2);
+                       evas_object_raise(o);
+                    }
+                  else if (!strcmp(onhide, "lower"))
+                    {
+                       evas_object_lower(o2);
+                       evas_object_lower(o);
+                    }
+               }
+             wd->top = NULL;
+          }
+        else
+          {
+             it = ll->data;
+             _item_promote(it);
+          }
+     }
+}
+
+
+/**
+ * Return the item at the bottom of the Navigationbar_ex stack
+ *
+ * @param[in] obj The Navigationbar_ex object
+ * @return The bottom item or NULL if none
+ *
+ * @ingroup Navigationbar_ex
+ */
+EAPI Elm_Navigationbar_ex_Item*
+elm_navigationbar_ex_item_bottom_get(const Evas_Object *obj)
+{
+   ELM_CHECK_WIDTYPE(obj, widtype) NULL;
+   Widget_Data *wd = elm_widget_data_get(obj);
+   Elm_Navigationbar_ex_Item *it;
+   if (!wd) return NULL;
+   if (!wd->stack) return NULL;
+   it = wd->stack->data;
+   return it;
+}
+
+/**
+ * Return the item at the top of the Navigationbar_ex stack
+ *
+ * @param[in] obj The Navigationbar_ex object
+ * @return The top object or NULL if none
+ *
+ * @ingroup Navigationbar_ex
+ */
+EAPI Elm_Navigationbar_ex_Item*
+elm_navigationbar_ex_item_top_get(const Evas_Object *obj)
+{
+   ELM_CHECK_WIDTYPE(obj, widtype) NULL;
+   Widget_Data *wd = elm_widget_data_get(obj);
+   Elm_Navigationbar_ex_Item *it;
+   if (!wd) return NULL;
+   if (!wd->stack) return NULL;
+   it = eina_list_last(wd->stack)->data;
+   return it;
+}
+
+/**
+ * This disables content animation on push/pop.
+ *
+ * @param obj The navigationbar_ex object
+ * @param disable  if EINA_TRUE animation is disabled.
+ *
+ * @ingroup Navigationbar_ex
+ */
+EAPI void
+elm_navigationbar_ex_animation_disable_set(Evas_Object *obj, Eina_Bool disable)
+{
+   ELM_CHECK_WIDTYPE(obj, widtype);
+   Widget_Data *wd = elm_widget_data_get(obj);
+   wd->disable_animation = disable;
+}
+
+/**
+ * This shows/hides title object area.
+ *
+ * @param[in] item The Navigationbar_ex item
+ * @param[in] visible  if EINA_TRUE title object is shown else its hidden.
+ * @ingroup Navigationbar_ex
+ */
+EAPI void
+elm_navigationbar_ex_title_object_visible_set(Elm_Navigationbar_ex_Item* item, Eina_Bool visible)
+{
+   if(!item) return;
+   if(!item->title_obj) return;
+   if(visible)
+     {
+        edje_object_signal_emit(item->base, "elm,state,show,title", "elm");
+        evas_object_smart_callback_call(item->obj, SIG_TITLE_OBJ_VISIBLE_CHANGED, (void *) EINA_TRUE);
+     }
+   else
+     {
+        edje_object_signal_emit(item->base, "elm,state,hide,title", "elm");
+        evas_object_smart_callback_call(item->obj, SIG_TITLE_OBJ_VISIBLE_CHANGED, (void *) EINA_FALSE);
+     }
+   item->titleobj_visible = visible;
+}
+
+/**
+ * This gets the status whether title object is shown/hidden.
+ *
+ * @param[in] item The Navigationbar_ex item
+ * @return The status whether title object is shown/hidden.
+ * @ingroup Navigationbar_ex
+ */
+Eina_Bool
+elm_navigationbar_ex_title_object_visible_get(Elm_Navigationbar_ex_Item* item)
+{
+   if (!item) return EINA_FALSE;
+   return item->titleobj_visible;
+}
+
+
+