/**************************************************************************** Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd. https://axmolengine.github.io/ 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. ****************************************************************************/ #ifndef __TestCpp__UIRichTextTest__ #define __TestCpp__UIRichTextTest__ #include "../UIScene.h" DEFINE_TEST_SUITE(UIRichTextTests); class UIRichTextTestBase : public UIScene { public: UIRichTextTestBase() = default; ~UIRichTextTestBase() override = 0; // Pure virtual to prevent instancing this class 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); protected: virtual void createButtonPanel(); ax::ui::RichText* _richText{}; ax::Vec2 _defaultContentSize; }; inline UIRichTextTestBase::~UIRichTextTestBase() = default; class UIRichTextTest : public UIRichTextTestBase { public: CREATE_FUNC(UIRichTextTest); bool init() override; }; class UIRichTextXMLBasic : public UIRichTextTestBase { public: CREATE_FUNC(UIRichTextXMLBasic); bool init() override; }; class UIRichTextXMLSmallBig : public UIRichTextTestBase { public: CREATE_FUNC(UIRichTextXMLSmallBig); bool init() override; }; class UIRichTextXMLColor : public UIRichTextTestBase { public: CREATE_FUNC(UIRichTextXMLColor); bool init() override; }; class UIRichTextXMLSUIB : public UIRichTextTestBase { public: CREATE_FUNC(UIRichTextXMLSUIB); bool init() override; }; class UIRichTextXMLSUIB2 : public UIRichTextTestBase { public: CREATE_FUNC(UIRichTextXMLSUIB2); bool init() override; }; class UIRichTextXMLSUIB3 : public UIRichTextTestBase { public: CREATE_FUNC(UIRichTextXMLSUIB3); bool init() override; }; class UIRichTextXMLImg : public UIRichTextTestBase { public: CREATE_FUNC(UIRichTextXMLImg); bool init() override; }; class UIRichTextXMLUrl : public UIRichTextTestBase { public: CREATE_FUNC(UIRichTextXMLUrl); bool init() override; }; class UIRichTextXMLUrlImg : public UIRichTextTestBase { public: CREATE_FUNC(UIRichTextXMLUrlImg); bool init() override; }; class UIRichTextXMLFace : public UIRichTextTestBase { public: CREATE_FUNC(UIRichTextXMLFace); bool init() override; }; class UIRichTextXMLBR : public UIRichTextTestBase { public: CREATE_FUNC(UIRichTextXMLBR); bool init() override; }; class UIRichTextXMLInvalid : public UIRichTextTestBase { public: CREATE_FUNC(UIRichTextXMLInvalid); bool init() override; }; class UIRichTextXMLOutline : public UIRichTextTestBase { public: CREATE_FUNC(UIRichTextXMLOutline); bool init() override; }; class UIRichTextXMLShadow : public UIRichTextTestBase { public: CREATE_FUNC(UIRichTextXMLShadow); bool init() override; }; class UIRichTextXMLGlow : public UIRichTextTestBase { public: CREATE_FUNC(UIRichTextXMLGlow); bool init() override; }; class UIRichTextXMLExtend : public UIRichTextTestBase { public: CREATE_FUNC(UIRichTextXMLExtend); bool init() override; }; class UIRichTextXMLSpace : public UIRichTextTestBase { public: CREATE_FUNC(UIRichTextXMLSpace); bool init() override; }; class UIRichTextNewline : public UIRichTextTestBase { public: CREATE_FUNC(UIRichTextNewline); bool init() override; }; #endif /* defined(__TestCpp__UIRichTextTest__) */