2014-03-04 16:51:35 +08:00
|
|
|
|
|
|
|
|
|
|
|
#include "UITextTest_Editor.h"
|
2014-03-11 17:13:54 +08:00
|
|
|
#include "ui/CocosGUI.h"
|
2014-03-04 16:51:35 +08:00
|
|
|
|
|
|
|
|
|
|
|
// UITextTest_Editor
|
|
|
|
using namespace ui;
|
|
|
|
|
2014-07-01 15:47:40 +08:00
|
|
|
void UITextTest_Editor::switchLoadMethod(cocos2d::Ref *pSender)
|
2014-03-04 16:51:35 +08:00
|
|
|
{
|
2014-07-01 15:47:40 +08:00
|
|
|
MenuItemToggle *item = (MenuItemToggle*)pSender;
|
|
|
|
|
2014-10-10 10:44:16 +08:00
|
|
|
switch (item->getSelectedIndex())
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
{
|
|
|
|
_layout->removeFromParentAndCleanup(true);
|
|
|
|
|
|
|
|
_layout = static_cast<Layout*>(cocostudio::GUIReader::getInstance()->widgetFromJsonFile("cocosui/UIEditorTest/UILabel_Editor/windows_ui_label_editor_1.json"));
|
|
|
|
|
|
|
|
_touchGroup->addChild(_layout);
|
|
|
|
|
|
|
|
this->configureGUIScene();
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case 1:
|
|
|
|
{
|
|
|
|
_layout->removeFromParentAndCleanup(true);
|
|
|
|
|
|
|
|
_layout = static_cast<Layout*>(cocostudio::GUIReader::getInstance()->widgetFromBinaryFile("cocosui/UIEditorTest/UILabel_Editor/windows_ui_label_editor_1.csb"));
|
|
|
|
|
|
|
|
_touchGroup->addChild(_layout);
|
|
|
|
|
|
|
|
this->configureGUIScene();
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case 2:
|
|
|
|
{
|
|
|
|
_layout->removeFromParentAndCleanup(true);
|
|
|
|
|
|
|
|
Node* node = CSLoader::createNode("cocosui/UIEditorTest/UILabel_Editor/crossplatform_UILabel_Editor_1.ExportJson");
|
|
|
|
Node* child = node->getChildByTag(5);
|
|
|
|
child->removeFromParent();
|
|
|
|
_layout = static_cast<Layout*>(child);
|
|
|
|
_touchGroup->addChild(_layout);
|
|
|
|
|
|
|
|
this->configureGUIScene();
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case 3:
|
|
|
|
{
|
|
|
|
_layout->removeFromParentAndCleanup(true);
|
|
|
|
|
|
|
|
Node* node = CSLoader::createNode("cocosui/UIEditorTest/UILabel_Editor/crossplatform_UILabel_Editor_1.csb");
|
|
|
|
Node* child = node->getChildByTag(5);
|
|
|
|
child->removeFromParent();
|
|
|
|
_layout = static_cast<Layout*>(child);
|
|
|
|
_touchGroup->addChild(_layout);
|
|
|
|
|
|
|
|
this->configureGUIScene();
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
2014-07-01 15:47:40 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void UITextTest_Editor::configureGUIScene()
|
|
|
|
{
|
|
|
|
Size screenSize = CCDirector::getInstance()->getWinSize();
|
|
|
|
Size rootSize = _layout->getContentSize();
|
|
|
|
_touchGroup->setPosition(Vec2((screenSize.width - rootSize.width) / 2,
|
|
|
|
(screenSize.height - rootSize.height) / 2));
|
|
|
|
|
|
|
|
Layout* root = static_cast<Layout*>(_layout->getChildByName("root_Panel"));
|
|
|
|
|
|
|
|
Text* back_label = static_cast<Text*>(Helper::seekWidgetByName(root, "back"));
|
|
|
|
back_label->addTouchEventListener(CC_CALLBACK_2(UIScene_Editor::toGUIEditorTestScene, this));
|
|
|
|
|
|
|
|
_sceneTitle = static_cast<Text*>(Helper::seekWidgetByName(root, "UItest"));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
bool UITextTest_Editor::init()
|
|
|
|
{
|
|
|
|
if (UIScene_Editor::init())
|
|
|
|
{
|
2014-10-10 10:44:16 +08:00
|
|
|
Node* node = CSLoader::createNode("cocosui/UIEditorTest/UILabel_Editor/crossplatform_UILabel_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-10-10 10:44:16 +08:00
|
|
|
|
2014-07-01 15:47:40 +08:00
|
|
|
this->configureGUIScene();
|
2014-10-10 10:44:16 +08:00
|
|
|
|
2014-03-04 16:51:35 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2014-03-11 17:13:54 +08:00
|
|
|
}
|