2014-03-04 16:51:35 +08:00
|
|
|
|
|
|
|
|
|
|
|
#include "UITextFieldTest_Editor.h"
|
|
|
|
|
|
|
|
|
|
|
|
// UITextFieldTest_Editor
|
|
|
|
|
|
|
|
UITextFieldTest_Editor::UITextFieldTest_Editor()
|
2014-04-09 22:53:59 +08:00
|
|
|
: _displayValueLabel(nullptr)
|
2014-03-04 16:51:35 +08:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
UITextFieldTest_Editor::~UITextFieldTest_Editor()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
bool UITextFieldTest_Editor::init()
|
|
|
|
{
|
|
|
|
if (UIScene_Editor::init())
|
|
|
|
{
|
2014-03-11 17:13:54 +08:00
|
|
|
_layout = static_cast<Layout*>(cocostudio::GUIReader::getInstance()->widgetFromJsonFile("cocosui/UIEditorTest/UITextField_Editor/ui_textfield_editor_1.json"));
|
2014-03-04 16:51:35 +08:00
|
|
|
_touchGroup->addChild(_layout);
|
|
|
|
Size screenSize = CCDirector::getInstance()->getWinSize();
|
|
|
|
Size rootSize = _layout->getSize();
|
2014-04-15 18:23:40 +08:00
|
|
|
_touchGroup->setPosition(Vector2((screenSize.width - rootSize.width) / 2,
|
2014-03-04 16:51:35 +08:00
|
|
|
(screenSize.height - rootSize.height) / 2));
|
|
|
|
|
|
|
|
Layout* root = static_cast<Layout*>(_layout->getChildByName("root_Panel"));
|
|
|
|
|
|
|
|
Text* back_label = static_cast<Text*>(Helper::seekWidgetByName(root, "back"));
|
2014-05-09 14:30:39 +08:00
|
|
|
back_label->addTouchEventListener(CC_CALLBACK_2(UIScene_Editor::toGUIEditorTestScene, this));
|
2014-03-04 16:51:35 +08:00
|
|
|
|
|
|
|
_sceneTitle = static_cast<Text*>(Helper::seekWidgetByName(root, "UItest"));
|
|
|
|
|
|
|
|
TextField* textField_normal = static_cast<TextField*>(Helper::seekWidgetByName(root, "TextField_1109"));
|
2014-05-12 11:29:22 +08:00
|
|
|
textField_normal->addEventListener(CC_CALLBACK_2(UITextFieldTest_Editor::textFieldEvent, this));
|
2014-03-04 16:51:35 +08:00
|
|
|
|
|
|
|
TextField* textField_max_character = static_cast<TextField*>(Helper::seekWidgetByName(root, "TextField_1110"));
|
2014-05-12 11:29:22 +08:00
|
|
|
textField_max_character->addEventListener(CC_CALLBACK_2(UITextFieldTest_Editor::textFieldEvent, this));
|
2014-03-04 16:51:35 +08:00
|
|
|
|
|
|
|
TextField* textField_password = static_cast<TextField*>(Helper::seekWidgetByName(root, "TextField_1107"));
|
2014-05-12 11:29:22 +08:00
|
|
|
textField_password->addEventListener(CC_CALLBACK_2(UITextFieldTest_Editor::textFieldEvent, this));
|
2014-03-04 16:51:35 +08:00
|
|
|
|
|
|
|
_displayValueLabel = Text::create();
|
2014-03-26 23:33:58 +08:00
|
|
|
_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-04-15 18:23:40 +08:00
|
|
|
_displayValueLabel->setPosition(Vector2(_layout->getSize().width / 2,
|
2014-03-04 16:51:35 +08:00
|
|
|
_layout->getSize().height - _displayValueLabel->getSize().height * 1.75f));
|
|
|
|
_touchGroup->addChild(_displayValueLabel);
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|