mirror of https://github.com/axmolengine/axmol.git
121 lines
3.9 KiB
C++
121 lines
3.9 KiB
C++
|
|
|
|
#include "UIDragPanelTest.h"
|
|
|
|
const char* font_UIDragPanelTest =
|
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_IOS)
|
|
"Marker Felt";
|
|
#else
|
|
"cocosgui/Marker Felt.ttf";
|
|
#endif
|
|
|
|
// UIDragPanelTest
|
|
UIDragPanelTest::UIDragPanelTest()
|
|
: m_pDisplayValueLabel(NULL)
|
|
{
|
|
|
|
}
|
|
|
|
UIDragPanelTest::~UIDragPanelTest()
|
|
{
|
|
}
|
|
|
|
bool UIDragPanelTest::init()
|
|
{
|
|
if (UIScene::init())
|
|
{
|
|
Size widgetSize = m_pWidget->getSize();
|
|
|
|
// Add a label in which the dragpanel events will be displayed
|
|
m_pDisplayValueLabel = UILabel::create();
|
|
m_pDisplayValueLabel->setText("No Event");
|
|
m_pDisplayValueLabel->setFontName(font_UIDragPanelTest);
|
|
m_pDisplayValueLabel->setFontSize(32);
|
|
m_pDisplayValueLabel->setAnchorPoint(Point(0.5f, -1));
|
|
m_pDisplayValueLabel->setPosition(Point(widgetSize.width / 2.0f, widgetSize.height / 2.0f + m_pDisplayValueLabel->getSize().height * 1.5));
|
|
m_pUiLayer->addWidget(m_pDisplayValueLabel);
|
|
|
|
// Add the alert
|
|
UILabel *alert = UILabel::create();
|
|
alert->setText("DragPanel");
|
|
alert->setFontName(font_UIDragPanelTest);
|
|
alert->setFontSize(30);
|
|
alert->setColor(Color3B(159, 168, 176));
|
|
alert->setPosition(Point(widgetSize.width / 2.0f, widgetSize.height / 2.0f - alert->getSize().height * 2.925));
|
|
m_pUiLayer->addWidget(alert);
|
|
|
|
UIScrollView* sc = UIScrollView::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));
|
|
sc->setPosition(Point(100,100));
|
|
sc->scrollToPercentBothDirection(Point(50, 50), 1, true);
|
|
UIImageView* iv = UIImageView::create();
|
|
iv->loadTexture("cocosgui/Hello.png");
|
|
iv->setPosition(Point(240, 160));
|
|
sc->addChild(iv);
|
|
m_pUiLayer->addWidget(sc);
|
|
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
// UIDragPanelTest_Bounce
|
|
UIDragPanelTest_Bounce::UIDragPanelTest_Bounce()
|
|
: m_pDisplayValueLabel(NULL)
|
|
{
|
|
|
|
}
|
|
|
|
UIDragPanelTest_Bounce::~UIDragPanelTest_Bounce()
|
|
{
|
|
}
|
|
|
|
bool UIDragPanelTest_Bounce::init()
|
|
{
|
|
if (UIScene::init())
|
|
{
|
|
Size widgetSize = m_pWidget->getSize();
|
|
|
|
// Add a label in which the dragpanel events will be displayed
|
|
m_pDisplayValueLabel = UILabel::create();
|
|
m_pDisplayValueLabel->setText("No Event");
|
|
m_pDisplayValueLabel->setFontName(font_UIDragPanelTest);
|
|
m_pDisplayValueLabel->setFontSize(32);
|
|
m_pDisplayValueLabel->setAnchorPoint(Point(0.5f, -1));
|
|
m_pDisplayValueLabel->setPosition(Point(widgetSize.width / 2.0f, widgetSize.height / 2.0f + m_pDisplayValueLabel->getSize().height * 1.5));
|
|
m_pUiLayer->addWidget(m_pDisplayValueLabel);
|
|
|
|
// Add the alert
|
|
UILabel *alert = UILabel::create();
|
|
alert->setText("DragPanel Bounce");
|
|
alert->setFontName(font_UIDragPanelTest);
|
|
alert->setFontSize(30);
|
|
alert->setColor(Color3B(159, 168, 176));
|
|
alert->setPosition(Point(widgetSize.width / 2.0f, widgetSize.height / 2.0f - alert->getSize().height * 2.925));
|
|
m_pUiLayer->addWidget(alert);
|
|
|
|
UIScrollView* sc = UIScrollView::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));
|
|
sc->setPosition(Point(100,100));
|
|
sc->scrollToPercentBothDirection(Point(50, 50), 1, true);
|
|
UIImageView* iv = UIImageView::create();
|
|
iv->loadTexture("cocosgui/Hello.png");
|
|
iv->setPosition(Point(240, 160));
|
|
sc->addChild(iv);
|
|
m_pUiLayer->addWidget(sc);
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|