2014-03-11 17:13:54 +08:00
|
|
|
/****************************************************************************
|
|
|
|
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.
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include "ui/UITextField.h"
|
|
|
|
|
|
|
|
NS_CC_BEGIN
|
|
|
|
|
|
|
|
namespace ui {
|
|
|
|
|
|
|
|
static int _calcCharCount(const char * pszText)
|
|
|
|
{
|
|
|
|
int n = 0;
|
|
|
|
char ch = 0;
|
|
|
|
while ((ch = *pszText))
|
|
|
|
{
|
|
|
|
CC_BREAK_IF(! ch);
|
|
|
|
|
|
|
|
if (0x80 != (0xC0 & ch))
|
|
|
|
{
|
|
|
|
++n;
|
|
|
|
}
|
|
|
|
++pszText;
|
|
|
|
}
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
|
|
|
UICCTextField::UICCTextField()
|
|
|
|
: _maxLengthEnabled(false)
|
|
|
|
, _maxLength(0)
|
|
|
|
, _passwordEnabled(false)
|
|
|
|
, _passwordStyleText("*")
|
|
|
|
, _attachWithIME(false)
|
|
|
|
, _detachWithIME(false)
|
|
|
|
, _insertText(false)
|
|
|
|
, _deleteBackward(false)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
UICCTextField::~UICCTextField()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-05-12 14:59:00 +08:00
|
|
|
UICCTextField * UICCTextField::create(const std::string& placeholder, const std::string& fontName, float fontSize)
|
2014-03-11 17:13:54 +08:00
|
|
|
{
|
|
|
|
UICCTextField *pRet = new UICCTextField();
|
|
|
|
|
2014-03-14 21:06:40 +08:00
|
|
|
if(pRet && pRet->initWithPlaceHolder("", fontName, fontSize))
|
2014-03-11 17:13:54 +08:00
|
|
|
{
|
|
|
|
pRet->autorelease();
|
2014-05-12 14:59:00 +08:00
|
|
|
if (!placeholder.empty())
|
2014-03-11 17:13:54 +08:00
|
|
|
{
|
|
|
|
pRet->setPlaceHolder(placeholder);
|
|
|
|
}
|
|
|
|
return pRet;
|
|
|
|
}
|
|
|
|
CC_SAFE_DELETE(pRet);
|
|
|
|
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
void UICCTextField::onEnter()
|
|
|
|
{
|
|
|
|
TextFieldTTF::setDelegate(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool UICCTextField::onTextFieldAttachWithIME(TextFieldTTF *pSender)
|
|
|
|
{
|
|
|
|
setAttachWithIME(true);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-03-20 10:58:04 +08:00
|
|
|
bool UICCTextField::onTextFieldInsertText(TextFieldTTF *pSender, const char *text, size_t nLen)
|
2014-03-11 17:13:54 +08:00
|
|
|
{
|
|
|
|
if (nLen == 1 && strcmp(text, "\n") == 0)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
setInsertText(true);
|
|
|
|
if (_maxLengthEnabled)
|
|
|
|
{
|
|
|
|
if (TextFieldTTF::getCharCount() >= _maxLength)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-03-20 16:24:55 +08:00
|
|
|
bool UICCTextField::onTextFieldDeleteBackward(TextFieldTTF *pSender, const char *delText, size_t nLen)
|
2014-03-11 17:13:54 +08:00
|
|
|
{
|
|
|
|
setDeleteBackward(true);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool UICCTextField::onTextFieldDetachWithIME(TextFieldTTF *pSender)
|
|
|
|
{
|
|
|
|
setDetachWithIME(true);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-05-12 14:59:00 +08:00
|
|
|
void UICCTextField::insertText(const char* text, size_t len)
|
2014-03-11 17:13:54 +08:00
|
|
|
{
|
|
|
|
std::string input_text = text;
|
|
|
|
|
|
|
|
if (strcmp(text, "\n") != 0)
|
|
|
|
{
|
|
|
|
if (_maxLengthEnabled)
|
|
|
|
{
|
|
|
|
int text_count = _calcCharCount(getString().c_str());
|
|
|
|
if (text_count >= _maxLength)
|
|
|
|
{
|
|
|
|
// password
|
|
|
|
if (_passwordEnabled)
|
|
|
|
{
|
|
|
|
setPasswordText(getString().c_str());
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if ((CC_TARGET_PLATFORM == CC_PLATFORM_IOS) || (CC_TARGET_PLATFORM == CC_PLATFORM_MAC) || (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32))
|
|
|
|
int input_count = _calcCharCount(text);
|
|
|
|
int total = total = text_count + input_count;
|
|
|
|
|
|
|
|
if (total > _maxLength)
|
|
|
|
{
|
|
|
|
int end = 0;
|
|
|
|
int length = _maxLength - text_count;
|
|
|
|
|
|
|
|
for (int i = 0; i < length; ++i)
|
|
|
|
{
|
|
|
|
char value = text[i];
|
|
|
|
|
|
|
|
if (value >= 0 && value <= 127) // ascii
|
|
|
|
{
|
|
|
|
end++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
end += 3;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
input_text = input_text.substr(0, end);
|
|
|
|
len = end;
|
|
|
|
}
|
|
|
|
#elif (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID)
|
|
|
|
int input_count = _calcCharCount(text);
|
2014-03-28 18:54:06 +08:00
|
|
|
int total = text_count + input_count;
|
|
|
|
if (total > _maxLength)
|
2014-03-11 17:13:54 +08:00
|
|
|
{
|
|
|
|
int ascii = 0;
|
|
|
|
int unicode = 0;
|
|
|
|
int end = 0;
|
|
|
|
int count = 0;
|
|
|
|
|
2014-03-28 18:54:06 +08:00
|
|
|
for (int i = 0; i < total * 3; ++i)
|
2014-03-11 17:13:54 +08:00
|
|
|
{
|
|
|
|
char value = text[i];
|
|
|
|
|
|
|
|
if (value >= 0 && value <= 127) // ascii
|
|
|
|
{
|
|
|
|
ascii++;
|
|
|
|
count++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
unicode++;
|
|
|
|
if (unicode % 3 == 0)
|
|
|
|
{
|
|
|
|
count++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (count == _maxLength)
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end = ascii + unicode;
|
|
|
|
input_text = input_text.substr(0, end);
|
|
|
|
len = end;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
TextFieldTTF::insertText(input_text.c_str(), len);
|
|
|
|
|
|
|
|
// password
|
|
|
|
if (_passwordEnabled)
|
|
|
|
{
|
|
|
|
if (TextFieldTTF::getCharCount() > 0)
|
|
|
|
{
|
|
|
|
setPasswordText(getString().c_str());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void UICCTextField::deleteBackward()
|
|
|
|
{
|
|
|
|
TextFieldTTF::deleteBackward();
|
|
|
|
|
|
|
|
if (TextFieldTTF::getCharCount() > 0)
|
|
|
|
{
|
|
|
|
// password
|
|
|
|
if (_passwordEnabled)
|
|
|
|
{
|
|
|
|
setPasswordText(_inputText.c_str());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void UICCTextField::openIME()
|
|
|
|
{
|
|
|
|
TextFieldTTF::attachWithIME();
|
|
|
|
}
|
|
|
|
|
|
|
|
void UICCTextField::closeIME()
|
|
|
|
{
|
|
|
|
TextFieldTTF::detachWithIME();
|
|
|
|
}
|
|
|
|
|
|
|
|
void UICCTextField::setMaxLengthEnabled(bool enable)
|
|
|
|
{
|
|
|
|
_maxLengthEnabled = enable;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool UICCTextField::isMaxLengthEnabled()
|
|
|
|
{
|
|
|
|
return _maxLengthEnabled;
|
|
|
|
}
|
|
|
|
|
|
|
|
void UICCTextField::setMaxLength(int length)
|
|
|
|
{
|
|
|
|
_maxLength = length;
|
|
|
|
}
|
|
|
|
|
|
|
|
int UICCTextField::getMaxLength()
|
|
|
|
{
|
|
|
|
return _maxLength;
|
|
|
|
}
|
|
|
|
|
|
|
|
int UICCTextField::getCharCount()
|
|
|
|
{
|
|
|
|
return TextFieldTTF::getCharCount();
|
|
|
|
}
|
|
|
|
|
|
|
|
void UICCTextField::setPasswordEnabled(bool enable)
|
|
|
|
{
|
|
|
|
_passwordEnabled = enable;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool UICCTextField::isPasswordEnabled()
|
|
|
|
{
|
|
|
|
return _passwordEnabled;
|
|
|
|
}
|
|
|
|
|
2014-05-12 14:59:00 +08:00
|
|
|
void UICCTextField::setPasswordStyleText(const std::string& styleText)
|
2014-03-11 17:13:54 +08:00
|
|
|
{
|
2014-05-12 14:59:00 +08:00
|
|
|
if (styleText.length() > 1)
|
2014-03-11 17:13:54 +08:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
char value = styleText[0];
|
|
|
|
if (value < 33 || value > 126)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
_passwordStyleText = styleText;
|
|
|
|
}
|
|
|
|
|
2014-05-12 14:59:00 +08:00
|
|
|
void UICCTextField::setPasswordText(const std::string& text)
|
2014-03-11 17:13:54 +08:00
|
|
|
{
|
2014-03-28 18:54:06 +08:00
|
|
|
std::string tempStr = "";
|
2014-05-12 14:59:00 +08:00
|
|
|
int text_count = _calcCharCount(text.c_str());
|
2014-03-28 18:54:06 +08:00
|
|
|
int max = text_count;
|
|
|
|
|
|
|
|
if (_maxLengthEnabled)
|
|
|
|
{
|
|
|
|
if (text_count > _maxLength)
|
|
|
|
{
|
|
|
|
max = _maxLength;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int i = 0; i < max; ++i)
|
2014-03-11 17:13:54 +08:00
|
|
|
{
|
|
|
|
tempStr.append(_passwordStyleText);
|
|
|
|
}
|
2014-03-28 18:54:06 +08:00
|
|
|
|
|
|
|
Label::setString(tempStr);
|
2014-03-11 17:13:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void UICCTextField::setAttachWithIME(bool attach)
|
|
|
|
{
|
|
|
|
_attachWithIME = attach;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool UICCTextField::getAttachWithIME()
|
|
|
|
{
|
|
|
|
return _attachWithIME;
|
|
|
|
}
|
|
|
|
|
|
|
|
void UICCTextField::setDetachWithIME(bool detach)
|
|
|
|
{
|
|
|
|
_detachWithIME = detach;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool UICCTextField::getDetachWithIME()
|
|
|
|
{
|
|
|
|
return _detachWithIME;
|
|
|
|
}
|
|
|
|
|
|
|
|
void UICCTextField::setInsertText(bool insert)
|
|
|
|
{
|
|
|
|
_insertText = insert;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool UICCTextField::getInsertText()
|
|
|
|
{
|
|
|
|
return _insertText;
|
|
|
|
}
|
|
|
|
|
|
|
|
void UICCTextField::setDeleteBackward(bool deleteBackward)
|
|
|
|
{
|
|
|
|
_deleteBackward = deleteBackward;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool UICCTextField::getDeleteBackward()
|
|
|
|
{
|
|
|
|
return _deleteBackward;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const int TEXTFIELD_RENDERER_Z = (-1);
|
|
|
|
|
|
|
|
IMPLEMENT_CLASS_GUI_INFO(TextField)
|
|
|
|
|
|
|
|
|
|
|
|
TextField::TextField():
|
|
|
|
_textFieldRenderer(nullptr),
|
|
|
|
_touchWidth(0.0f),
|
|
|
|
_touchHeight(0.0f),
|
|
|
|
_useTouchArea(false),
|
|
|
|
_textFieldEventListener(nullptr),
|
|
|
|
_textFieldEventSelector(nullptr),
|
2014-05-12 11:29:22 +08:00
|
|
|
_eventCallback(nullptr),
|
2014-04-17 14:08:25 +08:00
|
|
|
_passwordStyleText(""),
|
|
|
|
_textFieldRendererAdaptDirty(true)
|
2014-03-11 17:13:54 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
TextField::~TextField()
|
|
|
|
{
|
|
|
|
_textFieldEventListener = nullptr;
|
|
|
|
_textFieldEventSelector = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
TextField* TextField::create()
|
|
|
|
{
|
|
|
|
TextField* widget = new TextField();
|
|
|
|
if (widget && widget->init())
|
|
|
|
{
|
|
|
|
widget->autorelease();
|
|
|
|
return widget;
|
|
|
|
}
|
|
|
|
CC_SAFE_DELETE(widget);
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2014-04-02 18:35:08 +08:00
|
|
|
TextField* TextField::create(const std::string &placeholder, const std::string &fontName, int fontSize)
|
|
|
|
{
|
|
|
|
TextField* widget = new TextField();
|
|
|
|
if (widget && widget->init())
|
|
|
|
{
|
|
|
|
widget->setPlaceHolder(placeholder);
|
|
|
|
widget->setFontName(fontName);
|
|
|
|
widget->setFontSize(fontSize);
|
|
|
|
widget->autorelease();
|
|
|
|
return widget;
|
|
|
|
}
|
|
|
|
CC_SAFE_DELETE(widget);
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2014-03-11 17:13:54 +08:00
|
|
|
bool TextField::init()
|
|
|
|
{
|
|
|
|
if (Widget::init())
|
|
|
|
{
|
|
|
|
setTouchEnabled(true);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void TextField::onEnter()
|
|
|
|
{
|
|
|
|
Widget::onEnter();
|
|
|
|
scheduleUpdate();
|
|
|
|
}
|
|
|
|
|
|
|
|
void TextField::initRenderer()
|
|
|
|
{
|
|
|
|
_textFieldRenderer = UICCTextField::create("input words here", "Thonburi", 20);
|
2014-03-24 15:25:44 +08:00
|
|
|
addProtectedChild(_textFieldRenderer, TEXTFIELD_RENDERER_Z, -1);
|
2014-03-11 17:13:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void TextField::setTouchSize(const Size &size)
|
|
|
|
{
|
|
|
|
_touchWidth = size.width;
|
|
|
|
_touchHeight = size.height;
|
|
|
|
}
|
|
|
|
|
|
|
|
void TextField::setTouchAreaEnabled(bool enable)
|
|
|
|
{
|
|
|
|
_useTouchArea = enable;
|
|
|
|
}
|
|
|
|
|
2014-05-15 01:07:09 +08:00
|
|
|
bool TextField::hitTest(const Vec2 &pt)
|
2014-03-11 17:13:54 +08:00
|
|
|
{
|
|
|
|
if (_useTouchArea)
|
|
|
|
{
|
2014-05-15 01:07:09 +08:00
|
|
|
Vec2 nsp = convertToNodeSpace(pt);
|
2014-03-11 17:13:54 +08:00
|
|
|
Rect bb = Rect(-_touchWidth * _anchorPoint.x, -_touchHeight * _anchorPoint.y, _touchWidth, _touchHeight);
|
|
|
|
if (nsp.x >= bb.origin.x && nsp.x <= bb.origin.x + bb.size.width && nsp.y >= bb.origin.y && nsp.y <= bb.origin.y + bb.size.height)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return Widget::hitTest(pt);
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
Size TextField::getTouchSize()
|
|
|
|
{
|
|
|
|
return Size(_touchWidth, _touchHeight);
|
|
|
|
}
|
|
|
|
|
|
|
|
void TextField::setText(const std::string& text)
|
|
|
|
{
|
|
|
|
std::string strText(text);
|
2014-03-28 18:54:06 +08:00
|
|
|
|
2014-03-11 17:13:54 +08:00
|
|
|
if (isMaxLengthEnabled())
|
|
|
|
{
|
2014-03-28 18:54:06 +08:00
|
|
|
int max = _textFieldRenderer->getMaxLength();
|
|
|
|
int text_count = _calcCharCount(text.c_str());
|
|
|
|
int total = text_count + _calcCharCount(getStringValue().c_str());
|
|
|
|
if (total > max)
|
|
|
|
{
|
|
|
|
int ascii = 0;
|
|
|
|
int unicode = 0;
|
|
|
|
int end = 0;
|
|
|
|
int count = 0;
|
|
|
|
|
|
|
|
for (int i = 0; i < total * 3; ++i)
|
|
|
|
{
|
|
|
|
char value = text[i];
|
|
|
|
|
|
|
|
if (value >= 0 && value <= 127) // ascii
|
|
|
|
{
|
|
|
|
ascii++;
|
|
|
|
count++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
unicode++;
|
|
|
|
if (unicode % 3 == 0)
|
|
|
|
{
|
|
|
|
count++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (count == max)
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end = ascii + unicode;
|
|
|
|
strText = strText.substr(0, end);
|
|
|
|
}
|
2014-03-11 17:13:54 +08:00
|
|
|
}
|
2014-03-28 18:54:06 +08:00
|
|
|
|
2014-03-11 17:13:54 +08:00
|
|
|
const char* content = strText.c_str();
|
|
|
|
if (isPasswordEnabled())
|
|
|
|
{
|
|
|
|
_textFieldRenderer->setPasswordText(content);
|
|
|
|
_textFieldRenderer->setString("");
|
2014-03-28 18:54:06 +08:00
|
|
|
_textFieldRenderer->insertText(content, strlen(content));
|
2014-03-11 17:13:54 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
_textFieldRenderer->setString(content);
|
|
|
|
}
|
2014-04-17 14:08:25 +08:00
|
|
|
_textFieldRendererAdaptDirty = true;
|
|
|
|
updateContentSizeWithTextureSize(_textFieldRenderer->getContentSize());
|
2014-03-11 17:13:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void TextField::setPlaceHolder(const std::string& value)
|
|
|
|
{
|
|
|
|
_textFieldRenderer->setPlaceHolder(value);
|
2014-04-17 14:08:25 +08:00
|
|
|
_textFieldRendererAdaptDirty = true;
|
|
|
|
updateContentSizeWithTextureSize(_textFieldRenderer->getContentSize());
|
2014-03-11 17:13:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
const std::string& TextField::getPlaceHolder()
|
|
|
|
{
|
|
|
|
return _textFieldRenderer->getPlaceHolder();
|
|
|
|
}
|
|
|
|
|
|
|
|
void TextField::setFontSize(int size)
|
|
|
|
{
|
2014-04-09 23:31:05 +08:00
|
|
|
_textFieldRenderer->setSystemFontSize(size);
|
2014-04-17 14:08:25 +08:00
|
|
|
_textFieldRendererAdaptDirty = true;
|
|
|
|
updateContentSizeWithTextureSize(_textFieldRenderer->getContentSize());
|
2014-03-11 17:13:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int TextField::getFontSize()
|
|
|
|
{
|
2014-04-09 23:31:05 +08:00
|
|
|
return _textFieldRenderer->getSystemFontSize();
|
2014-03-11 17:13:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void TextField::setFontName(const std::string& name)
|
|
|
|
{
|
2014-04-10 10:23:00 +08:00
|
|
|
_textFieldRenderer->setSystemFontName(name);
|
2014-04-17 14:08:25 +08:00
|
|
|
_textFieldRendererAdaptDirty = true;
|
|
|
|
updateContentSizeWithTextureSize(_textFieldRenderer->getContentSize());
|
2014-03-11 17:13:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
const std::string& TextField::getFontName()
|
|
|
|
{
|
2014-04-10 10:23:00 +08:00
|
|
|
return _textFieldRenderer->getSystemFontName();
|
2014-03-11 17:13:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void TextField::didNotSelectSelf()
|
|
|
|
{
|
|
|
|
_textFieldRenderer->detachWithIME();
|
|
|
|
}
|
|
|
|
|
|
|
|
const std::string& TextField::getStringValue()
|
|
|
|
{
|
|
|
|
return _textFieldRenderer->getString();
|
|
|
|
}
|
2014-06-05 17:59:54 +08:00
|
|
|
|
|
|
|
int TextField::getStringLength() {
|
|
|
|
return _textFieldRenderer->getStringLength();
|
|
|
|
}
|
|
|
|
|
2014-03-11 17:13:54 +08:00
|
|
|
|
|
|
|
bool TextField::onTouchBegan(Touch *touch, Event *unusedEvent)
|
|
|
|
{
|
|
|
|
bool pass = Widget::onTouchBegan(touch, unusedEvent);
|
|
|
|
if (_hitted)
|
|
|
|
{
|
|
|
|
_textFieldRenderer->attachWithIME();
|
|
|
|
}
|
|
|
|
return pass;
|
|
|
|
}
|
|
|
|
|
|
|
|
void TextField::setMaxLengthEnabled(bool enable)
|
|
|
|
{
|
|
|
|
_textFieldRenderer->setMaxLengthEnabled(enable);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool TextField::isMaxLengthEnabled()
|
|
|
|
{
|
|
|
|
return _textFieldRenderer->isMaxLengthEnabled();
|
|
|
|
}
|
|
|
|
|
|
|
|
void TextField::setMaxLength(int length)
|
|
|
|
{
|
|
|
|
_textFieldRenderer->setMaxLength(length);
|
|
|
|
|
|
|
|
setText(getStringValue());
|
|
|
|
}
|
|
|
|
|
|
|
|
int TextField::getMaxLength()
|
|
|
|
{
|
|
|
|
return _textFieldRenderer->getMaxLength();
|
|
|
|
}
|
|
|
|
|
|
|
|
void TextField::setPasswordEnabled(bool enable)
|
|
|
|
{
|
|
|
|
_textFieldRenderer->setPasswordEnabled(enable);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool TextField::isPasswordEnabled()
|
|
|
|
{
|
|
|
|
return _textFieldRenderer->isPasswordEnabled();
|
|
|
|
}
|
|
|
|
|
|
|
|
void TextField::setPasswordStyleText(const char *styleText)
|
|
|
|
{
|
|
|
|
_textFieldRenderer->setPasswordStyleText(styleText);
|
|
|
|
|
|
|
|
_passwordStyleText = styleText;
|
|
|
|
|
|
|
|
setText(getStringValue());
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* TextField::getPasswordStyleText()
|
|
|
|
{
|
|
|
|
return _passwordStyleText.c_str();
|
|
|
|
}
|
|
|
|
|
|
|
|
void TextField::update(float dt)
|
|
|
|
{
|
|
|
|
if (getAttachWithIME())
|
|
|
|
{
|
|
|
|
attachWithIMEEvent();
|
|
|
|
setAttachWithIME(false);
|
|
|
|
}
|
|
|
|
if (getDetachWithIME())
|
|
|
|
{
|
|
|
|
detachWithIMEEvent();
|
|
|
|
setDetachWithIME(false);
|
|
|
|
}
|
|
|
|
if (getInsertText())
|
|
|
|
{
|
|
|
|
insertTextEvent();
|
|
|
|
setInsertText(false);
|
|
|
|
|
2014-04-17 14:08:25 +08:00
|
|
|
_textFieldRendererAdaptDirty = true;
|
|
|
|
updateContentSizeWithTextureSize(_textFieldRenderer->getContentSize());
|
2014-03-11 17:13:54 +08:00
|
|
|
}
|
|
|
|
if (getDeleteBackward())
|
|
|
|
{
|
|
|
|
deleteBackwardEvent();
|
|
|
|
setDeleteBackward(false);
|
|
|
|
|
2014-04-17 14:08:25 +08:00
|
|
|
_textFieldRendererAdaptDirty = true;
|
|
|
|
updateContentSizeWithTextureSize(_textFieldRenderer->getContentSize());
|
2014-03-11 17:13:54 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool TextField::getAttachWithIME()
|
|
|
|
{
|
|
|
|
return _textFieldRenderer->getAttachWithIME();
|
|
|
|
}
|
|
|
|
|
|
|
|
void TextField::setAttachWithIME(bool attach)
|
|
|
|
{
|
|
|
|
_textFieldRenderer->setAttachWithIME(attach);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool TextField::getDetachWithIME()
|
|
|
|
{
|
|
|
|
return _textFieldRenderer->getDetachWithIME();
|
|
|
|
}
|
|
|
|
|
|
|
|
void TextField::setDetachWithIME(bool detach)
|
|
|
|
{
|
|
|
|
_textFieldRenderer->setDetachWithIME(detach);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool TextField::getInsertText()
|
|
|
|
{
|
|
|
|
return _textFieldRenderer->getInsertText();
|
|
|
|
}
|
|
|
|
|
|
|
|
void TextField::setInsertText(bool insertText)
|
|
|
|
{
|
|
|
|
_textFieldRenderer->setInsertText(insertText);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool TextField::getDeleteBackward()
|
|
|
|
{
|
|
|
|
return _textFieldRenderer->getDeleteBackward();
|
|
|
|
}
|
|
|
|
|
|
|
|
void TextField::setDeleteBackward(bool deleteBackward)
|
|
|
|
{
|
|
|
|
_textFieldRenderer->setDeleteBackward(deleteBackward);
|
|
|
|
}
|
|
|
|
|
|
|
|
void TextField::attachWithIMEEvent()
|
|
|
|
{
|
|
|
|
if (_textFieldEventListener && _textFieldEventSelector)
|
|
|
|
{
|
|
|
|
(_textFieldEventListener->*_textFieldEventSelector)(this, TEXTFIELD_EVENT_ATTACH_WITH_IME);
|
|
|
|
}
|
2014-05-12 11:29:22 +08:00
|
|
|
if (_eventCallback) {
|
|
|
|
_eventCallback(this, EventType::ATTACH_WITH_IME);
|
|
|
|
}
|
2014-03-11 17:13:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void TextField::detachWithIMEEvent()
|
|
|
|
{
|
|
|
|
if (_textFieldEventListener && _textFieldEventSelector)
|
|
|
|
{
|
|
|
|
(_textFieldEventListener->*_textFieldEventSelector)(this, TEXTFIELD_EVENT_DETACH_WITH_IME);
|
|
|
|
}
|
2014-05-12 11:29:22 +08:00
|
|
|
if (_eventCallback) {
|
|
|
|
_eventCallback(this, EventType::DETACH_WITH_IME);
|
|
|
|
}
|
2014-03-11 17:13:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void TextField::insertTextEvent()
|
|
|
|
{
|
|
|
|
if (_textFieldEventListener && _textFieldEventSelector)
|
|
|
|
{
|
|
|
|
(_textFieldEventListener->*_textFieldEventSelector)(this, TEXTFIELD_EVENT_INSERT_TEXT);
|
|
|
|
}
|
2014-05-12 11:29:22 +08:00
|
|
|
if (_eventCallback) {
|
|
|
|
_eventCallback(this, EventType::INSERT_TEXT);
|
|
|
|
}
|
2014-03-11 17:13:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void TextField::deleteBackwardEvent()
|
|
|
|
{
|
|
|
|
if (_textFieldEventListener && _textFieldEventSelector)
|
|
|
|
{
|
|
|
|
(_textFieldEventListener->*_textFieldEventSelector)(this, TEXTFIELD_EVENT_DELETE_BACKWARD);
|
|
|
|
}
|
2014-05-12 11:29:22 +08:00
|
|
|
if (_eventCallback) {
|
|
|
|
_eventCallback(this, EventType::DELETE_BACKWARD);
|
|
|
|
}
|
2014-03-11 17:13:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void TextField::addEventListenerTextField(Ref *target, SEL_TextFieldEvent selecor)
|
|
|
|
{
|
|
|
|
_textFieldEventListener = target;
|
|
|
|
_textFieldEventSelector = selecor;
|
|
|
|
}
|
2014-05-12 11:29:22 +08:00
|
|
|
|
2014-05-14 16:14:28 +08:00
|
|
|
void TextField::addEventListener(const ccTextFieldCallback& callback)
|
2014-05-12 11:29:22 +08:00
|
|
|
{
|
|
|
|
_eventCallback = callback;
|
|
|
|
}
|
2014-03-11 17:13:54 +08:00
|
|
|
|
|
|
|
void TextField::onSizeChanged()
|
|
|
|
{
|
|
|
|
Widget::onSizeChanged();
|
2014-04-17 14:08:25 +08:00
|
|
|
_textFieldRendererAdaptDirty = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void TextField::adaptRenderers()
|
|
|
|
{
|
|
|
|
if (_textFieldRendererAdaptDirty)
|
|
|
|
{
|
|
|
|
textfieldRendererScaleChangedWithSize();
|
|
|
|
_textFieldRendererAdaptDirty = false;
|
|
|
|
}
|
2014-03-11 17:13:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void TextField::textfieldRendererScaleChangedWithSize()
|
|
|
|
{
|
|
|
|
if (_ignoreSize)
|
|
|
|
{
|
2014-03-14 21:06:40 +08:00
|
|
|
_textFieldRenderer->setDimensions(0,0);
|
2014-03-11 17:13:54 +08:00
|
|
|
_textFieldRenderer->setScale(1.0f);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-03-14 21:06:40 +08:00
|
|
|
_textFieldRenderer->setDimensions(_size.width,_size.height);
|
2014-03-11 17:13:54 +08:00
|
|
|
Size textureSize = getContentSize();
|
|
|
|
if (textureSize.width <= 0.0f || textureSize.height <= 0.0f)
|
|
|
|
{
|
|
|
|
_textFieldRenderer->setScale(1.0f);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
float scaleX = _size.width / textureSize.width;
|
|
|
|
float scaleY = _size.height / textureSize.height;
|
|
|
|
_textFieldRenderer->setScaleX(scaleX);
|
|
|
|
_textFieldRenderer->setScaleY(scaleY);
|
|
|
|
}
|
2014-04-17 14:08:25 +08:00
|
|
|
_textFieldRenderer->setPosition(_contentSize.width / 2.0f, _contentSize.height / 2.0f);
|
2014-03-11 17:13:54 +08:00
|
|
|
}
|
|
|
|
|
2014-04-17 14:08:25 +08:00
|
|
|
const Size& TextField::getVirtualRendererSize() const
|
2014-03-11 17:13:54 +08:00
|
|
|
{
|
|
|
|
return _textFieldRenderer->getContentSize();
|
|
|
|
}
|
|
|
|
|
|
|
|
Node* TextField::getVirtualRenderer()
|
|
|
|
{
|
|
|
|
return _textFieldRenderer;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string TextField::getDescription() const
|
|
|
|
{
|
|
|
|
return "TextField";
|
|
|
|
}
|
|
|
|
|
|
|
|
void TextField::updateTextureColor()
|
|
|
|
{
|
|
|
|
updateColorToRenderer(_textFieldRenderer);
|
|
|
|
}
|
|
|
|
|
|
|
|
void TextField::updateTextureOpacity()
|
|
|
|
{
|
|
|
|
updateOpacityToRenderer(_textFieldRenderer);
|
|
|
|
}
|
|
|
|
|
|
|
|
void TextField::updateTextureRGBA()
|
|
|
|
{
|
|
|
|
updateRGBAToRenderer(_textFieldRenderer);
|
|
|
|
}
|
|
|
|
|
|
|
|
void TextField::attachWithIME()
|
|
|
|
{
|
|
|
|
_textFieldRenderer->attachWithIME();
|
|
|
|
}
|
|
|
|
|
|
|
|
Widget* TextField::createCloneInstance()
|
|
|
|
{
|
|
|
|
return TextField::create();
|
|
|
|
}
|
|
|
|
|
|
|
|
void TextField::copySpecialProperties(Widget *widget)
|
|
|
|
{
|
|
|
|
TextField* textField = dynamic_cast<TextField*>(widget);
|
|
|
|
if (textField)
|
|
|
|
{
|
|
|
|
setText(textField->_textFieldRenderer->getString());
|
|
|
|
setPlaceHolder(textField->getStringValue());
|
2014-04-09 23:31:05 +08:00
|
|
|
setFontSize(textField->_textFieldRenderer->getSystemFontSize());
|
2014-04-10 10:23:00 +08:00
|
|
|
setFontName(textField->_textFieldRenderer->getSystemFontName());
|
2014-03-11 17:13:54 +08:00
|
|
|
setMaxLengthEnabled(textField->isMaxLengthEnabled());
|
|
|
|
setMaxLength(textField->getMaxLength());
|
|
|
|
setPasswordEnabled(textField->isPasswordEnabled());
|
|
|
|
setPasswordStyleText(textField->_passwordStyleText.c_str());
|
|
|
|
setAttachWithIME(textField->getAttachWithIME());
|
|
|
|
setDetachWithIME(textField->getDetachWithIME());
|
|
|
|
setInsertText(textField->getInsertText());
|
|
|
|
setDeleteBackward(textField->getDeleteBackward());
|
2014-05-23 15:03:46 +08:00
|
|
|
_eventCallback = textField->_eventCallback;
|
|
|
|
_textFieldEventListener = textField->_textFieldEventListener;
|
|
|
|
_textFieldEventSelector = textField->_textFieldEventSelector;
|
2014-03-11 17:13:54 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void TextField::setTextAreaSize(const Size &size)
|
|
|
|
{
|
2014-03-14 21:06:40 +08:00
|
|
|
_textFieldRenderer->setDimensions(size.width,size.height);
|
2014-03-11 17:13:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void TextField::setTextHorizontalAlignment(TextHAlignment alignment)
|
|
|
|
{
|
|
|
|
_textFieldRenderer->setHorizontalAlignment(alignment);
|
|
|
|
}
|
|
|
|
|
|
|
|
void TextField::setTextVerticalAlignment(TextVAlignment alignment)
|
|
|
|
{
|
|
|
|
_textFieldRenderer->setVerticalAlignment(alignment);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_CC_END
|