2013-09-16 20:54:13 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2013 cocos2d-x.org
|
2018-01-29 16:25:32 +08:00
|
|
|
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
|
2013-09-16 20:54:13 +08:00
|
|
|
|
|
|
|
http://www.cocos2d-x.org
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
THE SOFTWARE.
|
|
|
|
****************************************************************************/
|
|
|
|
|
2014-03-04 16:51:35 +08:00
|
|
|
#ifndef __TestCpp__UITextTest__
|
|
|
|
#define __TestCpp__UITextTest__
|
2013-09-16 20:54:13 +08:00
|
|
|
|
|
|
|
#include "../UIScene.h"
|
|
|
|
|
2015-04-03 14:31:03 +08:00
|
|
|
DEFINE_TEST_SUITE(UITextTests);
|
|
|
|
|
2014-03-04 16:51:35 +08:00
|
|
|
class UITextTest : public UIScene
|
2013-09-16 20:54:13 +08:00
|
|
|
{
|
|
|
|
public:
|
2015-04-03 14:31:03 +08:00
|
|
|
CREATE_FUNC(UITextTest);
|
|
|
|
|
|
|
|
virtual bool init() override;
|
2013-09-16 20:54:13 +08:00
|
|
|
};
|
|
|
|
|
2014-03-04 16:51:35 +08:00
|
|
|
class UITextTest_LineWrap : public UIScene
|
2013-12-23 15:35:35 +08:00
|
|
|
{
|
|
|
|
public:
|
2015-04-03 14:31:03 +08:00
|
|
|
CREATE_FUNC(UITextTest_LineWrap);
|
|
|
|
|
|
|
|
virtual bool init() override;
|
2013-12-23 15:35:35 +08:00
|
|
|
};
|
|
|
|
|
2014-06-09 14:34:46 +08:00
|
|
|
|
2013-12-23 15:35:35 +08:00
|
|
|
class UILabelTest_Effect : public UIScene
|
|
|
|
{
|
|
|
|
public:
|
2015-04-03 14:31:03 +08:00
|
|
|
CREATE_FUNC(UILabelTest_Effect);
|
|
|
|
|
|
|
|
virtual bool init() override;
|
2013-12-23 15:35:35 +08:00
|
|
|
};
|
2014-06-09 14:34:46 +08:00
|
|
|
|
2013-12-23 15:35:35 +08:00
|
|
|
|
2014-03-04 16:51:35 +08:00
|
|
|
class UITextTest_TTF : public UIScene
|
2013-12-23 15:35:35 +08:00
|
|
|
{
|
|
|
|
public:
|
2015-04-03 14:31:03 +08:00
|
|
|
CREATE_FUNC(UITextTest_TTF);
|
|
|
|
|
|
|
|
virtual bool init() override;
|
2013-12-23 15:35:35 +08:00
|
|
|
};
|
|
|
|
|
2017-03-15 13:51:37 +08:00
|
|
|
class UITextTest_IgnoreContentSize : public UIScene
|
2014-11-26 15:05:20 +08:00
|
|
|
{
|
|
|
|
public:
|
2017-03-15 13:51:37 +08:00
|
|
|
CREATE_FUNC(UITextTest_IgnoreContentSize);
|
2015-04-03 14:31:03 +08:00
|
|
|
|
|
|
|
virtual bool init() override;
|
2014-11-26 15:05:20 +08:00
|
|
|
};
|
|
|
|
|
2015-12-10 13:17:31 +08:00
|
|
|
class UITextTest_Clone : public UIScene
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CREATE_FUNC(UITextTest_Clone);
|
|
|
|
|
|
|
|
virtual bool init() override;
|
|
|
|
};
|
|
|
|
|
2016-07-09 07:59:44 +08:00
|
|
|
class Issue16073Test : public UIScene
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CREATE_FUNC(Issue16073Test);
|
|
|
|
|
|
|
|
virtual bool init() override;
|
|
|
|
};
|
|
|
|
|
2014-03-04 16:51:35 +08:00
|
|
|
#endif /* defined(__TestCpp__UITextTest__) */
|