mirror of https://github.com/axmolengine/axmol.git
145 lines
4.8 KiB
C++
145 lines
4.8 KiB
C++
|
|
|
|
#include "UIPageViewTest_Editor.h"
|
|
#include "VisibleRect.h"
|
|
|
|
|
|
// UIPageViewTest_Editor
|
|
|
|
UIPageViewTest_Editor::UIPageViewTest_Editor()
|
|
: _displayValueLabel(nullptr)
|
|
{
|
|
|
|
}
|
|
|
|
UIPageViewTest_Editor::~UIPageViewTest_Editor()
|
|
{
|
|
|
|
}
|
|
|
|
void UIPageViewTest_Editor::switchLoadMethod(cocos2d::Ref *pSender)
|
|
{
|
|
MenuItemToggle *item = (MenuItemToggle*)pSender;
|
|
|
|
switch (item->getSelectedIndex())
|
|
{
|
|
case 0:
|
|
{
|
|
_layout->removeFromParentAndCleanup(true);
|
|
|
|
_layout = static_cast<Layout*>(cocostudio::GUIReader::getInstance()->widgetFromJsonFile("cocosui/UIEditorTest/UIPageView/windows_ui_pageview_editor_1.json"));
|
|
|
|
_touchGroup->addChild(_layout);
|
|
|
|
this->configureGUIScene();
|
|
|
|
break;
|
|
}
|
|
|
|
case 1:
|
|
{
|
|
_layout->removeFromParentAndCleanup(true);
|
|
|
|
_layout = static_cast<Layout*>(cocostudio::GUIReader::getInstance()->widgetFromBinaryFile("cocosui/UIEditorTest/UIPageView/windows_ui_pageview_editor_1.csb"));
|
|
|
|
_touchGroup->addChild(_layout);
|
|
|
|
this->configureGUIScene();
|
|
|
|
break;
|
|
}
|
|
|
|
case 2:
|
|
{
|
|
_layout->removeFromParentAndCleanup(true);
|
|
|
|
Node* node = CSLoader::createNode("cocosui/UIEditorTest/UIPageView/crossplatform_UIPageView_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/UIPageView/crossplatform_UIPageView_Editor_1.csb");
|
|
Node* child = node->getChildByTag(5);
|
|
child->removeFromParent();
|
|
_layout = static_cast<Layout*>(child);
|
|
_touchGroup->addChild(_layout);
|
|
|
|
this->configureGUIScene();
|
|
|
|
break;
|
|
}
|
|
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
void UIPageViewTest_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"));
|
|
|
|
Button* left_button = Button::create();
|
|
left_button->loadTextures("Images/b1.png", "Images/b2.png", "");
|
|
left_button->setPosition(Vec2(_layout->getContentSize().width / 2 - left_button->getContentSize().width,
|
|
left_button->getContentSize().height * 0.625));
|
|
left_button->setTouchEnabled(true);
|
|
left_button->addTouchEventListener(CC_CALLBACK_2(UIScene_Editor::previousCallback, this));
|
|
left_button->setLocalZOrder(_layout->getLocalZOrder() + 1);
|
|
_layout->addChild(left_button);
|
|
|
|
Button* right_button = Button::create();
|
|
right_button->loadTextures("Images/f1.png", "Images/f2.png", "");
|
|
right_button->setPosition(Vec2(_layout->getContentSize().width / 2 + right_button->getContentSize().width,
|
|
right_button->getContentSize().height * 0.625));
|
|
right_button->setTouchEnabled(true);
|
|
right_button->setLocalZOrder(_layout->getLocalZOrder() + 1);
|
|
right_button->addTouchEventListener(CC_CALLBACK_2(UIScene_Editor::nextCallback, this));
|
|
_layout->addChild(right_button);
|
|
|
|
}
|
|
|
|
bool UIPageViewTest_Editor::init()
|
|
{
|
|
if (UIScene_Editor::init())
|
|
{
|
|
Node* node = CSLoader::createNode("cocosui/UIEditorTest/UIPageView/crossplatform_UIPageView_Editor_1.csb");
|
|
Node* child = node->getChildByTag(5);
|
|
child->removeFromParent();
|
|
_layout = static_cast<Layout*>(child);
|
|
_touchGroup->addChild(_layout);
|
|
|
|
this->configureGUIScene();
|
|
|
|
/*
|
|
Menu* menu = static_cast<Menu*>(getChildByTag(1));
|
|
MenuItemToggle* menuItemToggle = static_cast<MenuItemToggle*>(menu->getChildByTag(1));
|
|
MenuItem* selectedItem = menuItemToggle->getSelectedItem();
|
|
menuItemToggle->setPosition(Vec2(VisibleRect::center().x, VisibleRect::center().y + selectedItem->getContentSize().height * 3.75f));
|
|
*/
|
|
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|