axmol/tests/cpp-tests/Classes/UITest/CocoStudioGUITest/UICheckBoxTest/UICheckBoxTest_Editor.cpp

98 lines
3.1 KiB
C++
Raw Normal View History

2014-03-04 16:51:35 +08:00
#include "UICheckBoxTest_Editor.h"
// UICheckBoxTest_Editor
UICheckBoxTest_Editor::UICheckBoxTest_Editor()
: _displayValueLabel(nullptr)
2014-03-04 16:51:35 +08:00
{
}
UICheckBoxTest_Editor::~UICheckBoxTest_Editor()
{
}
2014-07-01 14:43:20 +08:00
void UICheckBoxTest_Editor::switchLoadMethod(cocos2d::Ref *pSender)
2014-03-04 16:51:35 +08:00
{
2014-07-01 14:43:20 +08:00
MenuItemToggle *item = (MenuItemToggle*)pSender;
if (item->getSelectedIndex() == 0){
_layout->removeFromParentAndCleanup(true);
2014-03-04 16:51:35 +08:00
2014-07-01 14:43:20 +08:00
_layout = static_cast<Layout*>(cocostudio::GUIReader::getInstance()->widgetFromJsonFile("cocosui/UIEditorTest/UICheckBox_Editor/ui_checkbox_editor_1.json"));
_touchGroup->addChild(_layout);
2014-03-04 16:51:35 +08:00
2014-07-01 14:43:20 +08:00
this->configureGUIScene();
}else{
_layout->removeFromParentAndCleanup(true);
2014-03-04 16:51:35 +08:00
2014-07-01 14:43:20 +08:00
_layout = static_cast<Layout*>(cocostudio::GUIReader::getInstance()->widgetFromBinaryFile("cocosui/UIEditorTest/UICheckBox_Editor/ui_checkbox_editor_1.csb"));
_touchGroup->addChild(_layout);
2014-03-04 16:51:35 +08:00
2014-07-01 14:43:20 +08:00
this->configureGUIScene();
}
}
void UICheckBoxTest_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"));
CheckBox* checkbox = static_cast<CheckBox*>(Helper::seekWidgetByName(root, "CheckBox_540"));
checkbox->addEventListener(CC_CALLBACK_2(UICheckBoxTest_Editor::selectedStateEvent, this));
}
bool UICheckBoxTest_Editor::init()
{
if (UIScene_Editor::init())
{
_layout = static_cast<Layout*>(cocostudio::GUIReader::getInstance()->widgetFromJsonFile("cocosui/UIEditorTest/UICheckBox_Editor/ui_checkbox_editor_1.json"));
_touchGroup->addChild(_layout);
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 14:43:20 +08:00
_touchGroup->addChild(_displayValueLabel,20);
2014-03-04 16:51:35 +08:00
return true;
}
return false;
}
void UICheckBoxTest_Editor::selectedStateEvent(Ref *pSender, CheckBox::EventType type)
2014-03-04 16:51:35 +08:00
{
switch (type)
{
case CheckBox::EventType::UNSELECTED:
2014-05-14 15:26:14 +08:00
_displayValueLabel->setString("Unselected");
2014-03-04 16:51:35 +08:00
break;
case CheckBox::EventType::SELECTED:
2014-05-14 15:26:14 +08:00
_displayValueLabel->setString("Selected");
2014-03-04 16:51:35 +08:00
break;
default:
break;
}
}