mirror of https://github.com/axmolengine/axmol.git
22 lines
684 B
Plaintext
22 lines
684 B
Plaintext
|
|
||
|
class CCIMEDispatcher
|
||
|
{
|
||
|
|
||
|
|
||
|
static CCIMEDispatcher* sharedDispatcher();
|
||
|
void dispatchInsertText(const char * pText, int nLen);
|
||
|
void dispatchDeleteBackward();
|
||
|
|
||
|
//////////////////////////////////////////////////////////////////////////
|
||
|
// dispatch keyboard notification
|
||
|
//////////////////////////////////////////////////////////////////////////
|
||
|
void dispatchKeyboardWillShow(CCIMEKeyboardNotificationInfo& info);
|
||
|
void dispatchKeyboardDidShow(CCIMEKeyboardNotificationInfo& info);
|
||
|
void dispatchKeyboardWillHide(CCIMEKeyboardNotificationInfo& info);
|
||
|
void dispatchKeyboardDidHide(CCIMEKeyboardNotificationInfo& info);
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
|