mirror of https://github.com/axmolengine/axmol.git
18 lines
391 B
Plaintext
18 lines
391 B
Plaintext
|
|
typedef struct
|
|
{
|
|
CCRect begin; // the soft keyboard rectangle when animatin begin
|
|
CCRect end; // the soft keyboard rectangle when animatin end
|
|
float duration; // the soft keyboard animation duration
|
|
} CCIMEKeyboardNotificationInfo;
|
|
|
|
class CCIMEDelegate
|
|
{
|
|
bool attachWithIME();
|
|
bool detachWithIME();
|
|
};
|
|
|
|
|
|
|
|
|