├── .clang-format ├── .github ├── FUNDING.yml └── workflows │ ├── build.yml │ ├── clang-format.yml │ └── run-examples.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CMakeLists.txt ├── LICENSE.txt ├── README.md ├── ci ├── aqt-settings.ini ├── install-deps.sh └── verify-clangformat.sh ├── cmake ├── SpixConfig.cmake.in └── modules │ └── FindAnyRPC.cmake ├── devtools └── run-clang-format.sh ├── docs ├── architecture.md └── item-path.md ├── examples ├── CMakeLists.txt └── qtquick │ ├── Basic │ ├── CMakeLists.txt │ ├── ResultsView.qml │ ├── main.cpp │ ├── main.qml │ └── qml.qrc │ ├── BasicStandalone │ ├── CMakeLists.txt │ ├── README.md │ ├── ResultsView.qml │ ├── main.cpp │ ├── main.qml │ └── qml.qrc │ ├── CMakeLists.txt │ ├── GTest │ ├── CMakeLists.txt │ ├── ResultsView.qml │ ├── main.cpp │ ├── main.qml │ └── qml.qrc │ ├── GTestMouseClickPosition │ ├── CMakeLists.txt │ ├── ResultsView.qml │ ├── main.cpp │ ├── main.qml │ └── qml.qrc │ ├── GTestTypeFinder │ ├── CMakeLists.txt │ ├── ResultsView.qml │ ├── main.cpp │ ├── main.qml │ └── qml.qrc │ ├── ListGridView │ ├── CMakeLists.txt │ ├── ResultsView.qml │ ├── main.cpp │ ├── main.qml │ └── qml.qrc │ ├── RemoteCtrl │ ├── CMakeLists.txt │ ├── ResultsView.qml │ ├── main.cpp │ ├── main.qml │ ├── qml.qrc │ └── script │ │ ├── autogui.py │ │ ├── autogui_requirements.txt │ │ └── testScript.py │ └── RepeaterLoader │ ├── CMakeLists.txt │ ├── main.cpp │ ├── main.qml │ ├── main_gtest.cpp │ ├── qml.qrc │ ├── show_banana.qml │ ├── show_cucumber.qml │ ├── show_pear.qml │ └── show_tomato.qml └── libs ├── CMakeLists.txt ├── Core ├── CMakeLists.txt ├── cmake │ └── SpixCoreConfig.cmake.in ├── include │ └── Spix │ │ ├── AnyRpcServer.h │ │ ├── CommandExecuter │ │ ├── CommandEnvironment.h │ │ ├── CommandExecuter.h │ │ └── ExecuterState.h │ │ ├── Commands │ │ └── Command.h │ │ ├── Data │ │ ├── Geometry.h │ │ ├── ItemPath.h │ │ ├── ItemPathComponent.h │ │ ├── ItemPosition.h │ │ ├── PasteboardContent.h │ │ └── Variant.h │ │ ├── Events │ │ └── Identifiers.h │ │ ├── Scene │ │ ├── Events.h │ │ ├── Item.h │ │ └── Scene.h │ │ └── TestServer.h ├── src │ ├── AnyRpcServer.cpp │ ├── CommandExecuter │ │ ├── CommandEnvironment.cpp │ │ ├── CommandExecuter.cpp │ │ └── ExecuterState.cpp │ ├── Commands │ │ ├── ClickOnItem.cpp │ │ ├── ClickOnItem.h │ │ ├── Command.cpp │ │ ├── CustomCmd.cpp │ │ ├── CustomCmd.h │ │ ├── DragBegin.cpp │ │ ├── DragBegin.h │ │ ├── DragEnd.cpp │ │ ├── DragEnd.h │ │ ├── DropFromExt.cpp │ │ ├── DropFromExt.h │ │ ├── EnterKey.cpp │ │ ├── EnterKey.h │ │ ├── ExistsAndVisible.cpp │ │ ├── ExistsAndVisible.h │ │ ├── GetBoundingBox.cpp │ │ ├── GetBoundingBox.h │ │ ├── GetProperty.cpp │ │ ├── GetProperty.h │ │ ├── GetTestStatus.cpp │ │ ├── GetTestStatus.h │ │ ├── InputText.cpp │ │ ├── InputText.h │ │ ├── InvokeMethod.cpp │ │ ├── InvokeMethod.h │ │ ├── Quit.cpp │ │ ├── Quit.h │ │ ├── Screenshot.cpp │ │ ├── Screenshot.h │ │ ├── ScreenshotBase64.cpp │ │ ├── ScreenshotBase64.h │ │ ├── SetProperty.cpp │ │ ├── SetProperty.h │ │ ├── Wait.cpp │ │ ├── Wait.h │ │ ├── WaitForItem.cpp │ │ └── WaitForItem.h │ ├── Data │ │ ├── Geometry.cpp │ │ ├── ItemPath.cpp │ │ ├── ItemPathComponent.cpp │ │ ├── ItemPosition.cpp │ │ └── PasteboardContent.cpp │ ├── Scene │ │ └── Mock │ │ │ ├── MockEvents.cpp │ │ │ ├── MockEvents.h │ │ │ ├── MockItem.cpp │ │ │ ├── MockItem.h │ │ │ ├── MockScene.cpp │ │ │ └── MockScene.h │ ├── TestServer.cpp │ └── Utils │ │ ├── AnyRpcFunction.h │ │ ├── AnyRpcUtils.cpp │ │ ├── AnyRpcUtils.h │ │ ├── PathParser.cpp │ │ └── PathParser.h └── tests │ ├── CMakeLists.txt │ ├── CommandExecuter │ ├── CommandExecuter_test.cpp │ └── ExecuterState_test.cpp │ ├── Commands │ ├── ClickOnItem_test.cpp │ ├── DropFromExt_test.cpp │ └── GetProperty_test.cpp │ ├── Data │ ├── ItemPathComponent_test.cpp │ ├── ItemPath_test.cpp │ ├── ItemPosition_test.cpp │ └── PasteboardContent_test.cpp │ ├── Utils │ ├── AnyRpcFunction_test.cpp │ ├── AnyRpcUtils_test.cpp │ └── PathParser_test.cpp │ └── unittests_main.cpp └── Scenes └── QtQuick ├── CMakeLists.txt ├── cmake └── SpixQtQuickConfig.cmake.in ├── include └── Spix │ └── QtQmlBot.h ├── src ├── FindQtItem.cpp ├── FindQtItem.h ├── QtEvents.cpp ├── QtEvents.h ├── QtItem.cpp ├── QtItem.h ├── QtItemTools.cpp ├── QtItemTools.h ├── QtQmlBot.cpp ├── QtScene.cpp ├── QtScene.h └── Utils │ ├── DebugDump.cpp │ ├── DebugDump.h │ ├── QtEventRecorder.cpp │ └── QtEventRecorder.h └── tests ├── CMakeLists.txt ├── QtItemTools_test.cpp ├── QtItem_test.cpp ├── QtTestUtils.h └── unittests_main.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/clang-format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/.github/workflows/clang-format.yml -------------------------------------------------------------------------------- /.github/workflows/run-examples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/.github/workflows/run-examples.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/README.md -------------------------------------------------------------------------------- /ci/aqt-settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/ci/aqt-settings.ini -------------------------------------------------------------------------------- /ci/install-deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/ci/install-deps.sh -------------------------------------------------------------------------------- /ci/verify-clangformat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/ci/verify-clangformat.sh -------------------------------------------------------------------------------- /cmake/SpixConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/cmake/SpixConfig.cmake.in -------------------------------------------------------------------------------- /cmake/modules/FindAnyRPC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/cmake/modules/FindAnyRPC.cmake -------------------------------------------------------------------------------- /devtools/run-clang-format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/devtools/run-clang-format.sh -------------------------------------------------------------------------------- /docs/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/docs/architecture.md -------------------------------------------------------------------------------- /docs/item-path.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/docs/item-path.md -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/qtquick/Basic/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/examples/qtquick/Basic/CMakeLists.txt -------------------------------------------------------------------------------- /examples/qtquick/Basic/ResultsView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/examples/qtquick/Basic/ResultsView.qml -------------------------------------------------------------------------------- /examples/qtquick/Basic/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/examples/qtquick/Basic/main.cpp -------------------------------------------------------------------------------- /examples/qtquick/Basic/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/examples/qtquick/Basic/main.qml -------------------------------------------------------------------------------- /examples/qtquick/Basic/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/examples/qtquick/Basic/qml.qrc -------------------------------------------------------------------------------- /examples/qtquick/BasicStandalone/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/examples/qtquick/BasicStandalone/CMakeLists.txt -------------------------------------------------------------------------------- /examples/qtquick/BasicStandalone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/examples/qtquick/BasicStandalone/README.md -------------------------------------------------------------------------------- /examples/qtquick/BasicStandalone/ResultsView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/examples/qtquick/BasicStandalone/ResultsView.qml -------------------------------------------------------------------------------- /examples/qtquick/BasicStandalone/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/examples/qtquick/BasicStandalone/main.cpp -------------------------------------------------------------------------------- /examples/qtquick/BasicStandalone/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/examples/qtquick/BasicStandalone/main.qml -------------------------------------------------------------------------------- /examples/qtquick/BasicStandalone/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/examples/qtquick/BasicStandalone/qml.qrc -------------------------------------------------------------------------------- /examples/qtquick/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/examples/qtquick/CMakeLists.txt -------------------------------------------------------------------------------- /examples/qtquick/GTest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/examples/qtquick/GTest/CMakeLists.txt -------------------------------------------------------------------------------- /examples/qtquick/GTest/ResultsView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/examples/qtquick/GTest/ResultsView.qml -------------------------------------------------------------------------------- /examples/qtquick/GTest/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/examples/qtquick/GTest/main.cpp -------------------------------------------------------------------------------- /examples/qtquick/GTest/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/examples/qtquick/GTest/main.qml -------------------------------------------------------------------------------- /examples/qtquick/GTest/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/examples/qtquick/GTest/qml.qrc -------------------------------------------------------------------------------- /examples/qtquick/GTestMouseClickPosition/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/examples/qtquick/GTestMouseClickPosition/CMakeLists.txt -------------------------------------------------------------------------------- /examples/qtquick/GTestMouseClickPosition/ResultsView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/examples/qtquick/GTestMouseClickPosition/ResultsView.qml -------------------------------------------------------------------------------- /examples/qtquick/GTestMouseClickPosition/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/examples/qtquick/GTestMouseClickPosition/main.cpp -------------------------------------------------------------------------------- /examples/qtquick/GTestMouseClickPosition/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/examples/qtquick/GTestMouseClickPosition/main.qml -------------------------------------------------------------------------------- /examples/qtquick/GTestMouseClickPosition/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/examples/qtquick/GTestMouseClickPosition/qml.qrc -------------------------------------------------------------------------------- /examples/qtquick/GTestTypeFinder/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/examples/qtquick/GTestTypeFinder/CMakeLists.txt -------------------------------------------------------------------------------- /examples/qtquick/GTestTypeFinder/ResultsView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/examples/qtquick/GTestTypeFinder/ResultsView.qml -------------------------------------------------------------------------------- /examples/qtquick/GTestTypeFinder/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/examples/qtquick/GTestTypeFinder/main.cpp -------------------------------------------------------------------------------- /examples/qtquick/GTestTypeFinder/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/examples/qtquick/GTestTypeFinder/main.qml -------------------------------------------------------------------------------- /examples/qtquick/GTestTypeFinder/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/examples/qtquick/GTestTypeFinder/qml.qrc -------------------------------------------------------------------------------- /examples/qtquick/ListGridView/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/examples/qtquick/ListGridView/CMakeLists.txt -------------------------------------------------------------------------------- /examples/qtquick/ListGridView/ResultsView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/examples/qtquick/ListGridView/ResultsView.qml -------------------------------------------------------------------------------- /examples/qtquick/ListGridView/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/examples/qtquick/ListGridView/main.cpp -------------------------------------------------------------------------------- /examples/qtquick/ListGridView/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/examples/qtquick/ListGridView/main.qml -------------------------------------------------------------------------------- /examples/qtquick/ListGridView/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/examples/qtquick/ListGridView/qml.qrc -------------------------------------------------------------------------------- /examples/qtquick/RemoteCtrl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/examples/qtquick/RemoteCtrl/CMakeLists.txt -------------------------------------------------------------------------------- /examples/qtquick/RemoteCtrl/ResultsView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/examples/qtquick/RemoteCtrl/ResultsView.qml -------------------------------------------------------------------------------- /examples/qtquick/RemoteCtrl/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/examples/qtquick/RemoteCtrl/main.cpp -------------------------------------------------------------------------------- /examples/qtquick/RemoteCtrl/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/examples/qtquick/RemoteCtrl/main.qml -------------------------------------------------------------------------------- /examples/qtquick/RemoteCtrl/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/examples/qtquick/RemoteCtrl/qml.qrc -------------------------------------------------------------------------------- /examples/qtquick/RemoteCtrl/script/autogui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/examples/qtquick/RemoteCtrl/script/autogui.py -------------------------------------------------------------------------------- /examples/qtquick/RemoteCtrl/script/autogui_requirements.txt: -------------------------------------------------------------------------------- 1 | PyAutoGUI==0.9.52 2 | -------------------------------------------------------------------------------- /examples/qtquick/RemoteCtrl/script/testScript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/examples/qtquick/RemoteCtrl/script/testScript.py -------------------------------------------------------------------------------- /examples/qtquick/RepeaterLoader/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/examples/qtquick/RepeaterLoader/CMakeLists.txt -------------------------------------------------------------------------------- /examples/qtquick/RepeaterLoader/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/examples/qtquick/RepeaterLoader/main.cpp -------------------------------------------------------------------------------- /examples/qtquick/RepeaterLoader/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/examples/qtquick/RepeaterLoader/main.qml -------------------------------------------------------------------------------- /examples/qtquick/RepeaterLoader/main_gtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/examples/qtquick/RepeaterLoader/main_gtest.cpp -------------------------------------------------------------------------------- /examples/qtquick/RepeaterLoader/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/examples/qtquick/RepeaterLoader/qml.qrc -------------------------------------------------------------------------------- /examples/qtquick/RepeaterLoader/show_banana.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/examples/qtquick/RepeaterLoader/show_banana.qml -------------------------------------------------------------------------------- /examples/qtquick/RepeaterLoader/show_cucumber.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/examples/qtquick/RepeaterLoader/show_cucumber.qml -------------------------------------------------------------------------------- /examples/qtquick/RepeaterLoader/show_pear.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/examples/qtquick/RepeaterLoader/show_pear.qml -------------------------------------------------------------------------------- /examples/qtquick/RepeaterLoader/show_tomato.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/examples/qtquick/RepeaterLoader/show_tomato.qml -------------------------------------------------------------------------------- /libs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/CMakeLists.txt -------------------------------------------------------------------------------- /libs/Core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/CMakeLists.txt -------------------------------------------------------------------------------- /libs/Core/cmake/SpixCoreConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/cmake/SpixCoreConfig.cmake.in -------------------------------------------------------------------------------- /libs/Core/include/Spix/AnyRpcServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/include/Spix/AnyRpcServer.h -------------------------------------------------------------------------------- /libs/Core/include/Spix/CommandExecuter/CommandEnvironment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/include/Spix/CommandExecuter/CommandEnvironment.h -------------------------------------------------------------------------------- /libs/Core/include/Spix/CommandExecuter/CommandExecuter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/include/Spix/CommandExecuter/CommandExecuter.h -------------------------------------------------------------------------------- /libs/Core/include/Spix/CommandExecuter/ExecuterState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/include/Spix/CommandExecuter/ExecuterState.h -------------------------------------------------------------------------------- /libs/Core/include/Spix/Commands/Command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/include/Spix/Commands/Command.h -------------------------------------------------------------------------------- /libs/Core/include/Spix/Data/Geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/include/Spix/Data/Geometry.h -------------------------------------------------------------------------------- /libs/Core/include/Spix/Data/ItemPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/include/Spix/Data/ItemPath.h -------------------------------------------------------------------------------- /libs/Core/include/Spix/Data/ItemPathComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/include/Spix/Data/ItemPathComponent.h -------------------------------------------------------------------------------- /libs/Core/include/Spix/Data/ItemPosition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/include/Spix/Data/ItemPosition.h -------------------------------------------------------------------------------- /libs/Core/include/Spix/Data/PasteboardContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/include/Spix/Data/PasteboardContent.h -------------------------------------------------------------------------------- /libs/Core/include/Spix/Data/Variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/include/Spix/Data/Variant.h -------------------------------------------------------------------------------- /libs/Core/include/Spix/Events/Identifiers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/include/Spix/Events/Identifiers.h -------------------------------------------------------------------------------- /libs/Core/include/Spix/Scene/Events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/include/Spix/Scene/Events.h -------------------------------------------------------------------------------- /libs/Core/include/Spix/Scene/Item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/include/Spix/Scene/Item.h -------------------------------------------------------------------------------- /libs/Core/include/Spix/Scene/Scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/include/Spix/Scene/Scene.h -------------------------------------------------------------------------------- /libs/Core/include/Spix/TestServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/include/Spix/TestServer.h -------------------------------------------------------------------------------- /libs/Core/src/AnyRpcServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/src/AnyRpcServer.cpp -------------------------------------------------------------------------------- /libs/Core/src/CommandExecuter/CommandEnvironment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/src/CommandExecuter/CommandEnvironment.cpp -------------------------------------------------------------------------------- /libs/Core/src/CommandExecuter/CommandExecuter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/src/CommandExecuter/CommandExecuter.cpp -------------------------------------------------------------------------------- /libs/Core/src/CommandExecuter/ExecuterState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/src/CommandExecuter/ExecuterState.cpp -------------------------------------------------------------------------------- /libs/Core/src/Commands/ClickOnItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/src/Commands/ClickOnItem.cpp -------------------------------------------------------------------------------- /libs/Core/src/Commands/ClickOnItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/src/Commands/ClickOnItem.h -------------------------------------------------------------------------------- /libs/Core/src/Commands/Command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/src/Commands/Command.cpp -------------------------------------------------------------------------------- /libs/Core/src/Commands/CustomCmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/src/Commands/CustomCmd.cpp -------------------------------------------------------------------------------- /libs/Core/src/Commands/CustomCmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/src/Commands/CustomCmd.h -------------------------------------------------------------------------------- /libs/Core/src/Commands/DragBegin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/src/Commands/DragBegin.cpp -------------------------------------------------------------------------------- /libs/Core/src/Commands/DragBegin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/src/Commands/DragBegin.h -------------------------------------------------------------------------------- /libs/Core/src/Commands/DragEnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/src/Commands/DragEnd.cpp -------------------------------------------------------------------------------- /libs/Core/src/Commands/DragEnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/src/Commands/DragEnd.h -------------------------------------------------------------------------------- /libs/Core/src/Commands/DropFromExt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/src/Commands/DropFromExt.cpp -------------------------------------------------------------------------------- /libs/Core/src/Commands/DropFromExt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/src/Commands/DropFromExt.h -------------------------------------------------------------------------------- /libs/Core/src/Commands/EnterKey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/src/Commands/EnterKey.cpp -------------------------------------------------------------------------------- /libs/Core/src/Commands/EnterKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/src/Commands/EnterKey.h -------------------------------------------------------------------------------- /libs/Core/src/Commands/ExistsAndVisible.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/src/Commands/ExistsAndVisible.cpp -------------------------------------------------------------------------------- /libs/Core/src/Commands/ExistsAndVisible.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/src/Commands/ExistsAndVisible.h -------------------------------------------------------------------------------- /libs/Core/src/Commands/GetBoundingBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/src/Commands/GetBoundingBox.cpp -------------------------------------------------------------------------------- /libs/Core/src/Commands/GetBoundingBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/src/Commands/GetBoundingBox.h -------------------------------------------------------------------------------- /libs/Core/src/Commands/GetProperty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/src/Commands/GetProperty.cpp -------------------------------------------------------------------------------- /libs/Core/src/Commands/GetProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/src/Commands/GetProperty.h -------------------------------------------------------------------------------- /libs/Core/src/Commands/GetTestStatus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/src/Commands/GetTestStatus.cpp -------------------------------------------------------------------------------- /libs/Core/src/Commands/GetTestStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/src/Commands/GetTestStatus.h -------------------------------------------------------------------------------- /libs/Core/src/Commands/InputText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/src/Commands/InputText.cpp -------------------------------------------------------------------------------- /libs/Core/src/Commands/InputText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/src/Commands/InputText.h -------------------------------------------------------------------------------- /libs/Core/src/Commands/InvokeMethod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/src/Commands/InvokeMethod.cpp -------------------------------------------------------------------------------- /libs/Core/src/Commands/InvokeMethod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/src/Commands/InvokeMethod.h -------------------------------------------------------------------------------- /libs/Core/src/Commands/Quit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/src/Commands/Quit.cpp -------------------------------------------------------------------------------- /libs/Core/src/Commands/Quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/src/Commands/Quit.h -------------------------------------------------------------------------------- /libs/Core/src/Commands/Screenshot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/src/Commands/Screenshot.cpp -------------------------------------------------------------------------------- /libs/Core/src/Commands/Screenshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/src/Commands/Screenshot.h -------------------------------------------------------------------------------- /libs/Core/src/Commands/ScreenshotBase64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/src/Commands/ScreenshotBase64.cpp -------------------------------------------------------------------------------- /libs/Core/src/Commands/ScreenshotBase64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/src/Commands/ScreenshotBase64.h -------------------------------------------------------------------------------- /libs/Core/src/Commands/SetProperty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/src/Commands/SetProperty.cpp -------------------------------------------------------------------------------- /libs/Core/src/Commands/SetProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/src/Commands/SetProperty.h -------------------------------------------------------------------------------- /libs/Core/src/Commands/Wait.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/src/Commands/Wait.cpp -------------------------------------------------------------------------------- /libs/Core/src/Commands/Wait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/src/Commands/Wait.h -------------------------------------------------------------------------------- /libs/Core/src/Commands/WaitForItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/src/Commands/WaitForItem.cpp -------------------------------------------------------------------------------- /libs/Core/src/Commands/WaitForItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/src/Commands/WaitForItem.h -------------------------------------------------------------------------------- /libs/Core/src/Data/Geometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/src/Data/Geometry.cpp -------------------------------------------------------------------------------- /libs/Core/src/Data/ItemPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/src/Data/ItemPath.cpp -------------------------------------------------------------------------------- /libs/Core/src/Data/ItemPathComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/src/Data/ItemPathComponent.cpp -------------------------------------------------------------------------------- /libs/Core/src/Data/ItemPosition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/src/Data/ItemPosition.cpp -------------------------------------------------------------------------------- /libs/Core/src/Data/PasteboardContent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/src/Data/PasteboardContent.cpp -------------------------------------------------------------------------------- /libs/Core/src/Scene/Mock/MockEvents.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/src/Scene/Mock/MockEvents.cpp -------------------------------------------------------------------------------- /libs/Core/src/Scene/Mock/MockEvents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/src/Scene/Mock/MockEvents.h -------------------------------------------------------------------------------- /libs/Core/src/Scene/Mock/MockItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/src/Scene/Mock/MockItem.cpp -------------------------------------------------------------------------------- /libs/Core/src/Scene/Mock/MockItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/src/Scene/Mock/MockItem.h -------------------------------------------------------------------------------- /libs/Core/src/Scene/Mock/MockScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/src/Scene/Mock/MockScene.cpp -------------------------------------------------------------------------------- /libs/Core/src/Scene/Mock/MockScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/src/Scene/Mock/MockScene.h -------------------------------------------------------------------------------- /libs/Core/src/TestServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/src/TestServer.cpp -------------------------------------------------------------------------------- /libs/Core/src/Utils/AnyRpcFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/src/Utils/AnyRpcFunction.h -------------------------------------------------------------------------------- /libs/Core/src/Utils/AnyRpcUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/src/Utils/AnyRpcUtils.cpp -------------------------------------------------------------------------------- /libs/Core/src/Utils/AnyRpcUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/src/Utils/AnyRpcUtils.h -------------------------------------------------------------------------------- /libs/Core/src/Utils/PathParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/src/Utils/PathParser.cpp -------------------------------------------------------------------------------- /libs/Core/src/Utils/PathParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/src/Utils/PathParser.h -------------------------------------------------------------------------------- /libs/Core/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/tests/CMakeLists.txt -------------------------------------------------------------------------------- /libs/Core/tests/CommandExecuter/CommandExecuter_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/tests/CommandExecuter/CommandExecuter_test.cpp -------------------------------------------------------------------------------- /libs/Core/tests/CommandExecuter/ExecuterState_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/tests/CommandExecuter/ExecuterState_test.cpp -------------------------------------------------------------------------------- /libs/Core/tests/Commands/ClickOnItem_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/tests/Commands/ClickOnItem_test.cpp -------------------------------------------------------------------------------- /libs/Core/tests/Commands/DropFromExt_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/tests/Commands/DropFromExt_test.cpp -------------------------------------------------------------------------------- /libs/Core/tests/Commands/GetProperty_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/tests/Commands/GetProperty_test.cpp -------------------------------------------------------------------------------- /libs/Core/tests/Data/ItemPathComponent_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/tests/Data/ItemPathComponent_test.cpp -------------------------------------------------------------------------------- /libs/Core/tests/Data/ItemPath_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/tests/Data/ItemPath_test.cpp -------------------------------------------------------------------------------- /libs/Core/tests/Data/ItemPosition_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/tests/Data/ItemPosition_test.cpp -------------------------------------------------------------------------------- /libs/Core/tests/Data/PasteboardContent_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/tests/Data/PasteboardContent_test.cpp -------------------------------------------------------------------------------- /libs/Core/tests/Utils/AnyRpcFunction_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/tests/Utils/AnyRpcFunction_test.cpp -------------------------------------------------------------------------------- /libs/Core/tests/Utils/AnyRpcUtils_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/tests/Utils/AnyRpcUtils_test.cpp -------------------------------------------------------------------------------- /libs/Core/tests/Utils/PathParser_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/tests/Utils/PathParser_test.cpp -------------------------------------------------------------------------------- /libs/Core/tests/unittests_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Core/tests/unittests_main.cpp -------------------------------------------------------------------------------- /libs/Scenes/QtQuick/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Scenes/QtQuick/CMakeLists.txt -------------------------------------------------------------------------------- /libs/Scenes/QtQuick/cmake/SpixQtQuickConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Scenes/QtQuick/cmake/SpixQtQuickConfig.cmake.in -------------------------------------------------------------------------------- /libs/Scenes/QtQuick/include/Spix/QtQmlBot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Scenes/QtQuick/include/Spix/QtQmlBot.h -------------------------------------------------------------------------------- /libs/Scenes/QtQuick/src/FindQtItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Scenes/QtQuick/src/FindQtItem.cpp -------------------------------------------------------------------------------- /libs/Scenes/QtQuick/src/FindQtItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Scenes/QtQuick/src/FindQtItem.h -------------------------------------------------------------------------------- /libs/Scenes/QtQuick/src/QtEvents.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Scenes/QtQuick/src/QtEvents.cpp -------------------------------------------------------------------------------- /libs/Scenes/QtQuick/src/QtEvents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Scenes/QtQuick/src/QtEvents.h -------------------------------------------------------------------------------- /libs/Scenes/QtQuick/src/QtItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Scenes/QtQuick/src/QtItem.cpp -------------------------------------------------------------------------------- /libs/Scenes/QtQuick/src/QtItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Scenes/QtQuick/src/QtItem.h -------------------------------------------------------------------------------- /libs/Scenes/QtQuick/src/QtItemTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Scenes/QtQuick/src/QtItemTools.cpp -------------------------------------------------------------------------------- /libs/Scenes/QtQuick/src/QtItemTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Scenes/QtQuick/src/QtItemTools.h -------------------------------------------------------------------------------- /libs/Scenes/QtQuick/src/QtQmlBot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Scenes/QtQuick/src/QtQmlBot.cpp -------------------------------------------------------------------------------- /libs/Scenes/QtQuick/src/QtScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Scenes/QtQuick/src/QtScene.cpp -------------------------------------------------------------------------------- /libs/Scenes/QtQuick/src/QtScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Scenes/QtQuick/src/QtScene.h -------------------------------------------------------------------------------- /libs/Scenes/QtQuick/src/Utils/DebugDump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Scenes/QtQuick/src/Utils/DebugDump.cpp -------------------------------------------------------------------------------- /libs/Scenes/QtQuick/src/Utils/DebugDump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Scenes/QtQuick/src/Utils/DebugDump.h -------------------------------------------------------------------------------- /libs/Scenes/QtQuick/src/Utils/QtEventRecorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Scenes/QtQuick/src/Utils/QtEventRecorder.cpp -------------------------------------------------------------------------------- /libs/Scenes/QtQuick/src/Utils/QtEventRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Scenes/QtQuick/src/Utils/QtEventRecorder.h -------------------------------------------------------------------------------- /libs/Scenes/QtQuick/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Scenes/QtQuick/tests/CMakeLists.txt -------------------------------------------------------------------------------- /libs/Scenes/QtQuick/tests/QtItemTools_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Scenes/QtQuick/tests/QtItemTools_test.cpp -------------------------------------------------------------------------------- /libs/Scenes/QtQuick/tests/QtItem_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Scenes/QtQuick/tests/QtItem_test.cpp -------------------------------------------------------------------------------- /libs/Scenes/QtQuick/tests/QtTestUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Scenes/QtQuick/tests/QtTestUtils.h -------------------------------------------------------------------------------- /libs/Scenes/QtQuick/tests/unittests_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaxm/spix/HEAD/libs/Scenes/QtQuick/tests/unittests_main.cpp --------------------------------------------------------------------------------