summaryrefslogtreecommitdiff
path: root/src/lib/ecore_imf
diff options
context:
space:
mode:
authorInHong Han <inhong1.han@samsung.com>2017-06-05 10:50:15 -0700
committerCedric BAIL <cedric@osg.samsung.com>2017-06-05 12:04:43 -0700
commita026fad7794dc7d900151cb4c11bde1bf1c69fce (patch)
tree42833798bee6025785e911d17ea34779e4a9553d /src/lib/ecore_imf
parente9f727044b38b1e1897dc28161d355f0d18a4ecb (diff)
downloadefl-a026fad7794dc7d900151cb4c11bde1bf1c69fce.tar.gz
ecore_imf: add ecore_imf_context_mime_type_accept_set API
Summary: Added a new api to send the mime type of entry to IME. Test Plan: Tested in Tizen device Reviewers: woohyun, id213sin, jihoon, cedric Reviewed By: cedric Subscribers: cedric, jihoon, jpeg Differential Revision: https://phab.enlightenment.org/D4929 Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
Diffstat (limited to 'src/lib/ecore_imf')
-rw-r--r--src/lib/ecore_imf/Ecore_IMF.h21
-rw-r--r--src/lib/ecore_imf/ecore_imf_context.c16
2 files changed, 37 insertions, 0 deletions
diff --git a/src/lib/ecore_imf/Ecore_IMF.h b/src/lib/ecore_imf/Ecore_IMF.h
index 08ae0e8dd6..9a27c20f52 100644
--- a/src/lib/ecore_imf/Ecore_IMF.h
+++ b/src/lib/ecore_imf/Ecore_IMF.h
@@ -728,6 +728,7 @@ struct _Ecore_IMF_Context_Class
void (*bidi_direction_set) (Ecore_IMF_Context *ctx, Ecore_IMF_BiDi_Direction direction); /**< Set bidirectionality at the cursor position */
Ecore_IMF_Input_Panel_Keyboard_Mode (*keyboard_mode_get) (Ecore_IMF_Context *ctx); /**< Return the current keyboard mode of the input panel */
void (*prediction_hint_set) (Ecore_IMF_Context *ctx, const char *prediction_hint); /**< Set the prediction hint to the input panel */
+ void (*mime_type_accept_set) (Ecore_IMF_Context *ctx, const char *mime_type); /**< Set the MIME type to the input panel */
};
/**
@@ -1916,6 +1917,26 @@ EAPI Ecore_IMF_Input_Panel_Keyboard_Mode ecore_imf_context_keyboard_mode_get(Eco
*/
EAPI void ecore_imf_context_prediction_hint_set(Ecore_IMF_Context *ctx, const char *prediction_hint);
+/**
+ * @ingroup Ecore_IMF_Context_Group
+ * @brief Sets the allowed MIME type to deliver to the input panel.
+ *
+ * @since 1.20.0
+ *
+ * @param[in] ctx An #Ecore_IMF_Context
+ * @param[in] mime_type The allowed MIME type in entry
+ *
+ * Example
+ * @code
+ * const char *mime_type = "text/plain,image/png,application/pdf";
+ * ecore_imf_context_mime_type_accept_set(imf_context, mime_type);
+ * @endcode
+ *
+ * @since_tizen 4.0
+ * @endif
+ */
+EAPI void ecore_imf_context_mime_type_accept_set(Ecore_IMF_Context *ctx, const char *mime_type);
+
/* The following entry points must be exported by each input method module
*/
diff --git a/src/lib/ecore_imf/ecore_imf_context.c b/src/lib/ecore_imf/ecore_imf_context.c
index e7f1f67d68..2ac7d59e7f 100644
--- a/src/lib/ecore_imf/ecore_imf_context.c
+++ b/src/lib/ecore_imf/ecore_imf_context.c
@@ -1420,4 +1420,20 @@ ecore_imf_context_prediction_hint_set(Ecore_IMF_Context *ctx, const char *predic
if (ctx->klass->prediction_hint_set)
ctx->klass->prediction_hint_set(ctx, prediction_hint);
+}
+
+EAPI void
+ecore_imf_context_mime_type_accept_set(Ecore_IMF_Context *ctx, const char *mime_type)
+{
+ if (!ECORE_MAGIC_CHECK(ctx, ECORE_MAGIC_CONTEXT))
+ {
+ ECORE_MAGIC_FAIL(ctx, ECORE_MAGIC_CONTEXT,
+ "ecore_imf_context_mime_type_accept_set");
+ return;
+ }
+
+ if (!mime_type) return;
+
+ if (ctx->klass->mime_type_accept_set)
+ ctx->klass->mime_type_accept_set(ctx, mime_type);
} \ No newline at end of file