2014-03-04 16:51:35 +08:00
|
|
|
#include "UICheckBoxTest_Editor.h"
|
|
|
|
|
2015-04-09 12:23:47 +08:00
|
|
|
USING_NS_CC;
|
|
|
|
using namespace cocos2d::ui;
|
|
|
|
|
2015-04-03 14:31:03 +08:00
|
|
|
UICheckBoxEditorTests::UICheckBoxEditorTests()
|
|
|
|
{
|
|
|
|
ADD_TEST_CASE(UICheckBoxTest_Editor);
|
|
|
|
}
|
2014-03-04 16:51:35 +08:00
|
|
|
|
|
|
|
// UICheckBoxTest_Editor
|
|
|
|
|
|
|
|
UICheckBoxTest_Editor::UICheckBoxTest_Editor()
|
2014-04-09 22:53:59 +08:00
|
|
|
: _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::configureGUIScene()
|
|
|
|
{
|
2015-04-03 14:31:03 +08:00
|
|
|
UIScene_Editor::configureGUIScene();
|
2014-07-01 14:43:20 +08:00
|
|
|
|
|
|
|
Layout* root = static_cast<Layout*>(_layout->getChildByName("root_Panel"));
|
2015-04-03 14:31:03 +08:00
|
|
|
|
2014-07-01 14:43:20 +08:00
|
|
|
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())
|
|
|
|
{
|
2015-05-14 18:08:37 +08:00
|
|
|
Node* node = CSLoader::createNode("cocosui/UIEditorTest/UICheckBox/res.csb");
|
2014-10-10 10:44:16 +08:00
|
|
|
Node* child = node->getChildByTag(5);
|
|
|
|
child->removeFromParent();
|
|
|
|
_layout = static_cast<Layout*>(child);
|
2014-07-01 14:43:20 +08:00
|
|
|
_touchGroup->addChild(_layout);
|
2014-10-10 10:44:16 +08:00
|
|
|
|
2014-07-01 14:43:20 +08:00
|
|
|
this->configureGUIScene();
|
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-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;
|
|
|
|
}
|
|
|
|
|
2014-05-09 16:04:55 +08:00
|
|
|
void UICheckBoxTest_Editor::selectedStateEvent(Ref *pSender, CheckBox::EventType type)
|
2014-03-04 16:51:35 +08:00
|
|
|
{
|
|
|
|
switch (type)
|
|
|
|
{
|
2014-05-09 16:04:55 +08:00
|
|
|
case CheckBox::EventType::UNSELECTED:
|
2014-05-14 15:26:14 +08:00
|
|
|
_displayValueLabel->setString("Unselected");
|
2014-03-04 16:51:35 +08:00
|
|
|
break;
|
|
|
|
|
2014-05-09 16:04:55 +08:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|