Lines Matching refs:m_pIMContext

3281   m_pIMContext( NULL ),  in IMHandler()
3298 if( ! m_pIMContext ) in createIMContext()
3300 m_pIMContext = gtk_im_multicontext_new (); in createIMContext()
3301 g_signal_connect( m_pIMContext, "commit", in createIMContext()
3303 g_signal_connect( m_pIMContext, "preedit_changed", in createIMContext()
3305 g_signal_connect( m_pIMContext, "retrieve_surrounding", in createIMContext()
3307 g_signal_connect( m_pIMContext, "delete_surrounding", in createIMContext()
3309 g_signal_connect( m_pIMContext, "preedit_start", in createIMContext()
3311 g_signal_connect( m_pIMContext, "preedit_end", in createIMContext()
3315 gtk_im_context_set_client_window( m_pIMContext, GTK_WIDGET(m_pFrame->m_pWindow)->window ); in createIMContext()
3316 gtk_im_context_focus_in( m_pIMContext ); in createIMContext()
3324 if( m_pIMContext ) in deleteIMContext()
3328 gtk_im_context_set_client_window( m_pIMContext, NULL ); in deleteIMContext()
3331 g_object_unref( m_pIMContext ); in deleteIMContext()
3332 m_pIMContext = NULL; in deleteIMContext()
3354 gtk_im_context_set_cursor_location( m_pIMContext, &aArea ); in updateIMSpotLocation()
3381 gtk_im_context_reset ( m_pIMContext ); in endExtTextInput()
3407 gtk_im_context_focus_in( m_pIMContext ); in focusChanged()
3419 gtk_im_context_focus_out( m_pIMContext ); in focusChanged()
3448 GObject* pRef = G_OBJECT( g_object_ref( G_OBJECT( m_pIMContext ) ) ); in handleKeyEvent()
3456 gboolean bResult = gtk_im_context_filter_keypress( m_pIMContext, pEvent ); in handleKeyEvent()
3486 GObject* pRef = G_OBJECT( g_object_ref( G_OBJECT( m_pIMContext ) ) ); in handleKeyEvent()
3487 gboolean bResult = gtk_im_context_filter_keypress( m_pIMContext, pEvent ); in handleKeyEvent()
3632 gtk_im_context_get_preedit_string( pThis->m_pIMContext, in signalIMPreeditChanged()