2012-04-19 14:35:52 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2010 cocos2d-x.org
|
|
|
|
|
|
|
|
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.
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include "CCTextFieldTTF.h"
|
|
|
|
|
|
|
|
#include "CCDirector.h"
|
|
|
|
#include "CCEGLView.h"
|
|
|
|
|
|
|
|
NS_CC_BEGIN
|
|
|
|
|
|
|
|
static int _calcCharCount(const char * pszText)
|
|
|
|
{
|
|
|
|
int n = 0;
|
|
|
|
char ch = 0;
|
|
|
|
while ((ch = *pszText))
|
|
|
|
{
|
|
|
|
CC_BREAK_IF(! ch);
|
2013-04-19 09:55:29 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
if (0x80 != (0xC0 & ch))
|
|
|
|
{
|
|
|
|
++n;
|
|
|
|
}
|
|
|
|
++pszText;
|
|
|
|
}
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
// constructor and destructor
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
TextFieldTTF::TextFieldTTF()
|
2013-06-15 14:03:30 +08:00
|
|
|
: _delegate(0)
|
|
|
|
, _charCount(0)
|
|
|
|
, _inputText(new std::string)
|
2013-06-20 14:13:12 +08:00
|
|
|
, _placeHolder(new std::string) // prevent LabelTTF initWithString assertion
|
2013-06-15 14:03:30 +08:00
|
|
|
, _secureTextEntry(false)
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
2013-06-15 14:03:30 +08:00
|
|
|
_colorSpaceHolder.r = _colorSpaceHolder.g = _colorSpaceHolder.b = 127;
|
2012-04-19 14:35:52 +08:00
|
|
|
}
|
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
TextFieldTTF::~TextFieldTTF()
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
2013-06-15 14:03:30 +08:00
|
|
|
CC_SAFE_DELETE(_inputText);
|
|
|
|
CC_SAFE_DELETE(_placeHolder);
|
2012-04-19 14:35:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
// static constructor
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
TextFieldTTF * TextFieldTTF::textFieldWithPlaceHolder(const char *placeholder, const Size& dimensions, TextAlignment alignment, const char *fontName, float fontSize)
|
2013-04-19 09:55:29 +08:00
|
|
|
{
|
2013-06-20 14:13:12 +08:00
|
|
|
TextFieldTTF *pRet = new TextFieldTTF();
|
2012-04-19 14:35:52 +08:00
|
|
|
if(pRet && pRet->initWithPlaceHolder("", dimensions, alignment, fontName, fontSize))
|
|
|
|
{
|
|
|
|
pRet->autorelease();
|
|
|
|
if (placeholder)
|
|
|
|
{
|
|
|
|
pRet->setPlaceHolder(placeholder);
|
|
|
|
}
|
|
|
|
return pRet;
|
|
|
|
}
|
|
|
|
CC_SAFE_DELETE(pRet);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
TextFieldTTF * TextFieldTTF::textFieldWithPlaceHolder(const char *placeholder, const char *fontName, float fontSize)
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
2013-06-20 14:13:12 +08:00
|
|
|
TextFieldTTF *pRet = new TextFieldTTF();
|
2012-04-19 14:35:52 +08:00
|
|
|
if(pRet && pRet->initWithString("", fontName, fontSize))
|
|
|
|
{
|
|
|
|
pRet->autorelease();
|
|
|
|
if (placeholder)
|
|
|
|
{
|
|
|
|
pRet->setPlaceHolder(placeholder);
|
|
|
|
}
|
|
|
|
return pRet;
|
|
|
|
}
|
|
|
|
CC_SAFE_DELETE(pRet);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
// initialize
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
bool TextFieldTTF::initWithPlaceHolder(const char *placeholder, const Size& dimensions, TextAlignment alignment, const char *fontName, float fontSize)
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
|
|
|
if (placeholder)
|
|
|
|
{
|
2013-06-15 14:03:30 +08:00
|
|
|
CC_SAFE_DELETE(_placeHolder);
|
|
|
|
_placeHolder = new std::string(placeholder);
|
2012-04-19 14:35:52 +08:00
|
|
|
}
|
2013-06-20 14:13:12 +08:00
|
|
|
return LabelTTF::initWithString(_placeHolder->c_str(), fontName, fontSize, dimensions, alignment);
|
2012-04-19 14:35:52 +08:00
|
|
|
}
|
2013-06-20 14:13:12 +08:00
|
|
|
bool TextFieldTTF::initWithPlaceHolder(const char *placeholder, const char *fontName, float fontSize)
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
|
|
|
if (placeholder)
|
|
|
|
{
|
2013-06-15 14:03:30 +08:00
|
|
|
CC_SAFE_DELETE(_placeHolder);
|
|
|
|
_placeHolder = new std::string(placeholder);
|
2012-04-19 14:35:52 +08:00
|
|
|
}
|
2013-06-20 14:13:12 +08:00
|
|
|
return LabelTTF::initWithString(_placeHolder->c_str(), fontName, fontSize);
|
2012-04-19 14:35:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
2013-06-20 14:13:12 +08:00
|
|
|
// IMEDelegate
|
2012-04-19 14:35:52 +08:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
bool TextFieldTTF::attachWithIME()
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
2013-06-20 14:13:12 +08:00
|
|
|
bool bRet = IMEDelegate::attachWithIME();
|
2012-04-19 14:35:52 +08:00
|
|
|
if (bRet)
|
|
|
|
{
|
|
|
|
// open keyboard
|
2013-06-20 14:13:12 +08:00
|
|
|
EGLView * pGlView = Director::sharedDirector()->getOpenGLView();
|
2012-04-19 14:35:52 +08:00
|
|
|
if (pGlView)
|
|
|
|
{
|
|
|
|
pGlView->setIMEKeyboardState(true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return bRet;
|
|
|
|
}
|
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
bool TextFieldTTF::detachWithIME()
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
2013-06-20 14:13:12 +08:00
|
|
|
bool bRet = IMEDelegate::detachWithIME();
|
2012-04-19 14:35:52 +08:00
|
|
|
if (bRet)
|
|
|
|
{
|
|
|
|
// close keyboard
|
2013-06-20 14:13:12 +08:00
|
|
|
EGLView * pGlView = Director::sharedDirector()->getOpenGLView();
|
2012-04-19 14:35:52 +08:00
|
|
|
if (pGlView)
|
|
|
|
{
|
|
|
|
pGlView->setIMEKeyboardState(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return bRet;
|
|
|
|
}
|
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
bool TextFieldTTF::canAttachWithIME()
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
2013-06-15 14:03:30 +08:00
|
|
|
return (_delegate) ? (! _delegate->onTextFieldAttachWithIME(this)) : true;
|
2012-04-19 14:35:52 +08:00
|
|
|
}
|
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
bool TextFieldTTF::canDetachWithIME()
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
2013-06-15 14:03:30 +08:00
|
|
|
return (_delegate) ? (! _delegate->onTextFieldDetachWithIME(this)) : true;
|
2012-04-19 14:35:52 +08:00
|
|
|
}
|
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
void TextFieldTTF::insertText(const char * text, int len)
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
|
|
|
std::string sInsert(text, len);
|
|
|
|
|
|
|
|
// insert \n means input end
|
|
|
|
int nPos = sInsert.find('\n');
|
|
|
|
if ((int)sInsert.npos != nPos)
|
|
|
|
{
|
|
|
|
len = nPos;
|
|
|
|
sInsert.erase(nPos);
|
|
|
|
}
|
2013-04-19 09:55:29 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
if (len > 0)
|
|
|
|
{
|
2013-06-15 14:03:30 +08:00
|
|
|
if (_delegate && _delegate->onTextFieldInsertText(this, sInsert.c_str(), len))
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
2012-09-17 15:02:24 +08:00
|
|
|
// delegate doesn't want to insert text
|
2012-04-19 14:35:52 +08:00
|
|
|
return;
|
|
|
|
}
|
2013-04-19 09:55:29 +08:00
|
|
|
|
2013-06-15 14:03:30 +08:00
|
|
|
_charCount += _calcCharCount(sInsert.c_str());
|
|
|
|
std::string sText(*_inputText);
|
2012-04-19 14:35:52 +08:00
|
|
|
sText.append(sInsert);
|
|
|
|
setString(sText.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((int)sInsert.npos == nPos) {
|
|
|
|
return;
|
|
|
|
}
|
2013-04-19 09:55:29 +08:00
|
|
|
|
2012-09-17 15:02:24 +08:00
|
|
|
// '\n' inserted, let delegate process first
|
2013-06-15 14:03:30 +08:00
|
|
|
if (_delegate && _delegate->onTextFieldInsertText(this, "\n", 1))
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2013-04-19 09:55:29 +08:00
|
|
|
|
2012-09-17 15:02:24 +08:00
|
|
|
// if delegate hasn't processed, detach from IME by default
|
2012-04-19 14:35:52 +08:00
|
|
|
detachWithIME();
|
|
|
|
}
|
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
void TextFieldTTF::deleteBackward()
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
2013-06-15 14:03:30 +08:00
|
|
|
int nStrLen = _inputText->length();
|
2012-04-19 14:35:52 +08:00
|
|
|
if (! nStrLen)
|
|
|
|
{
|
|
|
|
// there is no string
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// get the delete byte number
|
|
|
|
int nDeleteLen = 1; // default, erase 1 byte
|
|
|
|
|
2013-06-15 14:03:30 +08:00
|
|
|
while(0x80 == (0xC0 & _inputText->at(nStrLen - nDeleteLen)))
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
|
|
|
++nDeleteLen;
|
|
|
|
}
|
|
|
|
|
2013-06-15 14:03:30 +08:00
|
|
|
if (_delegate && _delegate->onTextFieldDeleteBackward(this, _inputText->c_str() + nStrLen - nDeleteLen, nDeleteLen))
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
2012-09-17 15:02:24 +08:00
|
|
|
// delegate doesn't wan't to delete backwards
|
2012-04-19 14:35:52 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-09-17 15:02:24 +08:00
|
|
|
// if all text deleted, show placeholder string
|
2012-04-19 14:35:52 +08:00
|
|
|
if (nStrLen <= nDeleteLen)
|
|
|
|
{
|
2013-06-15 14:03:30 +08:00
|
|
|
CC_SAFE_DELETE(_inputText);
|
|
|
|
_inputText = new std::string;
|
|
|
|
_charCount = 0;
|
2013-06-20 14:13:12 +08:00
|
|
|
LabelTTF::setString(_placeHolder->c_str());
|
2012-04-19 14:35:52 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// set new input text
|
2013-06-15 14:03:30 +08:00
|
|
|
std::string sText(_inputText->c_str(), nStrLen - nDeleteLen);
|
2012-04-19 14:35:52 +08:00
|
|
|
setString(sText.c_str());
|
|
|
|
}
|
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
const char * TextFieldTTF::getContentText()
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
2013-06-15 14:03:30 +08:00
|
|
|
return _inputText->c_str();
|
2012-04-19 14:35:52 +08:00
|
|
|
}
|
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
void TextFieldTTF::draw()
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
2013-06-15 14:03:30 +08:00
|
|
|
if (_delegate && _delegate->onDraw(this))
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2013-06-15 14:03:30 +08:00
|
|
|
if (_inputText->length())
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
2013-06-20 14:13:12 +08:00
|
|
|
LabelTTF::draw();
|
2012-04-19 14:35:52 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// draw placeholder
|
2013-07-05 16:49:22 +08:00
|
|
|
Color3B color = getColor();
|
2013-06-15 14:03:30 +08:00
|
|
|
setColor(_colorSpaceHolder);
|
2013-06-20 14:13:12 +08:00
|
|
|
LabelTTF::draw();
|
2012-04-19 14:35:52 +08:00
|
|
|
setColor(color);
|
|
|
|
}
|
|
|
|
|
2013-07-05 16:49:22 +08:00
|
|
|
const Color3B& TextFieldTTF::getColorSpaceHolder()
|
2012-11-20 16:34:55 +08:00
|
|
|
{
|
2013-06-15 14:03:30 +08:00
|
|
|
return _colorSpaceHolder;
|
2012-11-20 16:34:55 +08:00
|
|
|
}
|
|
|
|
|
2013-07-05 16:49:22 +08:00
|
|
|
void TextFieldTTF::setColorSpaceHolder(const Color3B& color)
|
2012-11-20 16:34:55 +08:00
|
|
|
{
|
2013-06-15 14:03:30 +08:00
|
|
|
_colorSpaceHolder = color;
|
2012-11-20 16:34:55 +08:00
|
|
|
}
|
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
// properties
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
// input text property
|
2013-06-20 14:13:12 +08:00
|
|
|
void TextFieldTTF::setString(const char *text)
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
2013-04-19 16:09:26 +08:00
|
|
|
static char bulletString[] = {(char)0xe2, (char)0x80, (char)0xa2, (char)0x00};
|
2013-04-19 09:55:29 +08:00
|
|
|
std::string displayText;
|
|
|
|
int length;
|
|
|
|
|
2013-06-15 14:03:30 +08:00
|
|
|
CC_SAFE_DELETE(_inputText);
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
if (text)
|
|
|
|
{
|
2013-06-15 14:03:30 +08:00
|
|
|
_inputText = new std::string(text);
|
|
|
|
displayText = *_inputText;
|
|
|
|
if (_secureTextEntry)
|
2013-04-19 09:55:29 +08:00
|
|
|
{
|
|
|
|
displayText = "";
|
2013-06-15 14:03:30 +08:00
|
|
|
length = _inputText->length();
|
2013-04-19 09:55:29 +08:00
|
|
|
while (length)
|
|
|
|
{
|
|
|
|
displayText.append(bulletString);
|
|
|
|
--length;
|
|
|
|
}
|
|
|
|
}
|
2012-04-19 14:35:52 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-06-15 14:03:30 +08:00
|
|
|
_inputText = new std::string;
|
2012-04-19 14:35:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// if there is no input text, display placeholder instead
|
2013-06-15 14:03:30 +08:00
|
|
|
if (! _inputText->length())
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
2013-06-20 14:13:12 +08:00
|
|
|
LabelTTF::setString(_placeHolder->c_str());
|
2012-04-19 14:35:52 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-06-20 14:13:12 +08:00
|
|
|
LabelTTF::setString(displayText.c_str());
|
2012-04-19 14:35:52 +08:00
|
|
|
}
|
2013-06-15 14:03:30 +08:00
|
|
|
_charCount = _calcCharCount(_inputText->c_str());
|
2012-04-19 14:35:52 +08:00
|
|
|
}
|
|
|
|
|
2013-07-04 08:22:15 +08:00
|
|
|
const char* TextFieldTTF::getString(void) const
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
2013-06-15 14:03:30 +08:00
|
|
|
return _inputText->c_str();
|
2012-04-19 14:35:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// place holder text property
|
2013-06-20 14:13:12 +08:00
|
|
|
void TextFieldTTF::setPlaceHolder(const char * text)
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
2013-06-15 14:03:30 +08:00
|
|
|
CC_SAFE_DELETE(_placeHolder);
|
|
|
|
_placeHolder = (text) ? new std::string(text) : new std::string;
|
|
|
|
if (! _inputText->length())
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
2013-06-20 14:13:12 +08:00
|
|
|
LabelTTF::setString(_placeHolder->c_str());
|
2012-04-19 14:35:52 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
const char * TextFieldTTF::getPlaceHolder(void)
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
2013-06-15 14:03:30 +08:00
|
|
|
return _placeHolder->c_str();
|
2012-04-19 14:35:52 +08:00
|
|
|
}
|
|
|
|
|
2013-03-28 22:08:33 +08:00
|
|
|
// secureTextEntry
|
2013-06-20 14:13:12 +08:00
|
|
|
void TextFieldTTF::setSecureTextEntry(bool value)
|
2013-03-28 22:08:33 +08:00
|
|
|
{
|
2013-06-15 14:03:30 +08:00
|
|
|
if (_secureTextEntry != value)
|
2013-04-19 09:55:29 +08:00
|
|
|
{
|
2013-06-15 14:03:30 +08:00
|
|
|
_secureTextEntry = value;
|
2013-04-19 09:55:29 +08:00
|
|
|
setString(getString());
|
|
|
|
}
|
2013-03-28 22:08:33 +08:00
|
|
|
}
|
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
bool TextFieldTTF::isSecureTextEntry()
|
2013-03-28 22:08:33 +08:00
|
|
|
{
|
2013-06-15 14:03:30 +08:00
|
|
|
return _secureTextEntry;
|
2013-03-28 22:08:33 +08:00
|
|
|
}
|
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
NS_CC_END
|