Home | History | Annotate | Download | only in WebCoreSupport

Lines Matching refs:imContext

241     // The IMContext may signal more than one completed composition in a row,
258 gtk_im_context_focus_in(priv->imContext.get());
260 gtk_im_context_focus_out(priv->imContext.get());
264 hildon_gtk_im_context_show(priv->imContext.get());
266 hildon_gtk_im_context_hide(priv->imContext.get());
464 gtk_im_context_reset(priv->imContext.get());
803 // 1. The IMContext instructed us to filter and we have no pending composition.
804 // 2. The IMContext did not instruct us to filter, but the keystroke caused a
810 if ((gtk_im_context_filter_keypress(priv->imContext.get(), event->keyEvent()->gdkEventKey()) && !m_pendingComposition)
830 gtk_im_context_get_preedit_string(priv->imContext.get(), &newPreedit.outPtr(), 0, 0);
835 gtk_im_context_reset(priv->imContext.get());
850 g_signal_connect(priv->imContext.get(), "commit", G_CALLBACK(imContextCommitted), this);
851 g_signal_connect(priv->imContext.get(), "preedit-changed", G_CALLBACK(imContextPreeditChanged), this);
868 g_signal_handlers_disconnect_by_func(priv->imContext.get(), (gpointer)imContextCommitted, this);
869 g_signal_handlers_disconnect_by_func(priv->imContext.get(), (gpointer)imContextPreeditChanged, this);