mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-23 16:07:52 -05:00
662a9e99f5
- remove cocos2dx folder - change all include paths in cocos2d to be relative
90 lines
3.3 KiB
C++
Vendored
90 lines
3.3 KiB
C++
Vendored
/****************************************************************************
|
|
Copyright (c) 2010-2012 cocos2d-x.org
|
|
Copyright (c) 2012 James Chen
|
|
|
|
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 __CCEditBoxIMPL_H__
|
|
#define __CCEditBoxIMPL_H__
|
|
|
|
#include "../../../include/cocos2d.h"
|
|
#include "../../ExtensionMacros.h"
|
|
#include "CCEditBox.h"
|
|
|
|
NS_CC_EXT_BEGIN
|
|
|
|
|
|
class CC_DLL CCEditBoxImpl
|
|
{
|
|
public:
|
|
CCEditBoxImpl(CCEditBox* pEditBox) : m_pDelegate(NULL),m_pEditBox(pEditBox) {}
|
|
virtual ~CCEditBoxImpl() {}
|
|
|
|
virtual bool initWithSize(const CCSize& size) = 0;
|
|
virtual void setFont(const char* pFontName, int fontSize) = 0;
|
|
virtual void setFontColor(const ccColor3B& color) = 0;
|
|
virtual void setPlaceholderFont(const char* pFontName, int fontSize) = 0;
|
|
virtual void setPlaceholderFontColor(const ccColor3B& color) = 0;
|
|
virtual void setInputMode(EditBoxInputMode inputMode) = 0;
|
|
virtual void setInputFlag(EditBoxInputFlag inputFlag) = 0;
|
|
virtual void setMaxLength(int maxLength) = 0;
|
|
virtual int getMaxLength() = 0;
|
|
virtual void setReturnType(KeyboardReturnType returnType) = 0;
|
|
virtual bool isEditing() = 0;
|
|
|
|
virtual void setText(const char* pText) = 0;
|
|
virtual const char* getText(void) = 0;
|
|
virtual void setPlaceHolder(const char* pText) = 0;
|
|
virtual void doAnimationWhenKeyboardMove(float duration, float distance) = 0;
|
|
|
|
virtual void openKeyboard() = 0;
|
|
virtual void closeKeyboard() = 0;
|
|
|
|
virtual void setPosition(const CCPoint& pos) = 0;
|
|
virtual void setVisible(bool visible) = 0;
|
|
virtual void setContentSize(const CCSize& size) = 0;
|
|
virtual void setAnchorPoint(const CCPoint& anchorPoint) = 0;
|
|
/**
|
|
* @js NA
|
|
*/
|
|
virtual void visit(void) = 0;
|
|
/**
|
|
* @js NA
|
|
*/
|
|
virtual void onEnter(void) = 0;
|
|
|
|
|
|
void setDelegate(CCEditBoxDelegate* pDelegate) { m_pDelegate = pDelegate; };
|
|
CCEditBoxDelegate* getDelegate() { return m_pDelegate; };
|
|
CCEditBox* getCCEditBox() { return m_pEditBox; };
|
|
protected:
|
|
CCEditBoxDelegate* m_pDelegate;
|
|
CCEditBox* m_pEditBox;
|
|
};
|
|
|
|
// This method must be implemented at each subclass of CCEditBoxImpl.
|
|
extern CCEditBoxImpl* __createSystemEditBox(CCEditBox* pEditBox);
|
|
|
|
|
|
NS_CC_EXT_END
|
|
|
|
#endif /* __CCEditBoxIMPL_H__ */
|