mirror of https://github.com/axmolengine/axmol.git
332 lines
14 KiB
C++
332 lines
14 KiB
C++
|
|
|
|
#include "UIScrollViewTest.h"
|
|
|
|
|
|
// UIScrollViewTest_Vertical
|
|
|
|
UIScrollViewTest_Vertical::UIScrollViewTest_Vertical()
|
|
: _displayValueLabel(nullptr)
|
|
{
|
|
}
|
|
|
|
UIScrollViewTest_Vertical::~UIScrollViewTest_Vertical()
|
|
{
|
|
}
|
|
|
|
bool UIScrollViewTest_Vertical::init()
|
|
{
|
|
if (UIScene::init())
|
|
{
|
|
Size widgetSize = _widget->getSize();
|
|
|
|
// Add a label in which the scrollview alert will be displayed
|
|
_displayValueLabel = Text::create("Move by vertical direction", "fonts/Marker Felt.ttf", 32);
|
|
_displayValueLabel->setAnchorPoint(Point(0.5f, -1.0f));
|
|
_displayValueLabel->setPosition(Point(widgetSize.width / 2.0f,
|
|
widgetSize.height / 2.0f + _displayValueLabel->getContentSize().height * 1.5f));
|
|
_uiLayer->addChild(_displayValueLabel);
|
|
|
|
// Add the alert
|
|
Text* alert = Text::create("ScrollView vertical", "fonts/Marker Felt.ttf", 30);
|
|
alert->setColor(Color3B(159, 168, 176));
|
|
alert->setPosition(Point(widgetSize.width / 2.0f, widgetSize.height / 2.0f - alert->getSize().height * 3.075f));
|
|
_uiLayer->addChild(alert);
|
|
|
|
Layout* root = static_cast<Layout*>(_uiLayer->getChildByTag(81));
|
|
|
|
Layout* background = dynamic_cast<Layout*>(root->getChildByName("background_Panel"));
|
|
|
|
// Create the scrollview by vertical
|
|
ui::ScrollView* scrollView = ui::ScrollView::create();
|
|
scrollView->setSize(Size(280.0f, 150.0f));
|
|
Size backgroundSize = background->getContentSize();
|
|
scrollView->setPosition(Point((widgetSize.width - backgroundSize.width) / 2.0f +
|
|
(backgroundSize.width - scrollView->getSize().width) / 2.0f,
|
|
(widgetSize.height - backgroundSize.height) / 2.0f +
|
|
(backgroundSize.height - scrollView->getSize().height) / 2.0f));
|
|
_uiLayer->addChild(scrollView);
|
|
|
|
ImageView* imageView = ImageView::create("cocosui/ccicon.png");
|
|
|
|
float innerWidth = scrollView->getSize().width;
|
|
float innerHeight = scrollView->getSize().height + imageView->getSize().height;
|
|
|
|
scrollView->setInnerContainerSize(Size(innerWidth, innerHeight));
|
|
|
|
Button* button = Button::create("cocosui/animationbuttonnormal.png", "cocosui/animationbuttonpressed.png");
|
|
button->setPosition(Point(innerWidth / 2.0f, scrollView->getInnerContainerSize().height - button->getSize().height / 2.0f));
|
|
scrollView->addChild(button);
|
|
|
|
Button* titleButton = Button::create("cocosui/backtotopnormal.png", "cocosui/backtotoppressed.png");
|
|
titleButton->setTitleText("Title Button");
|
|
titleButton->setPosition(Point(innerWidth / 2.0f, button->getBottomInParent() - button->getSize().height));
|
|
scrollView->addChild(titleButton);
|
|
|
|
Button* button_scale9 = Button::create("cocosui/button.png", "cocosui/buttonHighlighted.png");
|
|
button_scale9->setScale9Enabled(true);
|
|
button_scale9->setSize(Size(100.0f, button_scale9->getContentSize().height));
|
|
button_scale9->setPosition(Point(innerWidth / 2.0f, titleButton->getBottomInParent() - titleButton->getSize().height));
|
|
scrollView->addChild(button_scale9);
|
|
|
|
imageView->setPosition(Point(innerWidth / 2.0f, imageView->getSize().height / 2.0f));
|
|
scrollView->addChild(imageView);
|
|
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
// UIScrollViewTest_Horizontal
|
|
|
|
UIScrollViewTest_Horizontal::UIScrollViewTest_Horizontal()
|
|
: _displayValueLabel(nullptr)
|
|
{
|
|
}
|
|
|
|
UIScrollViewTest_Horizontal::~UIScrollViewTest_Horizontal()
|
|
{
|
|
}
|
|
|
|
bool UIScrollViewTest_Horizontal::init()
|
|
{
|
|
if (UIScene::init())
|
|
{
|
|
Size widgetSize = _widget->getSize();
|
|
|
|
// Add a label in which the scrollview alert will be displayed
|
|
_displayValueLabel = Text::create("Move by horizontal direction","fonts/Marker Felt.ttf",32);
|
|
_displayValueLabel->setAnchorPoint(Point(0.5f, -1.0f));
|
|
_displayValueLabel->setPosition(Point(widgetSize.width / 2.0f, widgetSize.height / 2.0f + _displayValueLabel->getContentSize().height * 1.5f));
|
|
_uiLayer->addChild(_displayValueLabel);
|
|
|
|
Text* alert = Text::create("ScrollView horizontal","fonts/Marker Felt.ttf",30);
|
|
alert->setColor(Color3B(159, 168, 176));
|
|
alert->setPosition(Point(widgetSize.width / 2.0f, widgetSize.height / 2.0f - alert->getSize().height * 3.075f));
|
|
_uiLayer->addChild(alert);
|
|
|
|
Layout* root = static_cast<Layout*>(_uiLayer->getChildByTag(81));
|
|
|
|
Layout* background = dynamic_cast<Layout*>(root->getChildByName("background_Panel"));
|
|
|
|
// Create the scrollview by horizontal
|
|
ui::ScrollView* scrollView = ui::ScrollView::create();
|
|
scrollView->setBounceEnabled(true);
|
|
scrollView->setDirection(SCROLLVIEW_DIR_HORIZONTAL);
|
|
scrollView->setSize(Size(280.0f, 150.0f));
|
|
scrollView->setInnerContainerSize(scrollView->getSize());
|
|
Size backgroundSize = background->getContentSize();
|
|
scrollView->setPosition(Point((widgetSize.width - backgroundSize.width) / 2.0f +
|
|
(backgroundSize.width - scrollView->getSize().width) / 2.0f,
|
|
(widgetSize.height - backgroundSize.height) / 2.0f +
|
|
(backgroundSize.height - scrollView->getSize().height) / 2.0f));
|
|
_uiLayer->addChild(scrollView);
|
|
|
|
ImageView* imageView = ImageView::create("cocosui/ccicon.png");
|
|
|
|
float innerWidth = scrollView->getSize().width + imageView->getSize().width;
|
|
float innerHeight = scrollView->getSize().height;
|
|
|
|
scrollView->setInnerContainerSize(Size(innerWidth, innerHeight));
|
|
|
|
Button* button = Button::create("cocosui/animationbuttonnormal.png", "cocosui/animationbuttonpressed.png");
|
|
button->setPosition(Point(button->getSize().width / 2.0f,
|
|
scrollView->getInnerContainerSize().height - button->getSize().height / 2.0f));
|
|
scrollView->addChild(button);
|
|
|
|
Button* titleButton = Button::create("cocosui/backtotopnormal.png", "cocosui/backtotoppressed.png");
|
|
titleButton->setTitleText("Title Button");
|
|
titleButton->setPosition(Point(button->getRightInParent() + button->getSize().width / 2.0f,
|
|
button->getBottomInParent() - button->getSize().height / 2.0f));
|
|
scrollView->addChild(titleButton);
|
|
|
|
Button* button_scale9 = Button::create("cocosui/button.png", "cocosui/buttonHighlighted.png");
|
|
button_scale9->setScale9Enabled(true);
|
|
button_scale9->setSize(Size(100.0f, button_scale9->getContentSize().height));
|
|
button_scale9->setPosition(Point(titleButton->getRightInParent() + titleButton->getSize().width / 2.0f,
|
|
titleButton->getBottomInParent() - titleButton->getSize().height / 2.0f));
|
|
scrollView->addChild(button_scale9);
|
|
|
|
imageView->setPosition(Point(innerWidth - imageView->getSize().width / 2.0f,
|
|
button_scale9->getBottomInParent() - button_scale9->getSize().height / 2.0f));
|
|
scrollView->addChild(imageView);
|
|
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
// UIScrollViewTest_Both
|
|
UIScrollViewTest_Both::UIScrollViewTest_Both()
|
|
: _displayValueLabel(nullptr)
|
|
{
|
|
|
|
}
|
|
|
|
UIScrollViewTest_Both::~UIScrollViewTest_Both()
|
|
{
|
|
}
|
|
|
|
bool UIScrollViewTest_Both::init()
|
|
{
|
|
if (UIScene::init())
|
|
{
|
|
Size widgetSize = _widget->getSize();;
|
|
|
|
// Add a label in which the dragpanel events will be displayed
|
|
_displayValueLabel = Text::create("Move by any direction","fonts/Marker Felt.ttf",32);
|
|
_displayValueLabel->setAnchorPoint(Point(0.5f, -1.0f));
|
|
_displayValueLabel->setPosition(Point(widgetSize.width / 2.0f, widgetSize.height / 2.0f + _displayValueLabel->getSize().height * 1.5f));
|
|
_uiLayer->addChild(_displayValueLabel);
|
|
|
|
// Add the alert
|
|
Text* alert = Text::create("ScrollView both","fonts/Marker Felt.ttf",30);
|
|
alert->setColor(Color3B(159, 168, 176));
|
|
alert->setPosition(Point(widgetSize.width / 2.0f, widgetSize.height / 2.0f - alert->getSize().height * 3.075f));
|
|
_uiLayer->addChild(alert);
|
|
|
|
Layout* root = static_cast<Layout*>(_uiLayer->getChildByTag(81));
|
|
|
|
Layout* background = static_cast<Layout*>(root->getChildByName("background_Panel"));
|
|
|
|
// Create the dragpanel
|
|
ui::ScrollView* scrollView = ui::ScrollView::create();
|
|
scrollView->setDirection(SCROLLVIEW_DIR_BOTH);
|
|
scrollView->setTouchEnabled(true);
|
|
scrollView->setBounceEnabled(true);
|
|
scrollView->setBackGroundImageScale9Enabled(true);
|
|
scrollView->setBackGroundImage("cocosui/green_edit.png");
|
|
scrollView->setSize(Size(210, 122.5));
|
|
Size backgroundSize = background->getContentSize();
|
|
scrollView->setPosition(Point((widgetSize.width - backgroundSize.width) / 2.0f +
|
|
(backgroundSize.width - scrollView->getSize().width) / 2.0f,
|
|
(widgetSize.height - backgroundSize.height) / 2.0f +
|
|
(backgroundSize.height - scrollView->getSize().height) / 2.0f));
|
|
ImageView* imageView = ImageView::create("Hello.png");
|
|
scrollView->addChild(imageView);
|
|
|
|
scrollView->setInnerContainerSize(imageView->getContentSize());
|
|
Size innerSize = scrollView->getInnerContainerSize();
|
|
imageView->setPosition(Point(innerSize.width / 2.0f, innerSize.height / 2.0f));
|
|
|
|
_uiLayer->addChild(scrollView);
|
|
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
// UIScrollViewTest_ScrollToPercentBothDirection
|
|
UIScrollViewTest_ScrollToPercentBothDirection::UIScrollViewTest_ScrollToPercentBothDirection()
|
|
: _displayValueLabel(nullptr)
|
|
{
|
|
|
|
}
|
|
|
|
UIScrollViewTest_ScrollToPercentBothDirection::~UIScrollViewTest_ScrollToPercentBothDirection()
|
|
{
|
|
}
|
|
|
|
bool UIScrollViewTest_ScrollToPercentBothDirection::init()
|
|
{
|
|
if (UIScene::init())
|
|
{
|
|
Size widgetSize = _widget->getSize();
|
|
|
|
// Add a label in which the dragpanel events will be displayed
|
|
_displayValueLabel = Text::create("No Event", "fonts/Marker Felt.ttf",30);
|
|
_displayValueLabel->setAnchorPoint(Point(0.5f, -1.0f));
|
|
_displayValueLabel->setPosition(Point(widgetSize.width / 2.0f, widgetSize.height / 2.0f + _displayValueLabel->getSize().height * 1.5f));
|
|
_uiLayer->addChild(_displayValueLabel);
|
|
|
|
// Add the alert
|
|
Text* alert = Text::create("ScrollView scroll to percent both directrion","fonts/Marker Felt.ttf",20);
|
|
alert->setColor(Color3B(159, 168, 176));
|
|
alert->setPosition(Point(widgetSize.width / 2.0f, widgetSize.height / 2.0f - alert->getSize().height * 4.5));
|
|
_uiLayer->addChild(alert);
|
|
|
|
Layout* root = static_cast<Layout*>(_uiLayer->getChildByTag(81));
|
|
|
|
Layout* background = static_cast<Layout*>(root->getChildByName("background_Panel"));
|
|
|
|
ui::ScrollView* sc = ui::ScrollView::create();
|
|
sc->setBackGroundColor(Color3B::GREEN);
|
|
sc->setBackGroundColorType(LAYOUT_COLOR_SOLID);
|
|
sc->setDirection(SCROLLVIEW_DIR_BOTH);
|
|
sc->setInnerContainerSize(Size(480, 320));
|
|
sc->setSize(Size(100,100));
|
|
Size backgroundSize = background->getContentSize();
|
|
sc->setPosition(Point((widgetSize.width - backgroundSize.width) / 2.0f +
|
|
(backgroundSize.width - sc->getSize().width) / 2.0f,
|
|
(widgetSize.height - backgroundSize.height) / 2.0f +
|
|
(backgroundSize.height - sc->getSize().height) / 2.0f));
|
|
sc->scrollToPercentBothDirection(Point(50, 50), 1, true);
|
|
ImageView* iv = ImageView::create("cocosui/Hello.png");
|
|
iv->setPosition(Point(240, 160));
|
|
sc->addChild(iv);
|
|
_uiLayer->addChild(sc);
|
|
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
// UIScrollViewTest_ScrollToPercentBothDirection_Bounce
|
|
UIScrollViewTest_ScrollToPercentBothDirection_Bounce::UIScrollViewTest_ScrollToPercentBothDirection_Bounce()
|
|
: _displayValueLabel(nullptr)
|
|
{
|
|
|
|
}
|
|
|
|
UIScrollViewTest_ScrollToPercentBothDirection_Bounce::~UIScrollViewTest_ScrollToPercentBothDirection_Bounce()
|
|
{
|
|
}
|
|
|
|
bool UIScrollViewTest_ScrollToPercentBothDirection_Bounce::init()
|
|
{
|
|
if (UIScene::init())
|
|
{
|
|
Size widgetSize = _widget->getSize();
|
|
|
|
// Add a label in which the dragpanel events will be displayed
|
|
_displayValueLabel = Text::create("No Event","fonts/Marker Felt.ttf",32);
|
|
_displayValueLabel->setAnchorPoint(Point(0.5f, -1.0f));
|
|
_displayValueLabel->setPosition(Point(widgetSize.width / 2.0f, widgetSize.height / 2.0f + _displayValueLabel->getSize().height * 1.5f));
|
|
_uiLayer->addChild(_displayValueLabel);
|
|
|
|
// Add the alert
|
|
Text* alert = Text::create("ScrollView scroll to percent both directrion bounce","fonts/Marker Felt.ttf",20);
|
|
alert->setColor(Color3B(159, 168, 176));
|
|
alert->setPosition(Point(widgetSize.width / 2.0f, widgetSize.height / 2.0f - alert->getSize().height * 4.5));
|
|
_uiLayer->addChild(alert);
|
|
|
|
Layout* root = static_cast<Layout*>(_uiLayer->getChildByTag(81));
|
|
|
|
Layout* background = dynamic_cast<Layout*>(root->getChildByName("background_Panel"));
|
|
|
|
ui::ScrollView* sc = ui::ScrollView::create();
|
|
sc->setBackGroundColor(Color3B::GREEN);
|
|
sc->setBackGroundColorType(LAYOUT_COLOR_SOLID);
|
|
sc->setBounceEnabled(true);
|
|
sc->setDirection(SCROLLVIEW_DIR_BOTH);
|
|
sc->setInnerContainerSize(Size(480, 320));
|
|
sc->setSize(Size(100,100));
|
|
Size backgroundSize = background->getContentSize();
|
|
sc->setPosition(Point((widgetSize.width - backgroundSize.width) / 2.0f +
|
|
(backgroundSize.width - sc->getSize().width) / 2.0f,
|
|
(widgetSize.height - backgroundSize.height) / 2.0f +
|
|
(backgroundSize.height - sc->getSize().height) / 2.0f));
|
|
sc->scrollToPercentBothDirection(Point(50, 50), 1, true);
|
|
ImageView* iv = ImageView::create("cocosui/Hello.png");
|
|
iv->setPosition(Point(240, 160));
|
|
sc->addChild(iv);
|
|
_uiLayer->addChild(sc);
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|