axmol/cocos/2d/CCIMEDispatcher.h

141 lines
3.7 KiB
C
Raw Normal View History

/****************************************************************************
Copyright (c) 2010 cocos2d-x.org
Copyright (c) 2013-2014 Chukong Technologies Inc.
http://www.cocos2d-x.org
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
****************************************************************************/
#ifndef __CC_IME_DISPATCHER_H__
#define __CC_IME_DISPATCHER_H__
#include "2d/CCIMEDelegate.h"
NS_CC_BEGIN
2012-06-20 18:09:11 +08:00
/**
* @addtogroup input
* @{
*/
/**
@brief Input Method Edit Message Dispatcher.
*/
class CC_DLL IMEDispatcher
{
public:
/**
* @js NA
* @lua NA
*/
~IMEDispatcher();
/**
@brief Returns the shared IMEDispatcher object for the system.
* @js NA
* @lua NA
*/
static IMEDispatcher* sharedDispatcher();
// /**
// @brief Releases all IMEDelegates from the shared dispatcher.
// */
// static void purgeSharedDispatcher();
/**
@brief Dispatches the input text from IME.
* @js NA
* @lua NA
*/
2014-03-20 10:58:04 +08:00
void dispatchInsertText(const char * text, size_t len);
/**
@brief Dispatches the delete-backward operation.
* @js NA
* @lua NA
*/
void dispatchDeleteBackward();
/**
@brief Get the content text from IMEDelegate, retrieved previously from IME.
* @js NA
* @lua NA
*/
const std::string& getContentText();
//////////////////////////////////////////////////////////////////////////
// dispatch keyboard notification
//////////////////////////////////////////////////////////////////////////
/**
* @js NA
* @lua NA
*/
void dispatchKeyboardWillShow(IMEKeyboardNotificationInfo& info);
/**
* @js NA
* @lua NA
*/
void dispatchKeyboardDidShow(IMEKeyboardNotificationInfo& info);
/**
* @js NA
* @lua NA
*/
void dispatchKeyboardWillHide(IMEKeyboardNotificationInfo& info);
/**
* @js NA
* @lua NA
*/
void dispatchKeyboardDidHide(IMEKeyboardNotificationInfo& info);
protected:
friend class IMEDelegate;
/**
@brief Add delegate to receive IME messages.
*/
void addDelegate(IMEDelegate * delegate);
/**
@brief Attach the pDelegate to the IME.
@return If the old delegate can detach from the IME, and the new delegate
can attach to the IME, return true, otherwise false.
*/
bool attachDelegateWithIME(IMEDelegate * delegate);
bool detachDelegateWithIME(IMEDelegate * delegate);
/**
@brief Remove the delegate from the delegates which receive IME messages.
*/
void removeDelegate(IMEDelegate * delegate);
private:
IMEDispatcher();
class Impl;
Impl * _impl;
};
2012-06-20 18:09:11 +08:00
// end of input group
/// @}
NS_CC_END
#endif // __CC_IME_DISPATCHER_H__