From: Martin Jansa <Martin.Jansa@gmail.com>
Date: Thu, 2 Feb 2012 20:04:51 +0100
Subject: [PATCH] elm_entry: add missing elm_entry_input_panel_enabled_get
* it was in elm_entry.h but without implementation
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
SVN revision: 67693
edje_object_part_text_input_panel_enabled_set(wd->ent, "elm.text", enabled);
}
+EAPI Eina_Bool
+elm_entry_input_panel_enabled_get(Evas_Object *obj)
+{
+ ELM_CHECK_WIDTYPE(obj, widtype) EINA_TRUE;
+ Widget_Data *wd = elm_widget_data_get(obj);
+ if (!wd) return EINA_TRUE;
+
+ return wd->input_panel_enable;
+}
+