2013-08-13 04:29:54 +08:00
|
|
|
#ifndef _ATLAS_TEST_NEW_H_
|
|
|
|
#define _ATLAS_TEST_NEW_H_
|
|
|
|
|
|
|
|
#include "../BaseTest.h"
|
2014-04-30 08:37:36 +08:00
|
|
|
#include "renderer/CCCustomCommand.h"
|
2014-03-11 17:13:54 +08:00
|
|
|
#include "ui/CocosGUI.h"
|
2013-08-13 04:29:54 +08:00
|
|
|
|
2015-04-03 14:31:03 +08:00
|
|
|
DEFINE_TEST_SUITE(NewLabelTests);
|
2013-08-13 04:29:54 +08:00
|
|
|
|
2015-04-03 14:31:03 +08:00
|
|
|
class AtlasDemoNew : public TestCase
|
2013-08-13 04:29:54 +08:00
|
|
|
{
|
|
|
|
};
|
|
|
|
|
|
|
|
class LabelTTFAlignmentNew : public AtlasDemoNew
|
|
|
|
{
|
|
|
|
public:
|
2013-11-14 09:36:33 +08:00
|
|
|
CREATE_FUNC(LabelTTFAlignmentNew);
|
|
|
|
|
2013-08-13 04:29:54 +08:00
|
|
|
LabelTTFAlignmentNew();
|
2013-12-19 05:52:10 +08:00
|
|
|
virtual std::string title() const override;
|
|
|
|
virtual std::string subtitle() const override;
|
2013-08-13 04:29:54 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
class LabelFNTColorAndOpacity : public AtlasDemoNew
|
|
|
|
{
|
|
|
|
float _time;
|
|
|
|
public:
|
2013-11-14 09:36:33 +08:00
|
|
|
CREATE_FUNC(LabelFNTColorAndOpacity);
|
|
|
|
|
2013-08-13 04:29:54 +08:00
|
|
|
LabelFNTColorAndOpacity();
|
|
|
|
|
|
|
|
virtual void step(float dt);
|
|
|
|
|
2013-12-19 05:52:10 +08:00
|
|
|
virtual std::string title() const override;
|
|
|
|
virtual std::string subtitle() const override;
|
2013-08-13 04:29:54 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
class LabelFNTSpriteActions : public AtlasDemoNew
|
|
|
|
{
|
|
|
|
float _time;
|
|
|
|
public:
|
2013-11-14 09:36:33 +08:00
|
|
|
CREATE_FUNC(LabelFNTSpriteActions);
|
|
|
|
|
2013-08-13 04:29:54 +08:00
|
|
|
LabelFNTSpriteActions();
|
|
|
|
virtual void step(float dt);
|
|
|
|
|
2013-12-19 05:52:10 +08:00
|
|
|
virtual std::string title() const override;
|
|
|
|
virtual std::string subtitle() const override;
|
2013-08-13 04:29:54 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
class LabelFNTPadding : public AtlasDemoNew
|
|
|
|
{
|
|
|
|
public:
|
2013-11-14 09:36:33 +08:00
|
|
|
CREATE_FUNC(LabelFNTPadding);
|
|
|
|
|
2013-08-13 04:29:54 +08:00
|
|
|
LabelFNTPadding();
|
2013-12-19 05:52:10 +08:00
|
|
|
virtual std::string title() const override;
|
|
|
|
virtual std::string subtitle() const override;
|
2013-08-13 04:29:54 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class LabelFNTOffset : public AtlasDemoNew
|
|
|
|
{
|
|
|
|
public:
|
2013-11-14 09:36:33 +08:00
|
|
|
CREATE_FUNC(LabelFNTOffset);
|
|
|
|
|
2013-08-13 04:29:54 +08:00
|
|
|
LabelFNTOffset();
|
2013-12-19 05:52:10 +08:00
|
|
|
virtual std::string title() const override;
|
|
|
|
virtual std::string subtitle() const override;
|
2013-08-13 04:29:54 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
class LabelFNTColor : public AtlasDemoNew
|
|
|
|
{
|
|
|
|
public:
|
2013-11-14 09:36:33 +08:00
|
|
|
CREATE_FUNC(LabelFNTColor);
|
|
|
|
|
2013-08-13 04:29:54 +08:00
|
|
|
LabelFNTColor();
|
2013-12-19 05:52:10 +08:00
|
|
|
virtual std::string title() const override;
|
2013-08-13 04:29:54 +08:00
|
|
|
|
2013-12-19 05:52:10 +08:00
|
|
|
virtual std::string subtitle() const override;
|
2013-08-13 04:29:54 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
class LabelFNTHundredLabels : public AtlasDemoNew
|
|
|
|
{
|
|
|
|
public:
|
2013-11-14 09:36:33 +08:00
|
|
|
CREATE_FUNC(LabelFNTHundredLabels);
|
|
|
|
|
2013-08-13 04:29:54 +08:00
|
|
|
LabelFNTHundredLabels();
|
2013-12-19 05:52:10 +08:00
|
|
|
virtual std::string title() const override;
|
|
|
|
virtual std::string subtitle() const override;
|
2013-08-13 04:29:54 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
class LabelFNTMultiLine : public AtlasDemoNew
|
|
|
|
{
|
|
|
|
public:
|
2013-11-14 09:36:33 +08:00
|
|
|
CREATE_FUNC(LabelFNTMultiLine);
|
|
|
|
|
2013-08-13 04:29:54 +08:00
|
|
|
LabelFNTMultiLine();
|
2013-12-19 05:52:10 +08:00
|
|
|
virtual std::string title() const override;
|
|
|
|
virtual std::string subtitle() const override;
|
2013-08-13 04:29:54 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
class LabelFNTandTTFEmpty : public AtlasDemoNew
|
|
|
|
{
|
|
|
|
public:
|
2013-11-14 09:36:33 +08:00
|
|
|
CREATE_FUNC(LabelFNTandTTFEmpty);
|
|
|
|
|
2013-08-13 04:29:54 +08:00
|
|
|
LabelFNTandTTFEmpty();
|
|
|
|
void updateStrings(float dt);
|
2013-12-19 05:52:10 +08:00
|
|
|
virtual std::string title() const override;
|
|
|
|
virtual std::string subtitle() const override;
|
2013-08-13 04:29:54 +08:00
|
|
|
|
|
|
|
private:
|
|
|
|
bool setEmpty;
|
|
|
|
};
|
|
|
|
|
|
|
|
class LabelFNTRetina : public AtlasDemoNew
|
|
|
|
{
|
|
|
|
public:
|
2013-11-14 09:36:33 +08:00
|
|
|
CREATE_FUNC(LabelFNTRetina);
|
|
|
|
|
2013-08-13 04:29:54 +08:00
|
|
|
LabelFNTRetina();
|
2013-12-19 05:52:10 +08:00
|
|
|
virtual std::string title() const override;
|
|
|
|
virtual std::string subtitle() const override;
|
2013-08-13 04:29:54 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
class LabelFNTGlyphDesigner : public AtlasDemoNew
|
|
|
|
{
|
|
|
|
public:
|
2013-11-14 09:36:33 +08:00
|
|
|
CREATE_FUNC(LabelFNTGlyphDesigner);
|
|
|
|
|
2013-08-13 04:29:54 +08:00
|
|
|
LabelFNTGlyphDesigner();
|
2013-12-19 05:52:10 +08:00
|
|
|
virtual std::string title() const override;
|
|
|
|
virtual std::string subtitle() const override;
|
2013-08-13 04:29:54 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
class LabelTTFUnicodeChinese : public AtlasDemoNew
|
|
|
|
{
|
|
|
|
public:
|
2013-11-14 09:36:33 +08:00
|
|
|
CREATE_FUNC(LabelTTFUnicodeChinese);
|
|
|
|
|
2013-08-13 04:29:54 +08:00
|
|
|
LabelTTFUnicodeChinese();
|
2013-12-19 05:52:10 +08:00
|
|
|
virtual std::string title() const override;
|
|
|
|
virtual std::string subtitle() const override;
|
2013-08-13 04:29:54 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
class LabelFNTUnicodeChinese : public AtlasDemoNew
|
|
|
|
{
|
|
|
|
public:
|
2013-11-14 09:36:33 +08:00
|
|
|
CREATE_FUNC(LabelFNTUnicodeChinese);
|
|
|
|
|
2013-08-13 04:29:54 +08:00
|
|
|
LabelFNTUnicodeChinese();
|
2013-12-19 05:52:10 +08:00
|
|
|
virtual std::string title() const override;
|
|
|
|
virtual std::string subtitle() const override;
|
2013-08-13 04:29:54 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
class LabelFNTMultiLineAlignment : public AtlasDemoNew
|
|
|
|
{
|
|
|
|
public:
|
2013-11-14 09:36:33 +08:00
|
|
|
CREATE_FUNC(LabelFNTMultiLineAlignment);
|
|
|
|
|
2013-08-13 04:29:54 +08:00
|
|
|
LabelFNTMultiLineAlignment();
|
|
|
|
~LabelFNTMultiLineAlignment();
|
|
|
|
void snapArrowsToEdge();
|
2013-12-19 05:52:10 +08:00
|
|
|
virtual std::string title() const override;
|
|
|
|
virtual std::string subtitle() const override;
|
2015-04-09 08:37:30 +08:00
|
|
|
void stringChanged(cocos2d::Ref* sender);
|
|
|
|
void alignmentChanged(cocos2d::Ref* sender);
|
|
|
|
void onTouchesBegan(const std::vector<cocos2d::Touch*>& touches, cocos2d::Event* event);
|
|
|
|
void onTouchesEnded(const std::vector<cocos2d::Touch*>& touches, cocos2d::Event* event);
|
|
|
|
void onTouchesMoved(const std::vector<cocos2d::Touch*>& touches, cocos2d::Event* event);
|
2013-08-13 04:29:54 +08:00
|
|
|
|
|
|
|
public:
|
2015-04-09 08:37:30 +08:00
|
|
|
cocos2d::Label* _labelShouldRetain;
|
|
|
|
cocos2d::Sprite* _arrowsBarShouldRetain;
|
|
|
|
cocos2d::Sprite* _arrowsShouldRetain;
|
|
|
|
cocos2d::MenuItemFont *_lastSentenceItem, *_lastAlignmentItem;
|
2013-08-13 04:29:54 +08:00
|
|
|
bool _drag;
|
|
|
|
};
|
|
|
|
|
|
|
|
class LabelFNTUNICODELanguages : public AtlasDemoNew
|
|
|
|
{
|
|
|
|
public:
|
2013-11-14 09:36:33 +08:00
|
|
|
CREATE_FUNC(LabelFNTUNICODELanguages);
|
|
|
|
|
2013-08-13 04:29:54 +08:00
|
|
|
LabelFNTUNICODELanguages();
|
|
|
|
|
2013-12-19 05:52:10 +08:00
|
|
|
virtual std::string title() const override;
|
|
|
|
virtual std::string subtitle() const override;
|
2013-08-13 04:29:54 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
class LabelFNTBounds : public AtlasDemoNew
|
|
|
|
{
|
|
|
|
public:
|
2013-11-14 09:36:33 +08:00
|
|
|
CREATE_FUNC(LabelFNTBounds);
|
|
|
|
|
2013-08-13 04:29:54 +08:00
|
|
|
LabelFNTBounds();
|
|
|
|
|
2013-12-19 05:52:10 +08:00
|
|
|
virtual std::string title() const override;
|
|
|
|
virtual std::string subtitle() const override;
|
2013-08-13 04:29:54 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
class LabelTTFLongLineWrapping : public AtlasDemoNew
|
|
|
|
{
|
|
|
|
public:
|
2013-11-14 09:36:33 +08:00
|
|
|
CREATE_FUNC(LabelTTFLongLineWrapping);
|
2013-08-13 04:29:54 +08:00
|
|
|
|
|
|
|
LabelTTFLongLineWrapping();
|
|
|
|
|
2013-12-19 05:52:10 +08:00
|
|
|
virtual std::string title() const override;
|
|
|
|
virtual std::string subtitle() const override;
|
2013-08-13 04:29:54 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
class LabelTTFColor : public AtlasDemoNew
|
|
|
|
{
|
|
|
|
public:
|
2013-11-14 09:36:33 +08:00
|
|
|
CREATE_FUNC(LabelTTFColor);
|
2013-08-13 04:29:54 +08:00
|
|
|
|
|
|
|
LabelTTFColor();
|
|
|
|
|
2013-12-19 05:52:10 +08:00
|
|
|
virtual std::string title() const override;
|
|
|
|
virtual std::string subtitle() const override;
|
2013-08-13 04:29:54 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
class LabelTTFUnicodeNew : public AtlasDemoNew
|
|
|
|
{
|
|
|
|
public:
|
2013-11-14 09:36:33 +08:00
|
|
|
CREATE_FUNC(LabelTTFUnicodeNew);
|
|
|
|
|
2013-08-13 04:29:54 +08:00
|
|
|
LabelTTFUnicodeNew();
|
|
|
|
|
2013-12-19 05:52:10 +08:00
|
|
|
virtual std::string title() const override;
|
|
|
|
virtual std::string subtitle() const override;
|
2013-08-13 04:29:54 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
class LabelTTFDynamicAlignment : public AtlasDemoNew
|
|
|
|
{
|
|
|
|
public:
|
2013-11-14 09:36:33 +08:00
|
|
|
CREATE_FUNC(LabelTTFDynamicAlignment);
|
|
|
|
|
2013-08-13 04:29:54 +08:00
|
|
|
LabelTTFDynamicAlignment();
|
2013-12-19 05:52:10 +08:00
|
|
|
virtual std::string title() const override;
|
|
|
|
virtual std::string subtitle() const override;
|
2013-08-13 04:29:54 +08:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
2015-04-09 08:37:30 +08:00
|
|
|
void setAlignmentLeft(cocos2d::Ref* sender);
|
|
|
|
void setAlignmentCenter(cocos2d::Ref* sender);
|
|
|
|
void setAlignmentRight(cocos2d::Ref* sender);
|
2013-08-13 04:29:54 +08:00
|
|
|
void updateAlignment();
|
|
|
|
|
2015-04-09 08:37:30 +08:00
|
|
|
cocos2d::Label* _label;
|
|
|
|
cocos2d::TextHAlignment _horizAlign;
|
2013-08-13 04:29:54 +08:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2014-02-08 17:14:38 +08:00
|
|
|
class LabelTTFCJKWrappingTest : public AtlasDemoNew
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CREATE_FUNC(LabelTTFCJKWrappingTest);
|
|
|
|
|
|
|
|
LabelTTFCJKWrappingTest();
|
|
|
|
virtual std::string title() const override;
|
|
|
|
virtual std::string subtitle() const override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2013-08-13 04:29:54 +08:00
|
|
|
class LabelTTFFontsTestNew : public AtlasDemoNew
|
|
|
|
{
|
|
|
|
public:
|
2013-11-14 09:36:33 +08:00
|
|
|
CREATE_FUNC(LabelTTFFontsTestNew);
|
2013-08-13 04:29:54 +08:00
|
|
|
|
|
|
|
LabelTTFFontsTestNew();
|
|
|
|
|
2013-12-19 05:52:10 +08:00
|
|
|
virtual std::string title() const override;
|
|
|
|
virtual std::string subtitle() const override;
|
2013-08-13 04:29:54 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class LabelBMFontTestNew : public AtlasDemoNew
|
|
|
|
{
|
|
|
|
public:
|
2013-11-14 09:36:33 +08:00
|
|
|
CREATE_FUNC(LabelBMFontTestNew);
|
2013-08-13 04:29:54 +08:00
|
|
|
|
|
|
|
LabelBMFontTestNew();
|
|
|
|
|
2013-12-19 05:52:10 +08:00
|
|
|
virtual std::string title() const override;
|
|
|
|
virtual std::string subtitle() const override;
|
2013-08-13 04:29:54 +08:00
|
|
|
|
|
|
|
private:
|
|
|
|
};
|
|
|
|
|
|
|
|
class LabelFontDefTestNew : public AtlasDemoNew
|
|
|
|
{
|
|
|
|
public:
|
2013-11-14 09:36:33 +08:00
|
|
|
CREATE_FUNC(LabelFontDefTestNew);
|
2013-08-13 04:29:54 +08:00
|
|
|
|
|
|
|
LabelFontDefTestNew();
|
|
|
|
|
2013-12-19 05:52:10 +08:00
|
|
|
virtual std::string title() const override;
|
|
|
|
virtual std::string subtitle() const override;
|
2013-08-13 04:29:54 +08:00
|
|
|
|
|
|
|
private:
|
|
|
|
};
|
|
|
|
|
2013-12-13 12:42:15 +08:00
|
|
|
class LabelTTFDistanceField : public AtlasDemoNew
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CREATE_FUNC(LabelTTFDistanceField);
|
|
|
|
|
|
|
|
LabelTTFDistanceField();
|
|
|
|
|
2013-12-19 05:52:10 +08:00
|
|
|
virtual std::string title() const override;
|
|
|
|
virtual std::string subtitle() const override;
|
2013-12-13 12:42:15 +08:00
|
|
|
};
|
|
|
|
|
2014-03-05 15:54:40 +08:00
|
|
|
class LabelOutlineAndGlowTest : public AtlasDemoNew
|
2013-12-13 12:42:15 +08:00
|
|
|
{
|
|
|
|
public:
|
2014-03-05 15:54:40 +08:00
|
|
|
CREATE_FUNC(LabelOutlineAndGlowTest);
|
2013-12-13 12:42:15 +08:00
|
|
|
|
2014-03-05 15:54:40 +08:00
|
|
|
LabelOutlineAndGlowTest();
|
2013-12-13 12:42:15 +08:00
|
|
|
|
2013-12-19 05:52:10 +08:00
|
|
|
virtual std::string title() const override;
|
|
|
|
virtual std::string subtitle() const override;
|
2013-12-13 12:42:15 +08:00
|
|
|
};
|
2013-08-13 04:29:54 +08:00
|
|
|
|
2014-03-05 15:54:40 +08:00
|
|
|
class LabelShadowTest : public AtlasDemoNew
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CREATE_FUNC(LabelShadowTest);
|
|
|
|
|
|
|
|
LabelShadowTest();
|
|
|
|
|
|
|
|
virtual std::string title() const override;
|
|
|
|
virtual std::string subtitle() const override;
|
|
|
|
|
2015-04-09 08:37:30 +08:00
|
|
|
void sliderEvent(cocos2d::Ref* sender, cocos2d::ui::Slider::EventType type);
|
2014-03-05 15:54:40 +08:00
|
|
|
private:
|
2015-04-09 08:37:30 +08:00
|
|
|
cocos2d::Label* shadowLabelOutline;
|
|
|
|
cocos2d::Label* shadowLabelTTF;
|
|
|
|
cocos2d::Label* shadowLabelBMFont;
|
2014-03-05 15:54:40 +08:00
|
|
|
};
|
|
|
|
|
2014-01-16 16:37:29 +08:00
|
|
|
class LabelCharMapTest : public AtlasDemoNew
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CREATE_FUNC(LabelCharMapTest);
|
|
|
|
|
|
|
|
LabelCharMapTest();
|
|
|
|
|
|
|
|
virtual std::string title() const override;
|
|
|
|
virtual std::string subtitle() const override;
|
|
|
|
|
|
|
|
void step(float dt);
|
|
|
|
|
|
|
|
private:
|
|
|
|
float _time;
|
|
|
|
};
|
|
|
|
|
2014-01-24 15:02:42 +08:00
|
|
|
class LabelCharMapColorTest : public AtlasDemoNew
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CREATE_FUNC(LabelCharMapColorTest);
|
|
|
|
|
|
|
|
LabelCharMapColorTest();
|
|
|
|
|
|
|
|
virtual std::string title() const override;
|
|
|
|
virtual std::string subtitle() const override;
|
|
|
|
|
|
|
|
void step(float dt);
|
|
|
|
void actionFinishCallback();
|
|
|
|
|
|
|
|
private:
|
|
|
|
float _time;
|
|
|
|
};
|
|
|
|
|
2014-01-16 14:37:07 +08:00
|
|
|
class LabelCrashTest : public AtlasDemoNew
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CREATE_FUNC(LabelCrashTest);
|
|
|
|
|
|
|
|
LabelCrashTest();
|
|
|
|
|
|
|
|
virtual std::string title() const override;
|
|
|
|
virtual std::string subtitle() const override;
|
|
|
|
};
|
2013-08-13 04:29:54 +08:00
|
|
|
|
2014-01-23 16:16:30 +08:00
|
|
|
class LabelTTFOldNew : public AtlasDemoNew
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CREATE_FUNC(LabelTTFOldNew);
|
|
|
|
|
|
|
|
LabelTTFOldNew();
|
|
|
|
|
|
|
|
virtual std::string title() const override;
|
|
|
|
virtual std::string subtitle() const override;
|
|
|
|
};
|
|
|
|
|
2014-03-10 19:42:43 +08:00
|
|
|
class LabelFontNameTest : public AtlasDemoNew
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CREATE_FUNC(LabelFontNameTest);
|
|
|
|
|
|
|
|
LabelFontNameTest();
|
|
|
|
|
|
|
|
virtual std::string title() const override;
|
|
|
|
virtual std::string subtitle() const override;
|
|
|
|
};
|
|
|
|
|
2014-03-07 14:58:44 +08:00
|
|
|
class LabelAlignmentTest : public AtlasDemoNew
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CREATE_FUNC(LabelAlignmentTest);
|
|
|
|
|
|
|
|
LabelAlignmentTest();
|
|
|
|
virtual ~LabelAlignmentTest();
|
|
|
|
virtual std::string title() const override;
|
|
|
|
virtual std::string subtitle() const override;
|
|
|
|
private:
|
2015-04-09 08:37:30 +08:00
|
|
|
void setAlignmentLeft(cocos2d::Ref* sender);
|
|
|
|
void setAlignmentCenter(cocos2d::Ref* sender);
|
|
|
|
void setAlignmentRight(cocos2d::Ref* sender);
|
|
|
|
void setAlignmentTop(cocos2d::Ref* sender);
|
|
|
|
void setAlignmentMiddle(cocos2d::Ref* sender);
|
|
|
|
void setAlignmentBottom(cocos2d::Ref* sender);
|
2014-03-07 14:58:44 +08:00
|
|
|
const char* getCurrentAlignment();
|
|
|
|
|
2015-04-09 08:37:30 +08:00
|
|
|
cocos2d::Label* _label;
|
|
|
|
cocos2d::TextHAlignment _horizAlign;
|
|
|
|
cocos2d::TextVAlignment _vertAlign;
|
2014-03-07 14:58:44 +08:00
|
|
|
};
|
|
|
|
|
2014-03-18 10:26:45 +08:00
|
|
|
class LabelIssue4428Test : public AtlasDemoNew
|
2014-03-18 10:20:25 +08:00
|
|
|
{
|
|
|
|
public:
|
2014-03-18 10:26:45 +08:00
|
|
|
CREATE_FUNC(LabelIssue4428Test);
|
2014-03-18 10:20:25 +08:00
|
|
|
|
2014-03-18 10:26:45 +08:00
|
|
|
LabelIssue4428Test();
|
2014-03-18 10:20:25 +08:00
|
|
|
|
|
|
|
virtual std::string title() const override;
|
|
|
|
virtual std::string subtitle() const override;
|
|
|
|
};
|
|
|
|
|
2014-05-29 14:00:38 +08:00
|
|
|
class LabelIssue4999Test : public AtlasDemoNew
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CREATE_FUNC(LabelIssue4999Test);
|
|
|
|
|
|
|
|
LabelIssue4999Test();
|
|
|
|
|
|
|
|
virtual std::string title() const override;
|
|
|
|
virtual std::string subtitle() const override;
|
|
|
|
};
|
|
|
|
|
2014-06-18 18:01:55 +08:00
|
|
|
class LabelLineHeightTest : public AtlasDemoNew
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CREATE_FUNC(LabelLineHeightTest);
|
|
|
|
|
|
|
|
LabelLineHeightTest();
|
|
|
|
|
|
|
|
virtual std::string title() const override;
|
|
|
|
virtual std::string subtitle() const override;
|
|
|
|
|
2015-04-09 08:37:30 +08:00
|
|
|
void sliderEvent(cocos2d::Ref* sender, cocos2d::ui::Slider::EventType type);
|
2014-06-18 18:01:55 +08:00
|
|
|
private:
|
2015-04-09 08:37:30 +08:00
|
|
|
cocos2d::Label* label;
|
2014-06-18 18:01:55 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
class LabelAdditionalKerningTest : public AtlasDemoNew
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CREATE_FUNC(LabelAdditionalKerningTest);
|
|
|
|
|
|
|
|
LabelAdditionalKerningTest();
|
|
|
|
|
|
|
|
virtual std::string title() const override;
|
|
|
|
virtual std::string subtitle() const override;
|
|
|
|
|
2015-04-09 08:37:30 +08:00
|
|
|
void sliderEvent(cocos2d::Ref* sender, cocos2d::ui::Slider::EventType type);
|
2014-06-18 18:01:55 +08:00
|
|
|
private:
|
2015-04-09 08:37:30 +08:00
|
|
|
cocos2d::Label* label;
|
2014-06-18 18:01:55 +08:00
|
|
|
};
|
|
|
|
|
2014-10-08 18:22:35 +08:00
|
|
|
class LabelIssue8492Test : public AtlasDemoNew
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CREATE_FUNC(LabelIssue8492Test);
|
|
|
|
|
|
|
|
LabelIssue8492Test();
|
|
|
|
|
|
|
|
virtual std::string title() const override;
|
|
|
|
virtual std::string subtitle() const override;
|
|
|
|
};
|
|
|
|
|
2014-11-12 17:24:35 +08:00
|
|
|
class LabelMultilineWithOutline : public AtlasDemoNew
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CREATE_FUNC(LabelMultilineWithOutline);
|
|
|
|
|
|
|
|
LabelMultilineWithOutline();
|
|
|
|
|
|
|
|
virtual std::string title() const override;
|
|
|
|
virtual std::string subtitle() const override;
|
|
|
|
};
|
|
|
|
|
2013-08-13 04:29:54 +08:00
|
|
|
// we don't support linebreak mode
|
|
|
|
|
2014-11-27 11:03:11 +08:00
|
|
|
class LabelIssue9255Test : public AtlasDemoNew
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CREATE_FUNC(LabelIssue9255Test);
|
|
|
|
|
|
|
|
LabelIssue9255Test();
|
|
|
|
|
|
|
|
virtual std::string title() const override;
|
|
|
|
virtual std::string subtitle() const override;
|
|
|
|
};
|
|
|
|
|
2015-01-09 18:51:30 +08:00
|
|
|
class LabelSmallDimensionsTest : public AtlasDemoNew
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CREATE_FUNC(LabelSmallDimensionsTest);
|
|
|
|
|
|
|
|
LabelSmallDimensionsTest();
|
|
|
|
|
|
|
|
virtual std::string title() const override;
|
|
|
|
virtual std::string subtitle() const override;
|
|
|
|
};
|
|
|
|
|
2015-01-20 12:01:51 +08:00
|
|
|
class LabelIssue10089Test : public AtlasDemoNew
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CREATE_FUNC(LabelIssue10089Test);
|
|
|
|
|
|
|
|
LabelIssue10089Test();
|
|
|
|
|
|
|
|
virtual std::string title() const override;
|
|
|
|
virtual std::string subtitle() const override;
|
|
|
|
};
|
|
|
|
|
2015-01-20 16:50:50 +08:00
|
|
|
class LabelSystemFontColor : public AtlasDemoNew
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CREATE_FUNC(LabelSystemFontColor);
|
|
|
|
|
|
|
|
LabelSystemFontColor();
|
|
|
|
|
|
|
|
virtual std::string title() const override;
|
|
|
|
virtual std::string subtitle() const override;
|
|
|
|
};
|
2014-11-27 11:03:11 +08:00
|
|
|
|
2013-08-13 04:29:54 +08:00
|
|
|
#endif
|