axmol/tests/cpp-tests/Classes/UITest/CocoStudioGUITest/UIPageViewTest/UIPageViewTest.cpp

93 lines
3.3 KiB
C++
Raw Normal View History

2013-09-16 20:54:13 +08:00
#include "UIPageViewTest.h"
// UIPageViewTest
UIPageViewTest::UIPageViewTest()
: _displayValueLabel(nullptr)
2013-09-16 20:54:13 +08:00
{
}
UIPageViewTest::~UIPageViewTest()
{
}
bool UIPageViewTest::init()
{
if (UIScene::init())
{
2013-12-23 15:35:35 +08:00
Size widgetSize = _widget->getSize();
2013-09-16 20:54:13 +08:00
// Add a label in which the dragpanel events will be displayed
2014-04-03 11:52:35 +08:00
_displayValueLabel = Text::create("Move by horizontal direction", "fonts/Marker Felt.ttf", 32);
_displayValueLabel->setAnchorPoint(Vector2(0.5f, -1.0f));
_displayValueLabel->setPosition(Vector2(widgetSize.width / 2.0f,
2014-04-03 11:52:35 +08:00
widgetSize.height / 2.0f +
_displayValueLabel->getContentSize().height * 1.5));
2013-12-23 15:35:35 +08:00
_uiLayer->addChild(_displayValueLabel);
2013-09-16 20:54:13 +08:00
// Add the black background
2014-04-03 11:52:35 +08:00
Text* alert = Text::create("PageView", "fonts/Marker Felt.ttf", 30);
2013-09-16 20:54:13 +08:00
alert->setColor(Color3B(159, 168, 176));
alert->setPosition(Vector2(widgetSize.width / 2.0f, widgetSize.height / 2.0f - alert->getSize().height * 3.075f));
2013-12-23 15:35:35 +08:00
_uiLayer->addChild(alert);
2013-09-16 20:54:13 +08:00
2013-12-23 15:35:35 +08:00
Layout* root = static_cast<Layout*>(_uiLayer->getChildByTag(81));
Layout* background = dynamic_cast<Layout*>(root->getChildByName("background_Panel"));
2013-09-16 20:54:13 +08:00
// Create the page view
2013-12-23 15:35:35 +08:00
PageView* pageView = PageView::create();
pageView->setSize(Size(240.0f, 130.0f));
2013-09-16 20:54:13 +08:00
Size backgroundSize = background->getContentSize();
pageView->setPosition(Vector2((widgetSize.width - backgroundSize.width) / 2.0f +
2013-12-23 15:35:35 +08:00
(backgroundSize.width - pageView->getSize().width) / 2.0f,
(widgetSize.height - backgroundSize.height) / 2.0f +
(backgroundSize.height - pageView->getSize().height) / 2.0f));
2013-09-16 20:54:13 +08:00
for (int i = 0; i < 3; ++i)
{
2013-12-23 15:35:35 +08:00
Layout* layout = Layout::create();
layout->setSize(Size(240.0f, 130.0f));
2013-09-16 20:54:13 +08:00
2014-04-03 11:52:35 +08:00
ImageView* imageView = ImageView::create("cocosui/scrollviewbg.png");
2013-09-16 20:54:13 +08:00
imageView->setScale9Enabled(true);
imageView->setSize(Size(240, 130));
imageView->setPosition(Vector2(layout->getSize().width / 2.0f, layout->getSize().height / 2.0f));
2013-09-16 20:54:13 +08:00
layout->addChild(imageView);
Text* label = Text::create(StringUtils::format("page %d",(i+1)), "fonts/Marker Felt.ttf", 30);
2013-09-16 20:54:13 +08:00
label->setColor(Color3B(192, 192, 192));
label->setPosition(Vector2(layout->getSize().width / 2.0f, layout->getSize().height / 2.0f));
2013-09-16 20:54:13 +08:00
layout->addChild(label);
pageView->addPage(layout);
}
2014-05-12 10:31:52 +08:00
pageView->addEventListener(CC_CALLBACK_2(UIPageViewTest::pageViewEvent, this));
2013-09-16 20:54:13 +08:00
2013-12-23 15:35:35 +08:00
_uiLayer->addChild(pageView);
2013-09-16 20:54:13 +08:00
return true;
}
return false;
}
2014-05-12 10:31:52 +08:00
void UIPageViewTest::pageViewEvent(Ref *pSender, PageView::EventType type)
2013-09-16 20:54:13 +08:00
{
2013-09-17 20:13:23 +08:00
switch (type)
{
2014-05-12 10:31:52 +08:00
case PageView::EventType::TURNING:
2013-09-17 20:13:23 +08:00
{
2013-12-23 15:35:35 +08:00
PageView* pageView = dynamic_cast<PageView*>(pSender);
2013-09-17 20:13:23 +08:00
2014-05-14 15:26:14 +08:00
_displayValueLabel->setString(CCString::createWithFormat("page = %ld", pageView->getCurPageIndex() + 1)->getCString());
2013-09-17 20:13:23 +08:00
}
break;
default:
break;
}
}