From 5c989481b7e74263f4ab66e7067728ae51527882 Mon Sep 17 00:00:00 2001 From: Jee-Yong Um Date: Thu, 11 Aug 2016 11:21:02 +0900 Subject: [PATCH] edje: clean up part text imf context APIs --- src/lib/edje/edje_object.eo | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/src/lib/edje/edje_object.eo b/src/lib/edje/edje_object.eo index 8882f43050..8e3c39c5d2 100644 --- a/src/lib/edje/edje_object.eo +++ b/src/lib/edje/edje_object.eo @@ -1608,16 +1608,20 @@ class Edje.Object (Efl.Canvas.Group.Clipped, Efl.File, Efl.Container, Efl.Part) text: string; [[The text string]] } } - part_text_imf_context_get @const { - [[Get the input method context in entry. + @property part_text_imf_context { + get { + [[Get the input method context in entry. - If ecore_imf was not available when edje was compiled, this function returns $null - otherwise, the returned pointer is an Ecore_IMF + If ecore_imf was not available when edje was compiled, this function returns $null + otherwise, the returned pointer is an Ecore_IMF - @since 1.2.0]] - return: void_ptr; [[The input method context (Ecore_IMF_Context *) in entry]] - params { - @in part: string; [[The part name]] + @since 1.2.0]] + } + keys { + part: string; [[The part name]] + } + values { + context: void_ptr; [[The input method context (Ecore_IMF_Context *) in entry]] } } part_text_imf_context_reset @const {