axmol/tests/cpp-tests/Source/UITest/CocoStudioGUITest/UIRichTextTest/UIRichTextTest.h

207 lines
4.6 KiB
C
Raw Normal View History

2019-11-23 20:27:39 +08:00
/****************************************************************************
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
2022-10-01 16:24:52 +08:00
https://axmolengine.github.io/
2019-11-23 20:27:39 +08:00
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:
2019-11-23 20:27:39 +08:00
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
2019-11-23 20:27:39 +08:00
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.
****************************************************************************/
#ifndef __TestCpp__UIRichTextTest__
#define __TestCpp__UIRichTextTest__
#include "../UIScene.h"
DEFINE_TEST_SUITE(UIRichTextTests);
class UIRichTextTestBase : public UIScene
2019-11-23 20:27:39 +08:00
{
public:
UIRichTextTestBase() = default;
~UIRichTextTestBase() override = 0; // Pure virtual to prevent instancing this class
2019-11-23 20:27:39 +08:00
bool init() override;
virtual void touchEvent(Ref* pSender, ax::ui::Widget::TouchEventType type);
virtual void switchWrapMode(ax::Ref* sender, ax::ui::Widget::TouchEventType type);
virtual void switchHorizontalAlignment(ax::Ref* sender, ax::ui::Widget::TouchEventType type);
virtual void switchVerticalAlignment(ax::Ref* sender, ax::ui::Widget::TouchEventType type);
2019-11-23 20:27:39 +08:00
protected:
virtual void createButtonPanel();
ax::ui::RichText* _richText{};
ax::Vec2 _defaultContentSize;
2019-11-23 20:27:39 +08:00
};
inline UIRichTextTestBase::~UIRichTextTestBase() = default;
class UIRichTextTest : public UIRichTextTestBase
2019-11-23 20:27:39 +08:00
{
public:
CREATE_FUNC(UIRichTextTest);
2019-11-23 20:27:39 +08:00
bool init() override;
};
2019-11-23 20:27:39 +08:00
class UIRichTextXMLBasic : public UIRichTextTestBase
{
public:
CREATE_FUNC(UIRichTextXMLBasic);
bool init() override;
2019-11-23 20:27:39 +08:00
};
class UIRichTextXMLSmallBig : public UIRichTextTestBase
2019-11-23 20:27:39 +08:00
{
public:
CREATE_FUNC(UIRichTextXMLSmallBig);
bool init() override;
};
class UIRichTextXMLColor : public UIRichTextTestBase
2019-11-23 20:27:39 +08:00
{
public:
CREATE_FUNC(UIRichTextXMLColor);
bool init() override;
};
class UIRichTextXMLSUIB : public UIRichTextTestBase
2019-11-23 20:27:39 +08:00
{
public:
CREATE_FUNC(UIRichTextXMLSUIB);
bool init() override;
};
class UIRichTextXMLSUIB2 : public UIRichTextTestBase
2019-11-23 20:27:39 +08:00
{
public:
CREATE_FUNC(UIRichTextXMLSUIB2);
bool init() override;
};
class UIRichTextXMLSUIB3 : public UIRichTextTestBase
2019-11-23 20:27:39 +08:00
{
public:
CREATE_FUNC(UIRichTextXMLSUIB3);
bool init() override;
};
class UIRichTextXMLImg : public UIRichTextTestBase
2019-11-23 20:27:39 +08:00
{
public:
CREATE_FUNC(UIRichTextXMLImg);
bool init() override;
};
class UIRichTextXMLUrl : public UIRichTextTestBase
2019-11-23 20:27:39 +08:00
{
public:
CREATE_FUNC(UIRichTextXMLUrl);
bool init() override;
};
class UIRichTextXMLUrlImg : public UIRichTextTestBase
2019-11-23 20:27:39 +08:00
{
public:
CREATE_FUNC(UIRichTextXMLUrlImg);
2019-11-23 20:27:39 +08:00
bool init() override;
};
class UIRichTextXMLFace : public UIRichTextTestBase
2019-11-23 20:27:39 +08:00
{
public:
CREATE_FUNC(UIRichTextXMLFace);
bool init() override;
};
class UIRichTextXMLBR : public UIRichTextTestBase
2019-11-23 20:27:39 +08:00
{
public:
CREATE_FUNC(UIRichTextXMLBR);
bool init() override;
};
class UIRichTextXMLInvalid : public UIRichTextTestBase
2019-11-23 20:27:39 +08:00
{
public:
CREATE_FUNC(UIRichTextXMLInvalid);
bool init() override;
};
class UIRichTextXMLOutline : public UIRichTextTestBase
2019-11-23 20:27:39 +08:00
{
public:
CREATE_FUNC(UIRichTextXMLOutline);
2019-11-23 20:27:39 +08:00
bool init() override;
};
class UIRichTextXMLShadow : public UIRichTextTestBase
2019-11-23 20:27:39 +08:00
{
public:
CREATE_FUNC(UIRichTextXMLShadow);
2019-11-23 20:27:39 +08:00
bool init() override;
};
class UIRichTextXMLGlow : public UIRichTextTestBase
2019-11-23 20:27:39 +08:00
{
public:
CREATE_FUNC(UIRichTextXMLGlow);
2019-11-23 20:27:39 +08:00
bool init() override;
};
class UIRichTextXMLExtend : public UIRichTextTestBase
2019-11-23 20:27:39 +08:00
{
public:
CREATE_FUNC(UIRichTextXMLExtend);
2019-11-23 20:27:39 +08:00
bool init() override;
};
class UIRichTextXMLSpace : public UIRichTextTestBase
2019-11-23 20:27:39 +08:00
{
public:
CREATE_FUNC(UIRichTextXMLSpace);
2019-11-23 20:27:39 +08:00
bool init() override;
};
class UIRichTextNewline : public UIRichTextTestBase
{
public:
CREATE_FUNC(UIRichTextNewline);
bool init() override;
};
2019-11-23 20:27:39 +08:00
#endif /* defined(__TestCpp__UIRichTextTest__) */