axmol/tests/cpp-tests/Classes/UITest/CocoStudioGUITest/UISliderTest/UISliderTest_Editor.cpp

75 lines
2.0 KiB
C++
Raw Normal View History

2014-03-04 16:51:35 +08:00
#include "UISliderTest_Editor.h"
USING_NS_CC;
USING_NS_CC_EXT;
using namespace cocos2d::ui;
UISliderEditorTests::UISliderEditorTests()
{
ADD_TEST_CASE(UISliderTest_Editor);
}
2014-03-04 16:51:35 +08:00
// UISliderTest_Editor
UISliderTest_Editor::UISliderTest_Editor()
: _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()
{
UIScene_Editor::configureGUIScene();
2014-07-01 15:47:40 +08:00
Layout* root = static_cast<Layout*>(_layout->getChildByName("root_Panel"));
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())
{
Node* node = CSLoader::createNode("cocosui/UIEditorTest/UISlider/res.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-07-01 15:47:40 +08:00
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 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);
2014-05-14 15:26:14 +08:00
_displayValueLabel->setString(CCString::createWithFormat("percent %d", slider->getPercent())->getCString());
2014-03-04 16:51:35 +08:00
}
break;
default:
break;
}
}