Naviframe item is popped when Escape key is pressed.
group "Elm_Config" struct {
- value "config_version" int: 131083;
+ value "config_version" int: 131084;
value "engine" string: "";
value "vsync" uchar: 0;
value "thumbscroll_enable" uchar: 1;
value "action" string: "top_item_get";
value "params" string: "";
}
+ group "Elm_Config_Binding_Key" struct {
+ value "context" int: 0;
+ value "key" string: "Escape";
+ value "action" string: "item_pop";
+ value "params" string: "";
+ }
}
}
group "Elm_Config_Bindings_Widget" struct {
group "Elm_Config" struct {
- value "config_version" int: 131083;
+ value "config_version" int: 131084;
value "engine" string: "";
value "vsync" uchar: 0;
value "thumbscroll_enable" uchar: 1;
value "action" string: "top_item_get";
value "params" string: "";
}
+ group "Elm_Config_Binding_Key" struct {
+ value "context" int: 0;
+ value "key" string: "Escape";
+ value "action" string: "item_pop";
+ value "params" string: "";
+ }
}
}
group "Elm_Config_Bindings_Widget" struct {
group "Elm_Config" struct {
- value "config_version" int: 131083;
+ value "config_version" int: 131084;
value "engine" string: "";
value "vsync" uchar: 0;
value "thumbscroll_enable" uchar: 0;
value "action" string: "top_item_get";
value "params" string: "";
}
+ group "Elm_Config_Binding_Key" struct {
+ value "context" int: 0;
+ value "key" string: "Escape";
+ value "action" string: "item_pop";
+ value "params" string: "";
+ }
}
}
group "Elm_Config_Bindings_Widget" struct {
static void _on_item_back_btn_clicked(void *data, const Efl_Event *event);
static Eina_Bool _key_action_top_item_get(Evas_Object *obj, const char *params);
+static Eina_Bool _key_action_item_pop(Evas_Object *obj, const char *params);
static const Elm_Action key_actions[] = {
{"top_item_get", _key_action_top_item_get},
+ {"item_pop", _key_action_item_pop},
{NULL, NULL}
};
return EINA_TRUE;
}
+static Eina_Bool
+_key_action_item_pop(Evas_Object *obj, const char *params EINA_UNUSED)
+{
+ Elm_Object_Item *eo_item = NULL;
+ eo_item = elm_naviframe_top_item_get(obj);
+ if (!eo_item) return EINA_FALSE;
+
+ ELM_NAVIFRAME_ITEM_DATA_GET(eo_item, it);
+
+ if (it->pushing || it->popping) return EINA_FALSE;
+
+ elm_naviframe_item_pop(obj);
+
+ return EINA_TRUE;
+}
+
EOLIAN static Eina_Bool
_elm_naviframe_elm_widget_event(Eo *obj, Elm_Naviframe_Data *sd EINA_UNUSED, Evas_Object *src, Evas_Callback_Type type, void *event_info)
{
{
static Elm_Atspi_Action atspi_actions[] = {
{ "top_item_get", "top_item_get", NULL, _key_action_top_item_get },
+ { "item_pop", "item_pop", NULL, _key_action_item_pop },
{ NULL, NULL, NULL, NULL }
};
return &atspi_actions[0];