From 675127d0758d6b599601dee612dd82a9066f1b18 Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Fri, 3 Feb 2012 07:32:40 +0000 Subject: [PATCH] From c506f5f078b6abc789602603c481168575cf7260 Mon Sep 17 00:00:00 2001 From: Martin Jansa 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 SVN revision: 67693 --- src/lib/elm_entry.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/lib/elm_entry.c b/src/lib/elm_entry.c index a4d117c..a44bb4c 100644 --- a/src/lib/elm_entry.c +++ b/src/lib/elm_entry.c @@ -3487,3 +3487,13 @@ elm_entry_input_panel_enabled_set(Evas_Object *obj, Eina_Bool enabled) 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; +} + -- 2.7.4