2014-08-19 10:28:24 +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 "UIEditBoxTest.h"
|
|
|
|
#include "testResource.h"
|
|
|
|
|
2015-04-09 08:37:30 +08:00
|
|
|
USING_NS_CC;
|
|
|
|
USING_NS_CC_EXT;
|
|
|
|
using namespace cocos2d::ui;
|
|
|
|
|
2015-04-03 14:31:03 +08:00
|
|
|
UIEditBoxTests::UIEditBoxTests()
|
2014-08-19 10:28:24 +08:00
|
|
|
{
|
2015-04-03 14:31:03 +08:00
|
|
|
ADD_TEST_CASE(UIEditBoxTest);
|
2014-08-19 10:28:24 +08:00
|
|
|
}
|
|
|
|
|
2015-04-03 14:31:03 +08:00
|
|
|
// UIEditBoxTest
|
2014-08-19 10:28:24 +08:00
|
|
|
|
|
|
|
bool UIEditBoxTest::init()
|
|
|
|
{
|
|
|
|
if (UIScene::init())
|
|
|
|
{
|
|
|
|
auto glview = Director::getInstance()->getOpenGLView();
|
|
|
|
auto visibleOrigin = glview->getVisibleOrigin();
|
|
|
|
auto visibleSize = glview->getVisibleSize();
|
|
|
|
|
|
|
|
auto pBg = Sprite::create("Images/HelloWorld.png");
|
|
|
|
pBg->setPosition(Vec2(visibleOrigin.x+visibleSize.width/2, visibleOrigin.y+visibleSize.height/2));
|
|
|
|
addChild(pBg);
|
|
|
|
|
|
|
|
_TTFShowEditReturn = Label::createWithSystemFont("No edit control return!", "Arial", 30);
|
|
|
|
_TTFShowEditReturn->setPosition(Vec2(visibleOrigin.x+visibleSize.width/2, visibleOrigin.y + visibleSize.height - 50));
|
|
|
|
addChild(_TTFShowEditReturn);
|
|
|
|
|
|
|
|
|
2015-09-02 11:04:50 +08:00
|
|
|
auto editBoxSize = Size(visibleSize.width - 100, visibleSize.height * 0.1);
|
2014-08-19 10:28:24 +08:00
|
|
|
|
|
|
|
// top
|
|
|
|
std::string pNormalSprite = "extensions/green_edit.png";
|
2015-09-14 11:07:51 +08:00
|
|
|
_editName = ui::EditBox::create(editBoxSize + Size(0,40), ui::Scale9Sprite::create(pNormalSprite));
|
|
|
|
_editName->setPosition(Vec2(visibleOrigin.x+visibleSize.width/2-50, visibleOrigin.y+visibleSize.height*3/4));
|
2014-08-19 10:28:24 +08:00
|
|
|
_editName->setFontColor(Color3B::RED);
|
|
|
|
_editName->setPlaceHolder("Name:");
|
|
|
|
_editName->setPlaceholderFontColor(Color3B::WHITE);
|
|
|
|
_editName->setMaxLength(8);
|
2015-09-02 11:04:50 +08:00
|
|
|
_editName->setFontSize(editBoxSize.height/2);
|
2015-08-07 17:27:15 +08:00
|
|
|
_editName->setText("v👐👊💝");
|
2014-08-19 10:28:24 +08:00
|
|
|
_editName->setReturnType(ui::EditBox::KeyboardReturnType::DONE);
|
|
|
|
_editName->setDelegate(this);
|
|
|
|
addChild(_editName);
|
2015-09-14 11:07:51 +08:00
|
|
|
|
|
|
|
Button* button = Button::create("cocosui/animationbuttonnormal.png",
|
|
|
|
"cocosui/animationbuttonpressed.png");
|
|
|
|
auto buttonSize = button->getContentSize();
|
|
|
|
button->setTitleText("Single Line");
|
|
|
|
button->setPosition(_editName->getPosition() + Vec2(editBoxSize.width/2 + buttonSize.width/2, 0 ));
|
|
|
|
button->addClickEventListener([=](Ref* ref){
|
|
|
|
_editName->setInputMode(ui::EditBox::InputMode::SINGLE_LINE);
|
|
|
|
});
|
|
|
|
addChild(button);
|
|
|
|
|
2014-08-19 10:28:24 +08:00
|
|
|
// middle
|
|
|
|
_editPassword = ui::EditBox::create(editBoxSize, "extensions/orange_edit.png");
|
2015-09-14 11:07:51 +08:00
|
|
|
_editPassword->setPosition(Vec2(visibleOrigin.x+visibleSize.width/2-50, visibleOrigin.y+visibleSize.height/2));
|
2014-08-19 10:28:24 +08:00
|
|
|
_editPassword->setFontColor(Color3B::GREEN);
|
|
|
|
_editPassword->setPlaceHolder("Password:");
|
|
|
|
_editPassword->setMaxLength(6);
|
|
|
|
_editPassword->setInputFlag(ui::EditBox::InputFlag::PASSWORD);
|
|
|
|
_editPassword->setInputMode(ui::EditBox::InputMode::SINGLE_LINE);
|
2015-09-02 11:04:50 +08:00
|
|
|
_editPassword->setFontSize(editBoxSize.height/2);
|
2014-08-19 10:28:24 +08:00
|
|
|
_editPassword->setDelegate(this);
|
|
|
|
addChild(_editPassword);
|
|
|
|
|
2015-09-14 11:07:51 +08:00
|
|
|
auto buttonPassword = (ui::Button*)button->clone();
|
|
|
|
buttonPassword->setTitleText("Multiline");
|
|
|
|
buttonPassword->setPosition(_editPassword->getPosition() + Vec2(editBoxSize.width/2 + buttonSize.width/2, 0 ));
|
|
|
|
buttonPassword->addClickEventListener([=](Ref* ref){
|
|
|
|
_editPassword->setInputMode(ui::EditBox::InputMode::ANY);
|
|
|
|
});
|
|
|
|
addChild(buttonPassword);
|
|
|
|
|
2014-08-19 10:28:24 +08:00
|
|
|
// bottom
|
2015-11-17 00:53:23 +08:00
|
|
|
// Add an intermediate Node to test scaling and content size relative to world
|
|
|
|
_editEmailParent = Node::create();
|
2016-02-04 14:21:07 +08:00
|
|
|
// _editEmailParent->setScale(0.5);
|
2015-11-17 00:53:23 +08:00
|
|
|
_editEmailParent->setPosition(Vec2(visibleOrigin.x+visibleSize.width/2-50, visibleOrigin.y+visibleSize.height/4));
|
|
|
|
addChild(_editEmailParent);
|
|
|
|
|
2015-08-07 17:27:15 +08:00
|
|
|
auto bottomButtonSize = Size(editBoxSize.width, editBoxSize.height + 10);
|
|
|
|
_editEmail = ui::EditBox::create(bottomButtonSize, "extensions/yellow_edit.png");
|
2014-08-19 10:28:24 +08:00
|
|
|
_editEmail->setPlaceHolder("Email:");
|
|
|
|
_editEmail->setInputMode(ui::EditBox::InputMode::EMAIL_ADDRESS);
|
|
|
|
_editEmail->setDelegate(this);
|
2015-11-17 00:53:23 +08:00
|
|
|
_editEmailParent->addChild(_editEmail);
|
|
|
|
//It is required to use setFontSize and setContentSize after adding it to the hierarchy, so that native EditBox get the right size
|
|
|
|
_editEmail->setFontSize(30);
|
|
|
|
_editEmail->setContentSize(bottomButtonSize);
|
2014-08-19 10:28:24 +08:00
|
|
|
|
2015-09-14 11:07:51 +08:00
|
|
|
auto buttonEmail = (ui::Button*)button->clone();
|
|
|
|
buttonEmail->setTitleText("Multiline");
|
2015-11-17 00:53:23 +08:00
|
|
|
buttonEmail->setPosition(_editEmailParent->getPosition() + Vec2(editBoxSize.width/2 + buttonSize.width/2, 0 ));
|
2015-09-14 11:07:51 +08:00
|
|
|
buttonEmail->addClickEventListener([=](Ref* ref){
|
|
|
|
_editEmail->setInputMode(ui::EditBox::InputMode::ANY);
|
|
|
|
});
|
|
|
|
addChild(buttonEmail);
|
|
|
|
|
2014-08-19 10:28:24 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void UIEditBoxTest::editBoxEditingDidBegin(cocos2d::ui::EditBox* editBox)
|
|
|
|
{
|
|
|
|
log("editBox %p DidBegin !", editBox);
|
|
|
|
}
|
|
|
|
|
|
|
|
void UIEditBoxTest::editBoxEditingDidEnd(cocos2d::ui::EditBox* editBox)
|
|
|
|
{
|
|
|
|
log("editBox %p DidEnd !", editBox);
|
|
|
|
}
|
|
|
|
|
|
|
|
void UIEditBoxTest::editBoxTextChanged(cocos2d::ui::EditBox* editBox, const std::string& text)
|
|
|
|
{
|
|
|
|
log("editBox %p TextChanged, text: %s ", editBox, text.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
void UIEditBoxTest::editBoxReturn(ui::EditBox* editBox)
|
|
|
|
{
|
|
|
|
log("editBox %p was returned !",editBox);
|
|
|
|
|
|
|
|
if (_editName == editBox)
|
|
|
|
{
|
|
|
|
_TTFShowEditReturn->setString("Name EditBox return !");
|
|
|
|
}
|
|
|
|
else if (_editPassword == editBox)
|
|
|
|
{
|
|
|
|
_TTFShowEditReturn->setString("Password EditBox return !");
|
|
|
|
}
|
|
|
|
else if (_editEmail == editBox)
|
|
|
|
{
|
|
|
|
_TTFShowEditReturn->setString("Email EditBox return !");
|
|
|
|
}
|
|
|
|
}
|