2020-09-08 13:38:16 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
|
2023-12-08 00:13:39 +08:00
|
|
|
Copyright (c) 2019-present Axmol Engine contributors (see AUTHORS.md).
|
2020-09-08 13:38:16 +08:00
|
|
|
|
2024-06-10 02:25:43 +08:00
|
|
|
https://axmol.dev/
|
2020-09-08 13:38:16 +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:
|
|
|
|
|
|
|
|
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 _IMGUIEXT_TEST_H_
|
|
|
|
#define _IMGUIEXT_TEST_H_
|
|
|
|
|
2022-10-12 00:15:09 +08:00
|
|
|
#include "axmol.h"
|
2020-09-08 13:38:16 +08:00
|
|
|
#include "../BaseTest.h"
|
|
|
|
|
2023-09-01 16:31:14 +08:00
|
|
|
#if defined(AX_PLATFORM_PC) || (AX_TARGET_PLATFORM == AX_PLATFORM_ANDROID) || defined(__EMSCRIPTEN__)
|
2020-09-08 13:38:16 +08:00
|
|
|
|
2022-02-25 19:03:09 +08:00
|
|
|
DEFINE_TEST_SUITE(ImGuiTests);
|
2020-09-08 13:38:16 +08:00
|
|
|
|
2022-02-25 19:03:09 +08:00
|
|
|
class ImGuiTest : public TestCase
|
2020-09-08 13:38:16 +08:00
|
|
|
{
|
|
|
|
public:
|
2022-02-25 19:03:09 +08:00
|
|
|
CREATE_FUNC(ImGuiTest);
|
2020-09-08 13:38:16 +08:00
|
|
|
|
2022-02-25 19:03:09 +08:00
|
|
|
std::string title() const override { return "ImGui Test"; }
|
2020-09-08 13:38:16 +08:00
|
|
|
|
|
|
|
void onEnter() override;
|
|
|
|
void onDrawImGui();
|
|
|
|
void onExit() override;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2021-12-31 12:12:40 +08:00
|
|
|
#endif // _CURL_TEST_H_
|