2019-11-23 20:27:39 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
|
2022-02-24 18:30:58 +08:00
|
|
|
Copyright (c) 2021-2022 Bytedance Inc.
|
2021-12-31 12:12:40 +08:00
|
|
|
|
2022-02-24 18:30:58 +08:00
|
|
|
https://adxeproject.github.io/
|
2021-12-31 12:12:40 +08:00
|
|
|
|
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:
|
2021-12-31 12:12:40 +08:00
|
|
|
|
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.
|
2021-12-31 12:12:40 +08:00
|
|
|
|
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.
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include "CocosGUIScene.h"
|
|
|
|
|
|
|
|
#include "UIButtonTest/UIButtonTest.h"
|
|
|
|
#include "UICheckBoxTest/UICheckBoxTest.h"
|
|
|
|
#include "UIRadioButtonTest/UIRadioButtonTest.h"
|
|
|
|
#include "UISliderTest/UISliderTest.h"
|
|
|
|
#include "UIImageViewTest/UIImageViewTest.h"
|
|
|
|
#include "UILoadingBarTest/UILoadingBarTest.h"
|
|
|
|
#include "UITextAtlasTest/UITextAtlasTest.h"
|
|
|
|
#include "UITextTest/UITextTest.h"
|
|
|
|
#include "UITextBMFontTest/UITextBMFontTest.h"
|
|
|
|
#include "UITextFieldTest/UITextFieldTest.h"
|
|
|
|
#include "UILayoutTest/UILayoutTest.h"
|
|
|
|
#include "UIScrollViewTest/UIScrollViewTest.h"
|
|
|
|
#include "UIPageViewTest/UIPageViewTest.h"
|
|
|
|
#include "UIListViewTest/UIListViewTest.h"
|
|
|
|
#include "UIWidgetAddNodeTest/UIWidgetAddNodeTest.h"
|
|
|
|
#include "UIRichTextTest/UIRichTextTest.h"
|
|
|
|
#include "UIFocusTest/UIFocusTest.h"
|
|
|
|
#include "UITabControlTest/UITabControlTest.h"
|
|
|
|
|
2022-02-24 19:00:49 +08:00
|
|
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID || CC_TARGET_PLATFORM == CC_PLATFORM_IOS || \
|
|
|
|
CC_TARGET_PLATFORM == CC_PLATFORM_WIN32) !defined(CC_TARGET_OS_TVOS)
|
2021-12-31 12:12:40 +08:00
|
|
|
# include "UIVideoPlayerTest/UIVideoPlayerTest.h"
|
2022-02-24 18:30:58 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID || CC_TARGET_PLATFORM == CC_PLATFORM_IOS) && !defined(CC_TARGET_OS_TVOS)
|
2021-12-31 12:12:40 +08:00
|
|
|
# include "UIWebViewTest/UIWebViewTest.h"
|
2019-11-23 20:27:39 +08:00
|
|
|
#endif
|
|
|
|
#include "UIScale9SpriteTest.h"
|
2021-12-31 12:12:40 +08:00
|
|
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_IOS) || (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID) || \
|
|
|
|
(CC_TARGET_PLATFORM == CC_PLATFORM_MAC) || (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32)
|
|
|
|
# include "UIEditBoxTest.h"
|
2019-11-23 20:27:39 +08:00
|
|
|
#endif
|
2021-12-31 12:12:40 +08:00
|
|
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32)
|
|
|
|
# include "UIWebViewTest/UIWebViewTest.h"
|
2021-10-04 15:55:01 +08:00
|
|
|
#endif
|
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
GUIDynamicCreateTests::GUIDynamicCreateTests()
|
|
|
|
{
|
2022-02-24 19:00:49 +08:00
|
|
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID || CC_TARGET_PLATFORM == CC_PLATFORM_IOS || \
|
|
|
|
CC_TARGET_PLATFORM == CC_PLATFORM_WIN32) !defined(CC_TARGET_OS_TVOS)
|
2021-12-31 12:12:40 +08:00
|
|
|
addTest("VideoPlayer Test", []() { return new VideoPlayerTests; });
|
2021-10-04 15:55:01 +08:00
|
|
|
#endif
|
2021-12-31 12:12:40 +08:00
|
|
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID || CC_TARGET_PLATFORM == CC_PLATFORM_IOS) && \
|
|
|
|
!defined(CC_TARGET_OS_TVOS) || \
|
|
|
|
(CC_TARGET_PLATFORM == CC_PLATFORM_WIN32)
|
|
|
|
addTest("WebView Test", []() { return new WebViewTests; });
|
2019-11-23 20:27:39 +08:00
|
|
|
#endif
|
2021-12-31 12:12:40 +08:00
|
|
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_IOS) || (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID) || \
|
|
|
|
(CC_TARGET_PLATFORM == CC_PLATFORM_MAC) || (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32)
|
|
|
|
addTest("EditBox Test", []() { return new UIEditBoxTests; });
|
2019-11-23 20:27:39 +08:00
|
|
|
#endif
|
2021-12-31 12:12:40 +08:00
|
|
|
addTest("Focus Test", []() { return new UIFocusTests; });
|
|
|
|
addTest("Scale9Sprite Test", []() { return new UIScale9SpriteTests; });
|
|
|
|
addTest("Button Test", []() { return new UIButtonTests; });
|
|
|
|
addTest("CheckBox Test", []() { return new UICheckBoxTests; });
|
|
|
|
addTest("RadioButton Test", []() { return new UIRadioButtonTests; });
|
|
|
|
addTest("Slider Test", []() { return new UISliderTests; });
|
|
|
|
|
|
|
|
addTest("ImageView Test", []() { return new UIImageViewTests; });
|
|
|
|
addTest("LoadingBar Test", []() { return new UILoadingBarTests; });
|
|
|
|
addTest("TextAtlas Test", []() { return new UITextAtlasTests; });
|
|
|
|
|
|
|
|
addTest("Text Test", []() { return new UITextTests; });
|
|
|
|
addTest("TextBMFont Test", []() { return new UITextBMFontTests; });
|
|
|
|
addTest("TextField Test", []() { return new UITextFieldTests; });
|
|
|
|
addTest("Layout Test", []() { return new UILayoutTests; });
|
|
|
|
|
|
|
|
addTest("ScrollView Test", []() { return new UIScrollViewTests; });
|
|
|
|
addTest("PageView Test", []() { return new UIPageViewTests; });
|
|
|
|
addTest("ListView Test", []() { return new UIListViewTests; });
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2021-12-31 12:12:40 +08:00
|
|
|
addTest("WidgetAddNode Test", []() { return new UIWidgetAddNodeTests; });
|
|
|
|
addTest("RichText Test", []() { return new UIRichTextTests; });
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2021-12-31 12:12:40 +08:00
|
|
|
addTest("TabControl Test", []() { return new UITabControlTests; });
|
2019-11-23 20:27:39 +08:00
|
|
|
}
|