mirror of https://github.com/axmolengine/axmol.git
161 lines
5.4 KiB
C++
161 lines
5.4 KiB
C++
|
|
|
|
#include "UITextButtonTest.h"
|
|
|
|
const char* font_UITextButtonTest =
|
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_IOS)
|
|
"Marker Felt";
|
|
#else
|
|
"cocosgui/Marker Felt.ttf";
|
|
#endif
|
|
|
|
// UITextButtonTest
|
|
UITextButtonTest::UITextButtonTest()
|
|
: m_pDisplayValueLabel(NULL)
|
|
{
|
|
|
|
}
|
|
|
|
UITextButtonTest::~UITextButtonTest()
|
|
{
|
|
}
|
|
|
|
bool UITextButtonTest::init()
|
|
{
|
|
if (UIScene::init())
|
|
{
|
|
Size widgetSize = m_pWidget->getSize();
|
|
|
|
// Add a label in which the text button events will be displayed
|
|
m_pDisplayValueLabel = UILabel::create();
|
|
m_pDisplayValueLabel->setText("No Event");
|
|
m_pDisplayValueLabel->setFontName(font_UITextButtonTest);
|
|
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("TextButton");
|
|
alert->setFontName(font_UITextButtonTest);
|
|
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 text button
|
|
UIButton* textButton = UIButton::create();
|
|
textButton->setTouchEnabled(true);
|
|
textButton->loadTextures("cocosgui/backtotopnormal.png", "cocosgui/backtotoppressed.png", "");
|
|
textButton->setTitleText("Text Button");
|
|
textButton->setPosition(Point(widgetSize.width / 2.0f, widgetSize.height / 2.0f));
|
|
textButton->addTouchEventListener(this, toucheventselector(UITextButtonTest::touchEvent));
|
|
m_pUiLayer->addWidget(textButton);
|
|
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
void UITextButtonTest::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;
|
|
}
|
|
}
|
|
|
|
// UITextButtonTest_Scale9
|
|
UITextButtonTest_Scale9::UITextButtonTest_Scale9()
|
|
: m_pDisplayValueLabel(NULL)
|
|
{
|
|
|
|
}
|
|
|
|
UITextButtonTest_Scale9::~UITextButtonTest_Scale9()
|
|
{
|
|
|
|
}
|
|
|
|
bool UITextButtonTest_Scale9::init()
|
|
{
|
|
if (UIScene::init())
|
|
{
|
|
Size widgetSize = m_pWidget->getSize();
|
|
|
|
// Add a label in which the text button events will be displayed
|
|
m_pDisplayValueLabel = UILabel::create();
|
|
m_pDisplayValueLabel->setText("No Event");
|
|
m_pDisplayValueLabel->setFontName(font_UITextButtonTest);
|
|
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("TextButton scale9 render");
|
|
alert->setFontName(font_UITextButtonTest);
|
|
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 text button
|
|
UIButton* textButton = UIButton::create();
|
|
textButton->setTouchEnabled(true);
|
|
textButton->setScale9Enabled(true);
|
|
textButton->loadTextures("cocosgui/button.png", "cocosgui/buttonHighlighted.png", "");
|
|
textButton->setSize(Size(180, textButton->getContentSize().height * 1.5f));
|
|
textButton->setTitleText("Text Button scale9 render");
|
|
textButton->setPosition(Point(widgetSize.width / 2.0f, widgetSize.height / 2.0f));
|
|
textButton->addTouchEventListener(this, toucheventselector(UITextButtonTest::touchEvent));
|
|
m_pUiLayer->addWidget(textButton);
|
|
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
void UITextButtonTest_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;
|
|
}
|
|
} |