IInputMethod2 (Compact 2013)

3/28/2014

This interface is implemented by the input method (IM) component. The software-based input panel (SIP) calls the methods of this interface to notify the IM of state changes and to request action and information from the IM. Because an IM is a callback interface, it is up to the developer to implement the following methods.

Methods

Method

Description

IInputMethod2::Select

Implemented to create the windows and image list for the IM.

IInputMethod2::Deselect

Implemented to select the IM out of the SIP window and to destroy the IM windows.

IInputMethod2::Showing

Implemented to perform any initialization before the SIP window is displayed.

IInputMethod2::Hiding

Implemented to perform any saving routines before the SIP is hidden.

IInputMethod2::GetInfo

Implemented to return information about the current IM to the operating system.

IInputMethod2::ReceiveSipInfo

Implemented to receive information about the size, placement, and docked status of the SIP.

IInputMethod2::GetImData

Implemented to send data from the current IM to the current application.

IInputMethod2::SetImData

Implemented to respond to an application's request to set IM-specific data within the IM.

IInputMethod2::UserOptionsDlg

Implemented when the user requests that an IM-specific options dialog box be presented.

IInputMethod2::SetIMMActiveContext

Called whenever ImmSetActiveContext is called. The information received identifies the current state of the IME.

IInputMethod2::RegisterCallback

Implemented to receive a pointer to an IIMCallback interface. An IM uses the IIMCallback interface to send keystrokes to applications and to change the icons on the Input Panel button.

IInputMethod2::RegisterCallback2

Implemented to receive a pointer to an IIMCallback2 interface. An IM uses the IIMCallback2 interface to send keystrokes to applications and to change the icons on the Input Panel button.

Remarks

An IM receives method calls in the following sequence before it is required to render the SIP window space or to respond to user actions:

  1. Select
  2. RegisterCallback
  3. GetInfo
  4. ReceiveSipInfo

Requirements

Header

sip.h

Library

uuid.lib

See Also

Reference

Software-based Input Panel Interfaces