CCIMEDelegate

#ifndef __CC_IME_DELEGATE_H__

#define __CC_IME_DELEGATE_H__


#include "cocoa/CCGeometry.h"


NS_CC_BEGIN


/**

 * @addtogroup input

 * @{

 */


typedef struct

{

    CCRect  begin;              // the soft keyboard rectangle when animation begins

    CCRect  end;                // the soft keyboard rectangle when animation ends

    float     duration;           // the soft keyboard animation duration

} CCIMEKeyboardNotificationInfo;


/**

@brief    Input method editor delegate.

*/

class CC_DLL CCIMEDelegate

{

public:

    virtual ~CCIMEDelegate();


    virtual bool attachWithIME();

    virtual bool detachWithIME();


protected:

    friend class CCIMEDispatcher;


    /**

    @brief    Decide if the delegate instance is ready to receive an IME message.


    Called by CCIMEDispatcher.

    */

    virtual bool canAttachWithIME() { return false; }

    /**

    @brief    When the delegate detaches from the IME, this method is called by CCIMEDispatcher.

    */

    virtual void didAttachWithIME() {}


    /**

    @brief    Decide if the delegate instance can stop receiving IME messages.

    */

    virtual bool canDetachWithIME() { return false; }


    /**

    @brief    When the delegate detaches from the IME, this method is called by CCIMEDispatcher.

    */

    virtual void didDetachWithIME() {}


    /**

    @brief    Called by CCIMEDispatcher when text input received from the IME.

    */

    virtual void insertText(const char * text, int len) {CC_UNUSED_PARAM(text);CC_UNUSED_PARAM(len);}


    /**

    @brief    Called by CCIMEDispatcher after the user clicks the backward key.

    */

    virtual void deleteBackward() {}


    /**

    @brief    Called by CCIMEDispatcher for text stored in delegate.

    */

    virtual const char * getContentText() { return 0; }


    //

    // keyboard show/hide notification

    //

    virtual void keyboardWillShow(CCIMEKeyboardNotificationInfo& info)   {CC_UNUSED_PARAM(info);}

    virtual void keyboardDidShow(CCIMEKeyboardNotificationInfo& info)    {CC_UNUSED_PARAM(info);}

    virtual void keyboardWillHide(CCIMEKeyboardNotificationInfo& info)   {CC_UNUSED_PARAM(info);}

    virtual void keyboardDidHide(CCIMEKeyboardNotificationInfo& info)    {CC_UNUSED_PARAM(info);}


protected:

    CCIMEDelegate();

};


// end of input group

/// @}


NS_CC_END


#endif    // __CC_IME_DELEGATE_H__


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值