mirror of https://github.com/axmolengine/axmol.git
235 lines
7.8 KiB
C++
235 lines
7.8 KiB
C++
|
|
|
|
#include "UIButtonTest.h"
|
|
|
|
const char* font_UIButtonTest =
|
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_IOS)
|
|
"Marker Felt";
|
|
#else
|
|
"cocosgui/Marker Felt.ttf";
|
|
#endif
|
|
|
|
// UIButtonTest
|
|
UIButtonTest::UIButtonTest()
|
|
: m_pDisplayValueLabel(NULL)
|
|
{
|
|
}
|
|
|
|
UIButtonTest::~UIButtonTest()
|
|
{
|
|
}
|
|
|
|
bool UIButtonTest::init()
|
|
{
|
|
if (UIScene::init())
|
|
{
|
|
Size widgetSize = m_pWidget->getSize();
|
|
|
|
// Add a label in which the button events will be displayed
|
|
m_pDisplayValueLabel = UILabel::create();
|
|
m_pDisplayValueLabel->setText("No Event");
|
|
m_pDisplayValueLabel->setFontName(font_UIButtonTest);
|
|
m_pDisplayValueLabel->setFontSize(32);
|
|
m_pDisplayValueLabel->setAnchorPoint(Point(0.5f, -1));
|
|
m_pDisplayValueLabel->setPosition(Point(widgetSize.width / 2.0f, widgetSize.height / 2.0f));
|
|
m_pUiLayer->addWidget(m_pDisplayValueLabel);
|
|
|
|
// Add the alert
|
|
UILabel *alert = UILabel::create();
|
|
alert->setText("Button");
|
|
alert->setFontName(font_UIButtonTest);
|
|
alert->setFontSize(30);
|
|
alert->setColor(Color3B(159, 168, 176));
|
|
|
|
alert->setPosition(Point(widgetSize.width / 2.0f, widgetSize.height / 2.0f - alert->getSize().height * 1.75));
|
|
m_pUiLayer->addWidget(alert);
|
|
|
|
// Create the button
|
|
UIButton *button = UIButton::create();
|
|
button->setTouchEnabled(true);
|
|
button->loadTextures("cocosgui/animationbuttonnormal.png", "cocosgui/animationbuttonpressed.png", "");
|
|
button->setPosition(Point(widgetSize.width / 2.0f, widgetSize.height / 2.0f));
|
|
button->addTouchEventListener(this, toucheventselector(UIButtonTest::touchEvent));
|
|
m_pUiLayer->addWidget(button);
|
|
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
void UIButtonTest::touchEvent(Object *pSender, TouchEventType type)
|
|
{
|
|
switch (type)
|
|
{
|
|
case gui::TOUCH_EVENT_BEGAN:
|
|
m_pDisplayValueLabel->setText(CCString::createWithFormat("Touch Down")->getCString());
|
|
break;
|
|
|
|
case gui::TOUCH_EVENT_MOVED:
|
|
m_pDisplayValueLabel->setText(CCString::createWithFormat("Touch Move")->getCString());
|
|
break;
|
|
|
|
case gui::TOUCH_EVENT_ENDED:
|
|
m_pDisplayValueLabel->setText(CCString::createWithFormat("Touch Up")->getCString());
|
|
break;
|
|
|
|
case gui::TOUCH_EVENT_CANCELED:
|
|
m_pDisplayValueLabel->setText(CCString::createWithFormat("Touch Cancelled")->getCString());
|
|
break;
|
|
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
|
|
// UIButtonTest_Scale9
|
|
UIButtonTest_Scale9::UIButtonTest_Scale9()
|
|
: m_pDisplayValueLabel(NULL)
|
|
{
|
|
|
|
}
|
|
|
|
UIButtonTest_Scale9::~UIButtonTest_Scale9()
|
|
{
|
|
|
|
}
|
|
|
|
bool UIButtonTest_Scale9::init()
|
|
{
|
|
if (UIScene::init())
|
|
{
|
|
Size widgetSize = m_pWidget->getSize();
|
|
|
|
// Add a label in which the button events will be displayed
|
|
m_pDisplayValueLabel = UILabel::create();
|
|
m_pDisplayValueLabel->setText("No Event");
|
|
m_pDisplayValueLabel->setFontName(font_UIButtonTest);
|
|
m_pDisplayValueLabel->setFontSize(32);
|
|
m_pDisplayValueLabel->setAnchorPoint(Point(0.5f, -1));
|
|
m_pDisplayValueLabel->setPosition(Point(widgetSize.width / 2.0f, widgetSize.height / 2.0f));
|
|
m_pUiLayer->addWidget(m_pDisplayValueLabel);
|
|
|
|
// Add the alert
|
|
UILabel *alert = UILabel::create();
|
|
alert->setText("Button scale9 render");
|
|
alert->setFontName(font_UIButtonTest);
|
|
alert->setFontSize(30);
|
|
alert->setColor(Color3B(159, 168, 176));
|
|
alert->setPosition(Point(widgetSize.width / 2.0f, widgetSize.height / 2.0f - alert->getSize().height * 1.75));
|
|
m_pUiLayer->addWidget(alert);
|
|
|
|
// Create the button
|
|
UIButton *button = UIButton::create();
|
|
button->setTouchEnabled(true);
|
|
// open scale9 render
|
|
button->setScale9Enabled(true);
|
|
button->loadTextures("cocosgui/button.png", "cocosgui/buttonHighlighted.png", "");
|
|
button->setPosition(Point(widgetSize.width / 2.0f, widgetSize.height / 2.0f));
|
|
button->setSize(Size(150, button->getContentSize().height * 1.5f));
|
|
button->addTouchEventListener(this, toucheventselector(UIButtonTest_Scale9::touchEvent));
|
|
m_pUiLayer->addWidget(button);
|
|
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
void UIButtonTest_Scale9::touchEvent(Object *pSender, TouchEventType type)
|
|
{
|
|
switch (type)
|
|
{
|
|
case gui::TOUCH_EVENT_BEGAN:
|
|
m_pDisplayValueLabel->setText(CCString::createWithFormat("Touch Down")->getCString());
|
|
break;
|
|
|
|
case gui::TOUCH_EVENT_MOVED:
|
|
m_pDisplayValueLabel->setText(CCString::createWithFormat("Touch Move")->getCString());
|
|
break;
|
|
|
|
case gui::TOUCH_EVENT_ENDED:
|
|
m_pDisplayValueLabel->setText(CCString::createWithFormat("Touch Up")->getCString());
|
|
break;
|
|
|
|
case gui::TOUCH_EVENT_CANCELED:
|
|
m_pDisplayValueLabel->setText(CCString::createWithFormat("Touch Cancelled")->getCString());
|
|
break;
|
|
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
// UIButtonTest_PressAction
|
|
UIButtonTest_PressedAction::UIButtonTest_PressedAction()
|
|
: m_pDisplayValueLabel(NULL)
|
|
{
|
|
}
|
|
|
|
UIButtonTest_PressedAction::~UIButtonTest_PressedAction()
|
|
{
|
|
}
|
|
|
|
bool UIButtonTest_PressedAction::init()
|
|
{
|
|
if (UIScene::init())
|
|
{
|
|
Size widgetSize = m_pWidget->getSize();
|
|
|
|
// Add a label in which the button events will be displayed
|
|
m_pDisplayValueLabel = UILabel::create();
|
|
m_pDisplayValueLabel->setText("No Event");
|
|
m_pDisplayValueLabel->setFontName(font_UIButtonTest);
|
|
m_pDisplayValueLabel->setFontSize(32);
|
|
m_pDisplayValueLabel->setAnchorPoint(Point(0.5f, -1));
|
|
m_pDisplayValueLabel->setPosition(Point(widgetSize.width / 2.0f, widgetSize.height / 2.0f));
|
|
m_pUiLayer->addWidget(m_pDisplayValueLabel);
|
|
|
|
// Add the alert
|
|
UILabel *alert = UILabel::create();
|
|
alert->setText("Button Pressed Action");
|
|
alert->setFontName(font_UIButtonTest);
|
|
alert->setFontSize(30);
|
|
alert->setColor(Color3B(159, 168, 176));
|
|
|
|
alert->setPosition(Point(widgetSize.width / 2.0f, widgetSize.height / 2.0f - alert->getSize().height * 1.75));
|
|
m_pUiLayer->addWidget(alert);
|
|
|
|
// Create the button
|
|
UIButton *button = UIButton::create();
|
|
button->setTouchEnabled(true);
|
|
button->setPressedActionEnabled(true);
|
|
button->loadTextures("cocosgui/animationbuttonnormal.png", "cocosgui/animationbuttonpressed.png", "");
|
|
button->setPosition(Point(widgetSize.width / 2.0f, widgetSize.height / 2.0f));
|
|
button->addTouchEventListener(this, toucheventselector(UIButtonTest_PressedAction::touchEvent));
|
|
m_pUiLayer->addWidget(button);
|
|
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
void UIButtonTest_PressedAction::touchEvent(Object *pSender, TouchEventType type)
|
|
{
|
|
switch (type)
|
|
{
|
|
case gui::TOUCH_EVENT_BEGAN:
|
|
m_pDisplayValueLabel->setText(CCString::createWithFormat("Touch Down")->getCString());
|
|
break;
|
|
|
|
case gui::TOUCH_EVENT_MOVED:
|
|
m_pDisplayValueLabel->setText(CCString::createWithFormat("Touch Move")->getCString());
|
|
break;
|
|
|
|
case gui::TOUCH_EVENT_ENDED:
|
|
m_pDisplayValueLabel->setText(CCString::createWithFormat("Touch Up")->getCString());
|
|
break;
|
|
|
|
case gui::TOUCH_EVENT_CANCELED:
|
|
m_pDisplayValueLabel->setText(CCString::createWithFormat("Touch Cancelled")->getCString());
|
|
break;
|
|
|
|
default:
|
|
break;
|
|
}
|
|
} |