2014-03-04 16:51:35 +08:00
|
|
|
#include "UISliderTest_Editor.h"
|
|
|
|
|
2015-04-09 08:37:30 +08:00
|
|
|
USING_NS_CC;
|
|
|
|
USING_NS_CC_EXT;
|
|
|
|
using namespace cocos2d::ui;
|
|
|
|
|
2015-04-03 14:31:03 +08:00
|
|
|
UISliderEditorTests::UISliderEditorTests()
|
|
|
|
{
|
|
|
|
ADD_TEST_CASE(UISliderTest_Editor);
|
|
|
|
}
|
2014-03-04 16:51:35 +08:00
|
|
|
// UISliderTest_Editor
|
|
|
|
|
|
|
|
UISliderTest_Editor::UISliderTest_Editor()
|
2014-04-09 22:53:59 +08:00
|
|
|
: _displayValueLabel(nullptr)
|
2014-03-04 16:51:35 +08:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
UISliderTest_Editor::~UISliderTest_Editor()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-07-01 15:47:40 +08:00
|
|
|
void UISliderTest_Editor::configureGUIScene()
|
|
|
|
{
|
2015-04-03 14:31:03 +08:00
|
|
|
UIScene_Editor::configureGUIScene();
|
2014-07-01 15:47:40 +08:00
|
|
|
|
|
|
|
Layout* root = static_cast<Layout*>(_layout->getChildByName("root_Panel"));
|
2015-04-03 14:31:03 +08:00
|
|
|
|
2014-07-01 15:47:40 +08:00
|
|
|
Slider* slider = static_cast<Slider*>(Helper::seekWidgetByName(root, "Slider_738"));
|
|
|
|
slider->addEventListener(CC_CALLBACK_2(UISliderTest_Editor::sliderEvent, this));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool UISliderTest_Editor::init()
|
|
|
|
{
|
|
|
|
if (UIScene_Editor::init())
|
|
|
|
{
|
2015-05-14 18:08:37 +08:00
|
|
|
Node* node = CSLoader::createNode("cocosui/UIEditorTest/UISlider/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 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-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 15:47:40 +08:00
|
|
|
_touchGroup->addChild(_displayValueLabel, 20);
|
2014-03-04 16:51:35 +08:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-05-12 11:17:06 +08:00
|
|
|
void UISliderTest_Editor::sliderEvent(Ref *pSender, Slider::EventType type)
|
2014-03-04 16:51:35 +08:00
|
|
|
{
|
|
|
|
switch (type)
|
|
|
|
{
|
2014-05-12 11:17:06 +08:00
|
|
|
case Slider::EventType::ON_PERCENTAGE_CHANGED:
|
2014-03-04 16:51:35 +08:00
|
|
|
{
|
|
|
|
Slider* slider = static_cast<Slider*>(pSender);
|
2015-07-15 12:04:48 +08:00
|
|
|
_displayValueLabel->setString(StringUtils::format("percent %d", slider->getPercent()));
|
2014-03-04 16:51:35 +08:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|