axmol/tests/cpp-tests/Classes/UITest/CocoStudioGUITest/UITextFieldTest/UITextFieldTest_Editor.cpp

86 lines
2.8 KiB
C++
Raw Normal View History

2014-03-04 16:51:35 +08:00
#include "UITextFieldTest_Editor.h"
2015-04-09 12:23:47 +08:00
USING_NS_CC;
using namespace cocos2d::ui;
UITextFieldEditorTests::UITextFieldEditorTests()
{
ADD_TEST_CASE(UITextFieldTest_Editor);
}
2014-03-04 16:51:35 +08:00
// UITextFieldTest_Editor
UITextFieldTest_Editor::UITextFieldTest_Editor()
: _displayValueLabel(nullptr)
2014-03-04 16:51:35 +08:00
{
}
UITextFieldTest_Editor::~UITextFieldTest_Editor()
{
}
2014-07-01 15:47:40 +08:00
void UITextFieldTest_Editor::configureGUIScene()
{
Layout* root = static_cast<Layout*>(_layout->getChildByName("root_Panel"));
TextField* textField_normal = static_cast<TextField*>(Helper::seekWidgetByName(root, "TextField_1109"));
textField_normal->addEventListener(CC_CALLBACK_2(UITextFieldTest_Editor::textFieldEvent, this));
TextField* textField_max_character = static_cast<TextField*>(Helper::seekWidgetByName(root, "TextField_1110"));
textField_max_character->addEventListener(CC_CALLBACK_2(UITextFieldTest_Editor::textFieldEvent, this));
TextField* textField_password = static_cast<TextField*>(Helper::seekWidgetByName(root, "TextField_1107"));
textField_password->addEventListener(CC_CALLBACK_2(UITextFieldTest_Editor::textFieldEvent, this));
}
bool UITextFieldTest_Editor::init()
{
if (UIScene_Editor::init())
{
2014-10-18 14:48:27 +08:00
Node* node = CSLoader::createNode("cocosui/UIEditorTest/UITextField/crossplatform_UITextField_Editor_1.csb");
Node* child = node->getChildByTag(5);
child->removeFromParent();
_layout = static_cast<Layout*>(child);
2014-07-01 15:47:40 +08:00
_touchGroup->addChild(_layout);
2014-07-01 15:47:40 +08:00
this->configureGUIScene();
2014-03-04 16:51:35 +08:00
_displayValueLabel = Text::create();
_displayValueLabel->setFontName("fonts/Marker Felt.ttf");
2014-03-04 16:51:35 +08:00
_displayValueLabel->setFontSize(30);
2014-05-14 15:26:14 +08:00
_displayValueLabel->setString("No event");
2014-06-20 11:18:53 +08:00
_displayValueLabel->setPosition(Vec2(_layout->getContentSize().width / 2,
_layout->getContentSize().height - _displayValueLabel->getContentSize().height * 1.75f));
2014-07-01 15:47:40 +08:00
_touchGroup->addChild(_displayValueLabel, 20);
2014-03-04 16:51:35 +08:00
return true;
}
return false;
}
2014-05-12 11:29:22 +08:00
void UITextFieldTest_Editor::textFieldEvent(Ref *pSender, TextField::EventType type)
2014-03-04 16:51:35 +08:00
{
switch (type)
{
2014-05-12 11:29:22 +08:00
case TextField::EventType::ATTACH_WITH_IME:
2014-05-14 15:26:14 +08:00
_displayValueLabel->setString("attach with IME");
2014-03-04 16:51:35 +08:00
break;
2014-05-12 11:29:22 +08:00
case TextField::EventType::DETACH_WITH_IME:
2014-05-14 15:26:14 +08:00
_displayValueLabel->setString("detach with IME");
2014-03-04 16:51:35 +08:00
break;
2014-05-12 11:29:22 +08:00
case TextField::EventType::INSERT_TEXT:
2014-05-14 15:26:14 +08:00
_displayValueLabel->setString("insert words");
2014-03-04 16:51:35 +08:00
break;
2014-05-12 11:29:22 +08:00
case TextField::EventType::DELETE_BACKWARD:
2014-05-14 15:26:14 +08:00
_displayValueLabel->setString("delete word");
2014-03-04 16:51:35 +08:00
break;
default:
break;
}
}