gitextract_ge5od5ka/ ├── .clang-format ├── .devcontainer/ │ ├── minimum-linux-container-amd64/ │ │ ├── Dockerfile │ │ └── devcontainer.json │ └── minimum-linux-container-arm64/ │ ├── Dockerfile │ └── devcontainer.json ├── .gitattributes ├── .github/ │ ├── pull_request_template.md │ └── workflows/ │ └── build_cmake.yml ├── .gitignore ├── .gitignore-blame ├── .gitmodules ├── .gitreview ├── .luarc.json ├── .tag ├── CMakeLists.txt ├── CMakePresets.json ├── HACKING ├── LICENSES/ │ ├── LICENSE.GPL3-EXCEPT │ ├── LicenseRef-Qt-Commercial.txt │ ├── MIT.txt │ └── blessing.txt ├── README.md ├── TESTING.md ├── bin/ │ ├── CMakeLists.txt │ └── qtcreator.sh ├── cmake/ │ ├── Config.cmake.in │ ├── CreatePythonXY.cmake │ ├── FindClang.cmake │ ├── FindCrashpad.cmake │ ├── FindGoogleBenchmark.cmake │ ├── FindQbs.cmake │ ├── Findelfutils.cmake │ ├── Findyaml-cpp.cmake │ ├── QtCreatorAPI.cmake │ ├── QtCreatorAPIInternal.cmake │ ├── QtCreatorConfig.cmake.in │ ├── QtCreatorDocumentation.cmake │ ├── QtCreatorIDEBranding.cmake │ ├── QtCreatorSbom.cmake │ ├── QtCreatorTranslations.cmake │ ├── QtcSeparateDebugInfo.Info.plist.in │ ├── QtcSeparateDebugInfo.cmake │ └── Utils.cmake ├── coin/ │ ├── creator_python_requirements.txt │ ├── dependencies.yaml │ ├── instructions/ │ │ ├── build.yaml │ │ ├── common_environment.yaml │ │ ├── provision.yaml │ │ └── test.yaml │ ├── module_config.yaml │ ├── product_dependencies.yaml │ └── sbom_requirements.txt ├── dist/ │ ├── CMakeLists.txt │ ├── api-changelog/ │ │ ├── api-changes-18.md │ │ └── api-changes-19.md │ ├── changelog/ │ │ ├── changes-1.1.0 │ │ ├── changes-1.1.1 │ │ ├── changes-1.2.0 │ │ ├── changes-1.2.1 │ │ ├── changes-1.3.0 │ │ ├── changes-1.3.1 │ │ ├── changes-10.0.0.md │ │ ├── changes-10.0.1.md │ │ ├── changes-10.0.2.md │ │ ├── changes-11.0.0.md │ │ ├── changes-11.0.1.md │ │ ├── changes-11.0.2.md │ │ ├── changes-11.0.3.md │ │ ├── changes-12.0.0.md │ │ ├── changes-12.0.1.md │ │ ├── changes-12.0.2.md │ │ ├── changes-13.0.0.md │ │ ├── changes-13.0.1.md │ │ ├── changes-13.0.2.md │ │ ├── changes-14.0.0.md │ │ ├── changes-14.0.1.md │ │ ├── changes-14.0.2.md │ │ ├── changes-15.0.0.md │ │ ├── changes-15.0.1.md │ │ ├── changes-16.0.0.md │ │ ├── changes-16.0.1.md │ │ ├── changes-16.0.2.md │ │ ├── changes-17.0.0.md │ │ ├── changes-17.0.1.md │ │ ├── changes-17.0.2.md │ │ ├── changes-18.0.0.md │ │ ├── changes-18.0.1.md │ │ ├── changes-18.0.2.md │ │ ├── changes-19.0.0.md │ │ ├── changes-2.0.0 │ │ ├── changes-2.0.1 │ │ ├── changes-2.1.0 │ │ ├── changes-2.2.0 │ │ ├── changes-2.3.0 │ │ ├── changes-2.3.1 │ │ ├── changes-2.4.0 │ │ ├── changes-2.4.1 │ │ ├── changes-2.5.0 │ │ ├── changes-2.5.1 │ │ ├── changes-2.5.2 │ │ ├── changes-2.6.0 │ │ ├── changes-2.6.1 │ │ ├── changes-2.6.2 │ │ ├── changes-2.7.0 │ │ ├── changes-2.8.0 │ │ ├── changes-2.8.1 │ │ ├── changes-3.0.0 │ │ ├── changes-3.0.1 │ │ ├── changes-3.1.0 │ │ ├── changes-3.1.1 │ │ ├── changes-3.1.2 │ │ ├── changes-3.2.0 │ │ ├── changes-3.2.1 │ │ ├── changes-3.2.2 │ │ ├── changes-3.3.0 │ │ ├── changes-3.3.1 │ │ ├── changes-3.3.2 │ │ ├── changes-3.4.0 │ │ ├── changes-3.4.1.md │ │ ├── changes-3.5.0.md │ │ ├── changes-3.5.1.md │ │ ├── changes-3.6.0.md │ │ ├── changes-3.6.1.md │ │ ├── changes-4.0.0.md │ │ ├── changes-4.0.1.md │ │ ├── changes-4.0.2.md │ │ ├── changes-4.0.3.md │ │ ├── changes-4.1.0.md │ │ ├── changes-4.10.0.md │ │ ├── changes-4.10.1.md │ │ ├── changes-4.11.0.md │ │ ├── changes-4.11.1.md │ │ ├── changes-4.11.2.md │ │ ├── changes-4.12.0.md │ │ ├── changes-4.12.1.md │ │ ├── changes-4.12.2.md │ │ ├── changes-4.12.3.md │ │ ├── changes-4.12.4.md │ │ ├── changes-4.13.0.md │ │ ├── changes-4.13.1.md │ │ ├── changes-4.13.2.md │ │ ├── changes-4.13.3.md │ │ ├── changes-4.14.0.md │ │ ├── changes-4.14.1.md │ │ ├── changes-4.14.2.md │ │ ├── changes-4.15.0.md │ │ ├── changes-4.15.1.md │ │ ├── changes-4.15.2.md │ │ ├── changes-4.2.0.md │ │ ├── changes-4.2.1.md │ │ ├── changes-4.2.2.md │ │ ├── changes-4.3.0.md │ │ ├── changes-4.3.1.md │ │ ├── changes-4.4.0.md │ │ ├── changes-4.4.1.md │ │ ├── changes-4.5.0.md │ │ ├── changes-4.5.1.md │ │ ├── changes-4.5.2.md │ │ ├── changes-4.6.0.md │ │ ├── changes-4.6.1.md │ │ ├── changes-4.6.2.md │ │ ├── changes-4.7.0.md │ │ ├── changes-4.7.1.md │ │ ├── changes-4.7.2.md │ │ ├── changes-4.8.0.md │ │ ├── changes-4.8.1.md │ │ ├── changes-4.8.2.md │ │ ├── changes-4.9.0.md │ │ ├── changes-4.9.1.md │ │ ├── changes-4.9.2.md │ │ ├── changes-5.0.0.md │ │ ├── changes-5.0.1.md │ │ ├── changes-5.0.2.md │ │ ├── changes-5.0.3.md │ │ ├── changes-6.0.0.md │ │ ├── changes-6.0.1.md │ │ ├── changes-6.0.2.md │ │ ├── changes-7.0.0.md │ │ ├── changes-7.0.1.md │ │ ├── changes-7.0.2.md │ │ ├── changes-8.0.0.md │ │ ├── changes-8.0.1.md │ │ ├── changes-8.0.2.md │ │ ├── changes-9.0.0.md │ │ ├── changes-9.0.1.md │ │ ├── changes-9.0.2.md │ │ └── template.md │ ├── clangformat/ │ │ └── README.md │ ├── copyright_template.txt │ ├── gdb/ │ │ └── patches/ │ │ └── mingw-python.patch │ ├── installer/ │ │ └── mac/ │ │ ├── Qt Creator.entitlements │ │ ├── README.md │ │ ├── disclaim.entitlements │ │ └── qtcreator_process_stub.entitlements │ └── known-issues ├── doc/ │ ├── CMakeLists.txt │ ├── README.md │ ├── config/ │ │ ├── icon-macros.qdocconf │ │ ├── macros-online.qdocconf │ │ ├── macros.qdocconf │ │ ├── qt-cpp-ignore.qdocconf │ │ └── qt-defines.qdocconf │ ├── doc.qbs │ ├── fixnavi.pl │ ├── qtcreator/ │ │ ├── config/ │ │ │ ├── qtcreator-project.qdocconf │ │ │ └── style/ │ │ │ └── tree_config.xml │ │ ├── doxygen/ │ │ │ └── Doxyfile │ │ ├── examples/ │ │ │ ├── accelbubble/ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Info.plist │ │ │ │ ├── main.cpp │ │ │ │ └── main.qml │ │ │ ├── progressbar/ │ │ │ │ ├── main.cpp │ │ │ │ ├── progressbar.pro │ │ │ │ ├── qml/ │ │ │ │ │ ├── ProgressBar.qmlproject │ │ │ │ │ ├── ProgressBar.ui.qml │ │ │ │ │ └── Root.qml │ │ │ │ └── qml.qrc │ │ │ ├── textfinder/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── TextFinder_de_DE.ts │ │ │ │ ├── input.txt │ │ │ │ ├── main.cpp │ │ │ │ ├── textfinder.cpp │ │ │ │ ├── textfinder.h │ │ │ │ ├── textfinder.qrc │ │ │ │ └── textfinder.ui │ │ │ └── transitions/ │ │ │ ├── CMakeLists.txt │ │ │ ├── Page.qml │ │ │ ├── main.cpp │ │ │ └── main.qml │ │ ├── images/ │ │ │ └── extraimages/ │ │ │ └── qtcreator-extraimages.qdocconf │ │ ├── qtcreator-online.qdocconf │ │ ├── qtcreator.qdocconf │ │ └── src/ │ │ ├── analyze/ │ │ │ ├── cpu-usage-analyzer.qdoc │ │ │ ├── creator-analyze.qdoc │ │ │ ├── creator-axivion.qdoc │ │ │ ├── creator-clang-static-analyzer.qdoc │ │ │ ├── creator-coco.qdoc │ │ │ ├── creator-cppcheck.qdoc │ │ │ ├── creator-ctf-visualizer.qdoc │ │ │ ├── creator-heob.qdoc │ │ │ └── creator-valgrind.qdoc │ │ ├── android/ │ │ │ ├── androiddev.qdoc │ │ │ ├── creator-projects-settings-run-android.qdoc │ │ │ └── deploying-android.qdoc │ │ ├── appman/ │ │ │ └── creator-appman-how-to-run.qdoc │ │ ├── baremetal/ │ │ │ ├── creator-baremetal-dev.qdoc │ │ │ └── creator-baremetal-settings.qdocinc │ │ ├── cmake/ │ │ │ ├── creator-how-to-debug-cmake-files.qdoc │ │ │ ├── creator-how-to-profile-cmake-code.qdoc │ │ │ ├── creator-projects-cmake-building.qdoc │ │ │ ├── creator-projects-cmake-presets.qdoc │ │ │ ├── creator-projects-cmake.qdoc │ │ │ └── creator-projects-settings-cmake.qdoc │ │ ├── conan/ │ │ │ ├── creator-projects-conan-building.qdoc │ │ │ └── creator-projects-conan.qdoc │ │ ├── debugger/ │ │ │ ├── creator-debug-views.qdoc │ │ │ ├── creator-only/ │ │ │ │ ├── creator-debugger-example.qdoc │ │ │ │ ├── creator-debugger-settings.qdoc │ │ │ │ ├── creator-debugger-setup.qdoc │ │ │ │ └── creator-debugger.qdoc │ │ │ ├── qtquick-debugger-example.qdoc │ │ │ └── qtquick-debugging.qdoc │ │ ├── devcontainer/ │ │ │ └── creator-devcontainer.qdoc │ │ ├── docker/ │ │ │ └── creator-docker.qdoc │ │ ├── editors/ │ │ │ ├── creator-code-completion.qdoc │ │ │ ├── creator-code-indentation.qdoc │ │ │ ├── creator-code-refactoring.qdoc │ │ │ ├── creator-code-syntax.qdoc │ │ │ ├── creator-editors-options-text.qdoc │ │ │ ├── creator-only/ │ │ │ │ ├── creator-aiassistant.qdoc │ │ │ │ ├── creator-beautifier.qdoc │ │ │ │ ├── creator-clang-codemodel.qdoc │ │ │ │ ├── creator-code-pasting.qdoc │ │ │ │ ├── creator-coding-edit-mode.qdoc │ │ │ │ ├── creator-compilation-database.qdoc │ │ │ │ ├── creator-copilot.qdoc │ │ │ │ ├── creator-cpp-quick-fixes.qdoc │ │ │ │ ├── creator-diff-editor.qdoc │ │ │ │ ├── creator-fakevim.qdoc │ │ │ │ ├── creator-how-to-create-lua.scripts.qdoc │ │ │ │ ├── creator-how-to-find-symbols.qdoc │ │ │ │ ├── creator-language-server.qdoc │ │ │ │ ├── creator-locator.qdoc │ │ │ │ ├── creator-markdown-editor.qdoc │ │ │ │ ├── creator-mime-types.qdoc │ │ │ │ ├── creator-modeling.qdoc │ │ │ │ ├── creator-preferences-cpp-code-style.qdoc │ │ │ │ ├── creator-preferences-nim.qdoc │ │ │ │ ├── creator-scxml.qdoc │ │ │ │ └── creator-text-editing-macros.qdoc │ │ │ ├── creator-preferences-text-editor-behavior.qdoc │ │ │ ├── creator-quick-fixes.qdoc │ │ │ ├── creator-search.qdoc │ │ │ └── creator-semantic-highlighting.qdoc │ │ ├── external-resources/ │ │ │ └── external-resources.qdoc │ │ ├── howto/ │ │ │ ├── creator-external-tools.qdoc │ │ │ ├── creator-help.qdoc │ │ │ ├── creator-how-to-find-preferences.qdoc │ │ │ ├── creator-how-to-set-high-dpi-scaling.qdoc │ │ │ ├── creator-how-to-switch-ui-themes.qdoc │ │ │ ├── creator-how-to-view-images.qdoc │ │ │ ├── creator-keyboard-preferences.qdoc │ │ │ ├── creator-only/ │ │ │ │ ├── creator-autotest.qdoc │ │ │ │ ├── creator-cli.qdoc │ │ │ │ ├── creator-how-to-configure-tools-on-devices.qdoc │ │ │ │ ├── creator-how-to-contact-qt.qdoc │ │ │ │ ├── creator-how-to-document-code.qdoc │ │ │ │ ├── creator-how-to-enable-plugins.qdoc │ │ │ │ ├── creator-how-to-find-settings-files.qdoc │ │ │ │ ├── creator-how-to-install-extensions.qdoc │ │ │ │ ├── creator-how-to-install-plugins.qdoc │ │ │ │ ├── creator-how-to-install.qdoc │ │ │ │ ├── creator-how-to-record-screens.qdoc │ │ │ │ ├── creator-how-to-set-up-winappsdk.qdoc │ │ │ │ ├── creator-how-to-silver-searcher.qdoc │ │ │ │ ├── creator-how-to-turn-on-crash-reports.qdoc │ │ │ │ ├── creator-how-tos.qdoc │ │ │ │ ├── creator-logging-viewer.qdoc │ │ │ │ ├── creator-squish.qdoc │ │ │ │ ├── creator-task-lists.qdoc │ │ │ │ ├── creator-telemetry.qdoc │ │ │ │ ├── creator-vcpkg.qdoc │ │ │ │ ├── qtcreator-faq.qdoc │ │ │ │ └── qtcreator-how-to-change-ui-language.qdoc │ │ │ └── creator-sessions.qdoc │ │ ├── incredibuild/ │ │ │ ├── creator-projects-incredibuild-building.qdoc │ │ │ └── creator-projects-incredibuild.qdoc │ │ ├── ios/ │ │ │ └── creator-ios-dev.qdoc │ │ ├── linux-mobile/ │ │ │ ├── b2qtdev.qdoc │ │ │ ├── creator-deployment-b2qt.qdoc │ │ │ ├── creator-deployment-embedded-linux.qdoc │ │ │ ├── creator-developing-vxworks.qdoc │ │ │ ├── creator-how-to-build-on-remote-devices.qdocinc │ │ │ ├── creator-projects-how-to-run-generic-linux.qdoc │ │ │ ├── creator-projects-settings-run-b2qt.qdoc │ │ │ ├── creator-projects-settings-run-linux.qdoc │ │ │ ├── linuxdev-keys.qdoc │ │ │ ├── linuxdev-processes.qdoc │ │ │ ├── linuxdev.qdoc │ │ │ └── qtcreator-add-linux-device.qdocinc │ │ ├── mcp/ │ │ │ └── mcp-server.qdoc │ │ ├── mcu/ │ │ │ └── creator-mcu-dev.qdoc │ │ ├── meson/ │ │ │ ├── creator-projects-meson-building.qdoc │ │ │ └── creator-projects-meson.qdoc │ │ ├── overview/ │ │ │ ├── creator-acknowledgements.qdoc │ │ │ ├── creator-only/ │ │ │ │ ├── creator-configuring.qdoc │ │ │ │ ├── creator-desktop-platforms.qdoc │ │ │ │ ├── creator-getting-started.qdoc │ │ │ │ ├── creator-glossary.qdoc │ │ │ │ ├── creator-issues.qdoc │ │ │ │ ├── creator-keyboard-shortcuts.qdoc │ │ │ │ ├── creator-overview-devices.qdoc │ │ │ │ ├── creator-overview.qdoc │ │ │ │ ├── creator-reference.qdoc │ │ │ │ ├── creator-supported-platforms.qdoc │ │ │ │ ├── creator-tutorials.qdoc │ │ │ │ ├── creator-ui-design-overview.qdoc │ │ │ │ └── mobile-app-design.qdoc │ │ │ ├── creator-tech-support.qdoc │ │ │ ├── license-Apache-2.0.txt │ │ │ ├── license-BSD-2-clause.txt │ │ │ ├── license-LGPLv2.0.txt │ │ │ ├── license-LGPLv2.1.txt │ │ │ └── license-mit.qdocinc │ │ ├── projects/ │ │ │ ├── creator-only/ │ │ │ │ ├── creator-build-settings-qmake.qdoc │ │ │ │ ├── creator-custom-output-parser.qdoc │ │ │ │ ├── creator-files-creating.qdoc │ │ │ │ ├── creator-how-to-add-wizards.qdoc │ │ │ │ ├── creator-how-to-create-compiler-explorer-setup.qdoc │ │ │ │ ├── creator-how-to-create-ts-files.qdoc │ │ │ │ ├── creator-how-to-edit-qbs-profiles.qdoc │ │ │ │ ├── creator-how-to-select-build-systems.qdoc │ │ │ │ ├── creator-how-to-set-default-working-directory.qdoc │ │ │ │ ├── creator-projects-autotools.qdoc │ │ │ │ ├── creator-projects-build-run-tutorial.qdoc │ │ │ │ ├── creator-projects-building.qdoc │ │ │ │ ├── creator-projects-builds-customizing.qdoc │ │ │ │ ├── creator-projects-compilers.qdoc │ │ │ │ ├── creator-projects-creating.qdoc │ │ │ │ ├── creator-projects-custom-wizards-json.qdocinc │ │ │ │ ├── creator-projects-custom-wizards.qdoc │ │ │ │ ├── creator-projects-debuggers.qdoc │ │ │ │ ├── creator-projects-generic.qdoc │ │ │ │ ├── creator-projects-kits.qdoc │ │ │ │ ├── creator-projects-libraries.qdoc │ │ │ │ ├── creator-projects-nimble.qdoc │ │ │ │ ├── creator-projects-opening.qdoc │ │ │ │ ├── creator-projects-qbs.qdoc │ │ │ │ ├── creator-projects-qt-versions.qdoc │ │ │ │ ├── creator-projects-qtif.qdoc │ │ │ │ ├── creator-projects-settings-build-qbs.qdoc │ │ │ │ ├── creator-projects-settings-build.qdoc │ │ │ │ ├── creator-projects-settings-building-and-running.qdoc │ │ │ │ ├── creator-projects-settings-code-style.qdoc │ │ │ │ ├── creator-projects-settings-dependencies.qdoc │ │ │ │ ├── creator-projects-settings-editor.qdoc │ │ │ │ ├── creator-projects-settings-environment.qdoc │ │ │ │ ├── creator-projects-settings-overview.qdoc │ │ │ │ ├── creator-projects-settings-run-analyze.qdoc │ │ │ │ ├── creator-projects-settings-run-debug.qdoc │ │ │ │ ├── creator-projects-settings-run-desktop.qdoc │ │ │ │ ├── creator-projects-settings-run.qdoc │ │ │ │ ├── creator-projects-settings-sharing.qdoc │ │ │ │ ├── creator-testing-how-to-limit-files-to-path-patterns.qdoc │ │ │ │ └── qtcreator-how-to-use-qtc-variables.qdoc │ │ │ └── creator-projects-running.qdoc │ │ ├── python/ │ │ │ ├── creator-python-development.qdoc │ │ │ ├── creator-python-run-settings.qdoc │ │ │ ├── creator-tutorial-python-application-qt-widgets-ui.qdoc │ │ │ ├── creator-tutorial-python-application-qt-widgets.qdoc │ │ │ └── creator-tutorial-python-application-qtquick.qdoc │ │ ├── qnx/ │ │ │ ├── creator-deployment-qnx.qdoc │ │ │ ├── creator-developing-qnx.qdoc │ │ │ ├── creator-projects-how-to-run-qnx.qdoc │ │ │ └── creator-projects-settings-run-qnx.qdoc │ │ ├── qtcreator-toc.qdoc │ │ ├── qtcreator.qdoc │ │ ├── qtquick/ │ │ │ ├── components/ │ │ │ │ ├── qtquick-animation-types.qdoc │ │ │ │ ├── qtquick-buttons.qdoc │ │ │ │ ├── qtquick-component-context-menu.qdocinc │ │ │ │ ├── qtquick-component-instances.qdoc │ │ │ │ ├── qtquick-components-custom.qdoc │ │ │ │ ├── qtquick-components.qdoc │ │ │ │ ├── qtquick-controls.qdoc │ │ │ │ ├── qtquick-data-models.qdoc │ │ │ │ ├── qtquick-images.qdoc │ │ │ │ ├── qtquick-pathview-editor.qdocinc │ │ │ │ ├── qtquick-positioning.qdoc │ │ │ │ ├── qtquick-preset-components.qdoc │ │ │ │ ├── qtquick-shapes.qdoc │ │ │ │ ├── qtquick-text.qdoc │ │ │ │ └── qtquick-user-interaction-methods.qdoc │ │ │ ├── creator-only/ │ │ │ │ ├── creator-mobile-app-tutorial.qdoc │ │ │ │ ├── creator-projects-settings-run-qtquick.qdoc │ │ │ │ ├── qtquick-app-tutorial.qdoc │ │ │ │ ├── qtquick-creating.qdoc │ │ │ │ ├── qtquick-from-qmlproject-to-pro.qdoc │ │ │ │ ├── qtquick-live-preview-desktop.qdoc │ │ │ │ ├── qtquick-open-in-qds.qdoc │ │ │ │ └── qtquick-tutorial-create-empty-project.qdocinc │ │ │ ├── creator-preferences-qtquick-code-style.qdoc │ │ │ ├── qtquick-animation-overview.qdoc │ │ │ ├── qtquick-annotations.qdoc │ │ │ ├── qtquick-creating-ui-logic.qdoc │ │ │ ├── qtquick-fonts.qdoc │ │ │ ├── qtquick-live-preview-devices.qdoc │ │ │ ├── qtquick-modules-with-plugins.qdoc │ │ │ ├── qtquick-optimizing-designs.qdoc │ │ │ ├── qtquick-placeholder-data.qdoc │ │ │ ├── qtquick-production-quality-animation.qdoc │ │ │ ├── qtquick-profiler.qdoc │ │ │ ├── qtquick-toolbars.qdoc │ │ │ ├── qtquick-ui-forms.qdoc │ │ │ └── views/ │ │ │ ├── creator-logical-operators.qdocinc │ │ │ ├── qtquick-assets.qdoc │ │ │ ├── qtquick-connection-editor-bindings.qdoc │ │ │ ├── qtquick-connection-editor-properties.qdoc │ │ │ ├── qtquick-connection-editor-signals.qdoc │ │ │ ├── qtquick-curve-editor.qdoc │ │ │ ├── qtquick-designer.qdoc │ │ │ ├── qtquick-easing-curve-editor.qdoc │ │ │ ├── qtquick-form-editor.qdoc │ │ │ ├── qtquick-navigator.qdoc │ │ │ ├── qtquick-properties-view.qdoc │ │ │ ├── qtquick-properties.qdoc │ │ │ ├── qtquick-states-view.qdoc │ │ │ ├── qtquick-states.qdoc │ │ │ ├── qtquick-timeline.qdoc │ │ │ ├── qtquick-transition-editor.qdoc │ │ │ └── studio-workspaces.qdoc │ │ ├── reference/ │ │ │ └── creator-sdk-tool.qdoc │ │ ├── user-interface/ │ │ │ ├── creator-file-system-view.qdoc │ │ │ ├── creator-only/ │ │ │ │ ├── creator-how-to-detach-views.qdoc │ │ │ │ ├── creator-how-to-parse-build-output.qdoc │ │ │ │ ├── creator-how-to-show-and-hide-main-menu.qdoc │ │ │ │ ├── creator-how-to-show-and-hide-sidebars.qdoc │ │ │ │ ├── creator-how-to-switch-between-modes.qdoc │ │ │ │ ├── creator-how-to-use-info-bars.qdoc │ │ │ │ ├── creator-how-to-view-output.qdoc │ │ │ │ ├── creator-reference-output-views.qdoc │ │ │ │ ├── creator-reference-sidebar-views.qdoc │ │ │ │ ├── creator-reference-terminal-view.qdoc │ │ │ │ ├── creator-reference-to-do-entries-view.qdoc │ │ │ │ └── creator-ui.qdoc │ │ │ ├── creator-open-documents-view.qdoc │ │ │ └── creator-projects-view.qdoc │ │ ├── vcs/ │ │ │ ├── creator-only/ │ │ │ │ ├── creator-how-to-use-git-on-windows.qdoc │ │ │ │ ├── creator-vcs-bazaar.qdoc │ │ │ │ ├── creator-vcs-clearcase.qdoc │ │ │ │ ├── creator-vcs-cvs.qdoc │ │ │ │ ├── creator-vcs-fossil.qdoc │ │ │ │ ├── creator-vcs-gitlab.qdoc │ │ │ │ ├── creator-vcs-mercurial.qdoc │ │ │ │ ├── creator-vcs-perforce.qdoc │ │ │ │ ├── creator-vcs-preferences.qdoc │ │ │ │ ├── creator-vcs-subversion.qdoc │ │ │ │ └── creator-vcs.qdoc │ │ │ └── creator-vcs-git.qdoc │ │ ├── webassembly/ │ │ │ └── creator-webassembly.qdoc │ │ └── widgets/ │ │ ├── creator-faq-qtdesigner.qdocinc │ │ ├── doc_src_plugins.qdocinc │ │ ├── qtdesigner-app-tutorial.qdoc │ │ ├── qtdesigner-overview.qdoc │ │ └── qtdesigner-plugins.qdoc │ ├── qtcreatordev/ │ │ ├── config/ │ │ │ ├── qtcreator-developer.qdocconf │ │ │ └── style/ │ │ │ └── qt5-sidebar.html │ │ ├── examples/ │ │ │ ├── aggregation/ │ │ │ │ ├── README │ │ │ │ ├── output.txt │ │ │ │ └── test.sh │ │ │ └── exampleplugin/ │ │ │ ├── .github/ │ │ │ │ └── workflows/ │ │ │ │ ├── README.md │ │ │ │ └── build_cmake.yml │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── Example.json.in │ │ │ ├── README.md │ │ │ ├── example.cpp │ │ │ ├── example.h │ │ │ ├── example_global.h │ │ │ ├── exampleconstants.h │ │ │ ├── examplefunctions.h │ │ │ └── tst_mytest.cpp │ │ ├── images/ │ │ │ └── actionmanager.qmodel │ │ ├── qtcreator-dev-online.qdocconf │ │ ├── qtcreator-dev.qdocconf │ │ └── src/ │ │ ├── actionmanager.qdoc │ │ ├── coding-style.qdoc │ │ ├── common-extension-tasks.qdoc │ │ ├── creating-plugins.qdoc │ │ ├── distributing-plugins.qdoc │ │ ├── external-resources.qdoc │ │ ├── external-tool-spec.qdoc │ │ ├── first-plugin.qdoc │ │ ├── getting-and-building.qdoc │ │ ├── lua-extensions.qdoc │ │ ├── plugin-lifecycle.qdoc │ │ ├── plugin-metadata.qdoc │ │ ├── plugin-tests.qdoc │ │ ├── pluginmanager.qdoc │ │ ├── qtcreator-dev-wizards.qdoc │ │ ├── qtcreator-dev.qdoc │ │ ├── qtcreator-documentation.qdoc │ │ ├── qtcreator-module.qdoc │ │ ├── qtcreator-ui-text.qdoc │ │ └── solutions-index.qdoc │ ├── runframework.dia │ └── titlecase/ │ ├── to-title-case.html │ └── to-title-case.js ├── packaging/ │ └── CMakeLists.txt ├── qbs/ │ ├── imports/ │ │ ├── PlainStaticLibrary.qbs │ │ ├── QtcAutotest.qbs │ │ ├── QtcCommercialPlugin.qbs │ │ ├── QtcDocumentation.qbs │ │ ├── QtcFunctions/ │ │ │ └── functions.js │ │ ├── QtcLibrary.qbs │ │ ├── QtcManualTest.qbs │ │ ├── QtcPlugin.qbs │ │ ├── QtcProduct.qbs │ │ ├── QtcTestApp.qbs │ │ ├── QtcTestFiles.qbs │ │ ├── QtcTestResources.qbs │ │ ├── QtcTool.qbs │ │ └── src │ └── modules/ │ ├── clang_defines/ │ │ └── clang_defines.qbs │ ├── copyable_resource/ │ │ └── copyable-resource.qbs │ ├── go/ │ │ └── go.qbs │ ├── libarchive_static/ │ │ ├── functions.js │ │ └── libarchive_static.qbs │ ├── libclang/ │ │ ├── functions.js │ │ └── libclang.qbs │ ├── pluginjson/ │ │ └── pluginjson.qbs │ ├── qbsbuildconfig/ │ │ └── qbsbuildconfig.qbs │ ├── qtc/ │ │ └── qtc.qbs │ ├── qtc_gtest_gmock/ │ │ └── qtc_gtest_gmock.qbs │ └── sqlite_sources/ │ └── sqlite-sources.qbs ├── qt_attributions.json ├── qtcreator.qbs ├── scripts/ │ ├── axivion2tasks.py │ ├── build.py │ ├── build_plugin.py │ ├── build_sdktool.py │ ├── checkInstalledFiles.py │ ├── clangCompleteAt.sh │ ├── clazyweb2tasks.pl │ ├── common.py │ ├── dependencyinfo.py │ ├── deploy.py │ ├── fix_makefile_header_dependencies.sh │ ├── flake2tasks.py │ ├── gcc2tasks.pl │ ├── generate_cpp_from_schema.py │ ├── install_qt.py │ ├── krazy2tasks.pl │ ├── makedmg.py │ ├── msanalyzer2tasks.pl │ ├── msvc2tasks.pl │ ├── mytasks.pl │ ├── ninjawrapper.py │ ├── perltest2tasks.pl │ ├── purify2tasks.pl │ ├── qdoc2tasks.pl │ ├── scrubts.py │ ├── shiboken2tasks.py │ ├── sphinx2tasks.pl │ ├── test2tasks.pl │ ├── uichanges.py │ └── updateCopyright.pl ├── share/ │ ├── CMakeLists.txt │ ├── applications/ │ │ ├── io.qt.qtdesignstudio.desktop │ │ └── org.qt-project.qtcreator.desktop │ ├── metainfo/ │ │ ├── io.qt.qtdesignstudio.appdata.xml.cmakein │ │ └── org.qt-project.qtcreator.appdata.xml.cmakein │ ├── qtcreator/ │ │ ├── CMakeLists.txt │ │ ├── android/ │ │ │ └── sdk_definitions.json │ │ ├── cplusplus/ │ │ │ ├── examples/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── clazy_example.cpp │ │ │ │ ├── examples.pro │ │ │ │ ├── icontest.cpp │ │ │ │ ├── tidy_example.cpp │ │ │ │ └── tidy_example.h │ │ │ ├── wrappedMingwHeaders/ │ │ │ │ └── float.h │ │ │ └── wrappedQtHeaders/ │ │ │ └── QtCore/ │ │ │ └── qobjectdefs.h │ │ ├── debugger/ │ │ │ ├── .pylintrc │ │ │ ├── LICENSE.GPL3-EXCEPT │ │ │ ├── LICENSE.MIT │ │ │ ├── README.txt │ │ │ ├── android_stdtypes.py │ │ │ ├── boosttypes.py │ │ │ ├── cdbbridge.py │ │ │ ├── cdbext.pyi │ │ │ ├── creatortypes.py │ │ │ ├── dumper.py │ │ │ ├── gdbbridge.py │ │ │ ├── gdbtracepoint.py │ │ │ ├── libcpp_stdtypes.py │ │ │ ├── lldbbridge.py │ │ │ ├── loadorder_gdbbridge.txt │ │ │ ├── loadorder_lldbbridge.txt │ │ │ ├── misctypes.py │ │ │ ├── opencvtypes.py │ │ │ ├── pdbbridge.py │ │ │ ├── personaltypes.py │ │ │ ├── qttypes.py │ │ │ ├── setup.cfg │ │ │ ├── stdtypes.py │ │ │ ├── utils.py │ │ │ └── visualize.py │ │ ├── debugger-with-python2/ │ │ │ ├── README.txt │ │ │ ├── android_stdtypes.py │ │ │ ├── boosttypes.py │ │ │ ├── cdbbridge.py │ │ │ ├── creatortypes.py │ │ │ ├── dumper.py │ │ │ ├── gdbbridge.py │ │ │ ├── gdbtracepoint.py │ │ │ ├── libcpp_stdtypes.py │ │ │ ├── lldbbridge.py │ │ │ ├── misctypes.py │ │ │ ├── opencvtypes.py │ │ │ ├── pdbbridge.py │ │ │ ├── personaltypes.py │ │ │ ├── qttypes.py │ │ │ ├── stdtypes.py │ │ │ └── utils.py │ │ ├── glsl/ │ │ │ ├── glsl_120.frag │ │ │ ├── glsl_120.vert │ │ │ ├── glsl_120_common.glsl │ │ │ ├── glsl_330.frag │ │ │ ├── glsl_330.vert │ │ │ ├── glsl_330_common.glsl │ │ │ ├── glsl_460.frag │ │ │ ├── glsl_460.vert │ │ │ ├── glsl_460_common.glsl │ │ │ ├── glsl_es_100.frag │ │ │ ├── glsl_es_100.vert │ │ │ ├── glsl_es_100_common.glsl │ │ │ └── glsl_vulkan.glsl │ │ ├── indexer_preincludes/ │ │ │ ├── QtCore/ │ │ │ │ ├── qconfig.h │ │ │ │ └── qglobal.h │ │ │ ├── qglobal.h │ │ │ └── windows.h │ │ ├── jsonschemas/ │ │ │ └── project.json │ │ ├── lua-lupdate/ │ │ │ ├── README.md │ │ │ └── lupdate.lua │ │ ├── lua-plugins/ │ │ │ ├── luals/ │ │ │ │ ├── init.lua │ │ │ │ └── luals.lua │ │ │ ├── luatests/ │ │ │ │ ├── guidemo.lua │ │ │ │ ├── luatests.lua │ │ │ │ ├── qtctest.lua │ │ │ │ ├── taskhubhooks.lua │ │ │ │ ├── tests.lua │ │ │ │ ├── tst_aspectcontainer.lua │ │ │ │ ├── tst_fetch.lua │ │ │ │ ├── tst_markdownbrowser.lua │ │ │ │ ├── tst_taskhub.lua │ │ │ │ ├── tst_texteditor.lua │ │ │ │ └── tst_utils.lua │ │ │ ├── rustls/ │ │ │ │ ├── init.lua │ │ │ │ └── rustls.lua │ │ │ └── tellajoke/ │ │ │ └── tellajoke.lua │ │ ├── modeleditor/ │ │ │ └── standard.def │ │ ├── qml-type-descriptions/ │ │ │ ├── builtins.qmltypes │ │ │ ├── qbs-base.qmltypes │ │ │ ├── qbs-bundle.json │ │ │ ├── qbs.qmltypes │ │ │ ├── qmlproject-bundle.json │ │ │ ├── qmlproject.qmltypes │ │ │ ├── qmlruntime.qmltypes │ │ │ ├── qmltypes-bundle.json │ │ │ ├── qt-labs-folderlistmodel.qmltypes │ │ │ ├── qt-labs-gestures.qmltypes │ │ │ ├── qt-labs-particles.qmltypes │ │ │ ├── qt5QtQuick2-bundle.json │ │ │ ├── qt5QtQuick2ext-macos-bundle.json │ │ │ ├── qt5QtQuick2ext-win-bundle.json │ │ │ ├── qtmobility-connectivity.qmltypes │ │ │ ├── qtmobility-contacts.qmltypes │ │ │ ├── qtmobility-feedback.qmltypes │ │ │ ├── qtmobility-gallery.qmltypes │ │ │ ├── qtmobility-location.qmltypes │ │ │ ├── qtmobility-messaging.qmltypes │ │ │ ├── qtmobility-organizer.qmltypes │ │ │ ├── qtmobility-publishsubscribe.qmltypes │ │ │ ├── qtmobility-sensors.qmltypes │ │ │ ├── qtmobility-serviceframework.qmltypes │ │ │ ├── qtmobility-systeminfo.qmltypes │ │ │ ├── qtmultimediakit.qmltypes │ │ │ └── qtwebkit.qmltypes │ │ ├── qmldesigner/ │ │ │ ├── EasingCurves.ini │ │ │ ├── assetsLibraryQmlSources/ │ │ │ │ ├── AssetDelegate.qml │ │ │ │ ├── Assets.qml │ │ │ │ ├── AssetsContextMenu.qml │ │ │ │ ├── AssetsView.qml │ │ │ │ ├── ConfirmDeleteFilesDialog.qml │ │ │ │ ├── ConfirmDeleteFolderDialog.qml │ │ │ │ ├── ErrorDialog.qml │ │ │ │ ├── NewEffectDialog.qml │ │ │ │ ├── NewFolderDialog.qml │ │ │ │ └── RenameFolderDialog.qml │ │ │ ├── connectionseditor/ │ │ │ │ ├── BindingsDialog.qml │ │ │ │ ├── BindingsDialogForm.qml │ │ │ │ ├── BindingsListView.qml │ │ │ │ ├── ConnectionsDialog.qml │ │ │ │ ├── ConnectionsDialogForm.qml │ │ │ │ ├── ConnectionsListView.qml │ │ │ │ ├── Main.qml │ │ │ │ ├── PropertiesDialog.qml │ │ │ │ ├── PropertiesDialogForm.qml │ │ │ │ ├── PropertiesListView.qml │ │ │ │ ├── TabCheckButton.qml │ │ │ │ └── imports/ │ │ │ │ └── ConnectionsEditor/ │ │ │ │ ├── Constants.qml │ │ │ │ └── qmldir │ │ │ ├── contentLibraryQmlSource/ │ │ │ │ ├── ContentLibrary.qml │ │ │ │ ├── ContentLibraryEffectContextMenu.qml │ │ │ │ ├── ContentLibraryEffectsView.qml │ │ │ │ ├── ContentLibraryItem.qml │ │ │ │ ├── ContentLibraryItemContextMenu.qml │ │ │ │ ├── ContentLibraryMaterial.qml │ │ │ │ ├── ContentLibraryMaterialsView.qml │ │ │ │ ├── ContentLibraryTabBar.qml │ │ │ │ ├── ContentLibraryTabButton.qml │ │ │ │ ├── ContentLibraryTexture.qml │ │ │ │ ├── ContentLibraryTextureContextMenu.qml │ │ │ │ ├── ContentLibraryTexturesView.qml │ │ │ │ ├── ContentLibraryUserView.qml │ │ │ │ ├── DeleteBundleItemDialog.qml │ │ │ │ ├── DownloadPane.qml │ │ │ │ ├── TextureProgressBar.qml │ │ │ │ └── UnimportBundleItemDialog.qml │ │ │ ├── designericons.json │ │ │ ├── designsystem/ │ │ │ │ ├── Main.qml │ │ │ │ └── imports/ │ │ │ │ └── DesignSystemControls/ │ │ │ │ ├── BindingIndicator.qml │ │ │ │ ├── MenuItem.qml │ │ │ │ ├── SpinBox.qml │ │ │ │ ├── SpinBoxIndicator.qml │ │ │ │ ├── SpinBoxInput.qml │ │ │ │ ├── Switch.qml │ │ │ │ ├── TextField.qml │ │ │ │ └── qmldir │ │ │ ├── edit3dQmlSource/ │ │ │ │ ├── BakeLightsProgressDialog.qml │ │ │ │ ├── BakeLightsSetupDialog.qml │ │ │ │ ├── CameraSpeedConfigurationDialog.qml │ │ │ │ └── SnapConfigurationDialog.qml │ │ │ ├── effectComposerQmlSources/ │ │ │ │ ├── AddPropertyForm.qml │ │ │ │ ├── BlurHelper.qml │ │ │ │ ├── CodeEditorFooter.qml │ │ │ │ ├── CodeEditorHeader.qml │ │ │ │ ├── CodeEditorTabs.qml │ │ │ │ ├── CodeEditorUniformsView.qml │ │ │ │ ├── ColumnChooser.qml │ │ │ │ ├── ConfirmClearAllDialog.qml │ │ │ │ ├── ConfirmForm.qml │ │ │ │ ├── EffectComposer.qml │ │ │ │ ├── EffectComposerPreview.qml │ │ │ │ ├── EffectComposerTopBar.qml │ │ │ │ ├── EffectCompositionNode.qml │ │ │ │ ├── EffectCompositionNodeUniform.qml │ │ │ │ ├── EffectNode.qml │ │ │ │ ├── EffectNodesComboBox.qml │ │ │ │ ├── HeaderColumnController.qml │ │ │ │ ├── PreviewError.qml │ │ │ │ ├── PreviewImagesComboBox.qml │ │ │ │ ├── SaveAsDialog.qml │ │ │ │ ├── SaveChangesDialog.qml │ │ │ │ ├── ValueBool.qml │ │ │ │ ├── ValueChannel.qml │ │ │ │ ├── ValueColor.qml │ │ │ │ ├── ValueDefine.qml │ │ │ │ ├── ValueFloat.qml │ │ │ │ ├── ValueImage.qml │ │ │ │ ├── ValueInt.qml │ │ │ │ ├── ValueVec2.qml │ │ │ │ ├── ValueVec3.qml │ │ │ │ └── ValueVec4.qml │ │ │ ├── feedback/ │ │ │ │ └── FeedbackPopup.qml │ │ │ ├── formatconfiguration.json │ │ │ ├── itemLibrary/ │ │ │ │ ├── multimedia.metainfo │ │ │ │ ├── qml.metainfo │ │ │ │ ├── qtcharts.metainfo │ │ │ │ ├── qtgraphs.metainfo │ │ │ │ ├── qtquickcontrols2.metainfo │ │ │ │ ├── qtquicklayouts.metainfo │ │ │ │ ├── qtquickultralitecomponents.metainfo │ │ │ │ ├── qtquickultraliteextras.metainfo │ │ │ │ ├── qtquickultralitelayers.metainfo │ │ │ │ ├── qtsaferenderer.metainfo │ │ │ │ ├── qtvirtualkeyboard.metainfo │ │ │ │ ├── quick.metainfo │ │ │ │ ├── quick3d.metainfo │ │ │ │ ├── quick3d_assetutils.metainfo │ │ │ │ ├── quick3d_effects.metainfo │ │ │ │ ├── quick3d_helpers.metainfo │ │ │ │ ├── quick3d_particles3d.metainfo │ │ │ │ ├── quick3d_physics.metainfo │ │ │ │ ├── quick3d_spatialaudio.metainfo │ │ │ │ ├── source/ │ │ │ │ │ ├── AreaSeries.qml │ │ │ │ │ ├── BarSeries.qml │ │ │ │ │ ├── Bars3D.qml │ │ │ │ │ ├── BoxPlotSeries.qml │ │ │ │ │ ├── Graphs2DAreaSeries.qml │ │ │ │ │ ├── Graphs2DBarSeries.qml │ │ │ │ │ ├── Graphs2DLineSeries.qml │ │ │ │ │ ├── Graphs2DPieSeries.qml │ │ │ │ │ ├── Graphs2DScatterSeries.qml │ │ │ │ │ ├── Graphs2DSplineSeries.qml │ │ │ │ │ ├── HorizontalBarSeries.qml │ │ │ │ │ ├── HorizontalPercentBarSeries.qml │ │ │ │ │ ├── HorizontalStackedBarSeries.qml │ │ │ │ │ ├── LineSeries.qml │ │ │ │ │ ├── PercentBarSeries.qml │ │ │ │ │ ├── PieSeries.qml │ │ │ │ │ ├── PolarAreaSeries.qml │ │ │ │ │ ├── PolarLineSeries.qml │ │ │ │ │ ├── PolarScatterSeries.qml │ │ │ │ │ ├── PolarSplineSeries.qml │ │ │ │ │ ├── Scatter3D.qml │ │ │ │ │ ├── ScatterSeries.qml │ │ │ │ │ ├── SplineSeries.qml │ │ │ │ │ ├── StackedBarSeries.qml │ │ │ │ │ ├── Surface3D.qml │ │ │ │ │ ├── component.qml │ │ │ │ │ ├── component3d.qml │ │ │ │ │ ├── custom_material_default_shader.frag │ │ │ │ │ ├── effect_default_shader.frag │ │ │ │ │ ├── effect_template.qml │ │ │ │ │ ├── extendedview3D_template.qml │ │ │ │ │ ├── gridview.qml │ │ │ │ │ ├── listview.qml │ │ │ │ │ ├── particleeffect_clouds.qml │ │ │ │ │ ├── particleeffect_dust.qml │ │ │ │ │ ├── particleeffect_exhaust.qml │ │ │ │ │ ├── particleeffect_fire.qml │ │ │ │ │ ├── particleeffect_heavyrain.qml │ │ │ │ │ ├── particleeffect_heavyrain_tirespray.qml │ │ │ │ │ ├── particleeffect_lightrain.qml │ │ │ │ │ ├── particleeffect_lightrain_tirespray.qml │ │ │ │ │ ├── particleeffect_rainmist.qml │ │ │ │ │ ├── particleeffect_snow.qml │ │ │ │ │ ├── particleeffect_steam.qml │ │ │ │ │ ├── particlesystem_animatedsprite_template.qml │ │ │ │ │ ├── particlesystem_attractor_template.qml │ │ │ │ │ ├── particlesystem_burst_template.qml │ │ │ │ │ ├── particlesystem_modelblend_template.qml │ │ │ │ │ ├── particlesystem_modelshape_template.qml │ │ │ │ │ ├── particlesystem_particletrail_template.qml │ │ │ │ │ ├── particlesystem_sprite_template.qml │ │ │ │ │ ├── particlesystem_template.qml │ │ │ │ │ ├── particlesystem_wander_template.qml │ │ │ │ │ ├── pathview.qml │ │ │ │ │ └── view3D_template.qml │ │ │ │ ├── studiocomponents.metainfo │ │ │ │ ├── studiodesigneffects.metainfo │ │ │ │ ├── studioeffects.metainfo │ │ │ │ └── studiologichelper.metainfo │ │ │ ├── itemLibraryQmlSources/ │ │ │ │ ├── AddModuleView.qml │ │ │ │ ├── ItemDelegate.qml │ │ │ │ └── ItemsView.qml │ │ │ ├── landingpage/ │ │ │ │ ├── content/ │ │ │ │ │ ├── App.qml │ │ │ │ │ ├── CustomCheckBox.ui.qml │ │ │ │ │ ├── InstallQdsStatusBlock.ui.qml │ │ │ │ │ ├── PageText.ui.qml │ │ │ │ │ ├── ProjectInfoStatusBlock.ui.qml │ │ │ │ │ ├── PushButton.ui.qml │ │ │ │ │ └── Screen01.ui.qml │ │ │ │ ├── imports/ │ │ │ │ │ └── LandingPage/ │ │ │ │ │ ├── +QDS_theming/ │ │ │ │ │ │ └── Colors.qml │ │ │ │ │ ├── Colors.qml │ │ │ │ │ ├── Values.qml │ │ │ │ │ └── qmldir │ │ │ │ ├── landingpage.qmlproject │ │ │ │ ├── main.qml │ │ │ │ └── mockimports/ │ │ │ │ ├── LandingPageApi/ │ │ │ │ │ ├── LandingPageApi.qml │ │ │ │ │ └── qmldir │ │ │ │ └── LandingPageTheme/ │ │ │ │ ├── Dummy.qml │ │ │ │ └── qmldir │ │ │ ├── materialBrowserQmlSource/ │ │ │ │ ├── ChooseMaterialProperty.qml │ │ │ │ ├── ItemBorder.qml │ │ │ │ ├── MaterialBrowser.qml │ │ │ │ ├── MaterialBrowserContextMenu.qml │ │ │ │ ├── MaterialBrowserItemName.qml │ │ │ │ ├── MaterialItem.qml │ │ │ │ ├── TextureBrowserContextMenu.qml │ │ │ │ └── TextureItem.qml │ │ │ ├── misc/ │ │ │ │ └── BusyIndicator.qml │ │ │ ├── newprojectdialog/ │ │ │ │ ├── NewProjectDialog.qml │ │ │ │ └── imports/ │ │ │ │ ├── NewProjectDialog/ │ │ │ │ │ ├── Details.qml │ │ │ │ │ ├── DialogValues.qml │ │ │ │ │ ├── PopupDialog.qml │ │ │ │ │ ├── PopupDialogButton.qml │ │ │ │ │ ├── PopupDialogButtonBox.qml │ │ │ │ │ ├── PresetView.qml │ │ │ │ │ ├── Styles.qml │ │ │ │ │ └── qmldir │ │ │ │ └── ProjectType/ │ │ │ │ ├── DefaultProject.qml │ │ │ │ └── qmldir │ │ │ ├── projectstorage/ │ │ │ │ └── fake.qmltypes │ │ │ ├── propertyEditorQmlSources/ │ │ │ │ ├── PropertyTemplates/ │ │ │ │ │ ├── 3DItemFilterComboBoxEditorTemplate.template │ │ │ │ │ ├── BooleanEditorTemplate.template │ │ │ │ │ ├── ColorEditorTemplate.template │ │ │ │ │ ├── FontEditorTemplate.template │ │ │ │ │ ├── ImageEditorTemplate.template │ │ │ │ │ ├── IntEditorTemplate.template │ │ │ │ │ ├── RealEditorTemplate.template │ │ │ │ │ ├── RectangleEditorTemplate.template │ │ │ │ │ ├── StringEditorTemplate.template │ │ │ │ │ ├── TemplateTypes.qml │ │ │ │ │ ├── TextEditorTemplate.template │ │ │ │ │ ├── UrlEditorTemplate.template │ │ │ │ │ ├── Vector2dEditorTemplate.template │ │ │ │ │ ├── Vector3dEditorTemplate.template │ │ │ │ │ └── Vector4dEditorTemplate.template │ │ │ │ ├── QML/ │ │ │ │ │ └── QtObjectPane.qml │ │ │ │ ├── Qt/ │ │ │ │ │ └── SafeRenderer/ │ │ │ │ │ ├── SafeImagePane.qml │ │ │ │ │ ├── SafePicturePane.qml │ │ │ │ │ └── SafeTextPane.qml │ │ │ │ ├── QtCharts/ │ │ │ │ │ └── ChartViewSpecifics.qml │ │ │ │ ├── QtGraphs/ │ │ │ │ │ ├── Bars3DSpecifics.qml │ │ │ │ │ ├── GraphsCameraSection.qml │ │ │ │ │ ├── GraphsSection.qml │ │ │ │ │ ├── GraphsViewSpecifics.qml │ │ │ │ │ ├── Scatter3DSpecifics.qml │ │ │ │ │ └── Surface3DSpecifics.qml │ │ │ │ ├── QtMultimedia/ │ │ │ │ │ ├── AudioOutputSpecifics.qml │ │ │ │ │ ├── AudioSection.qml │ │ │ │ │ ├── MediaPlayerSection.qml │ │ │ │ │ ├── MediaPlayerSpecifics.qml │ │ │ │ │ ├── VideoOutputSpecifics.qml │ │ │ │ │ ├── VideoSection.qml │ │ │ │ │ └── VideoSpecifics.qml │ │ │ │ ├── QtQml/ │ │ │ │ │ ├── ConnectionsSpecifics.qml │ │ │ │ │ ├── QtObjectPane.qml │ │ │ │ │ └── TimerSpecifics.qml │ │ │ │ ├── QtQuick/ │ │ │ │ │ ├── AdvancedSection.qml │ │ │ │ │ ├── AlignDistributeSection.qml │ │ │ │ │ ├── AnchorRow.qml │ │ │ │ │ ├── AnimatedImageSpecifics.qml │ │ │ │ │ ├── AnimatedSpriteSpecifics.qml │ │ │ │ │ ├── AnimationSection.qml │ │ │ │ │ ├── AnimationTargetSection.qml │ │ │ │ │ ├── BorderImageSpecifics.qml │ │ │ │ │ ├── ColorAnimationSpecifics.qml │ │ │ │ │ ├── ColumnSpecifics.qml │ │ │ │ │ ├── ConnectionsSpecifics.qml │ │ │ │ │ ├── Controls/ │ │ │ │ │ │ ├── AbstractButtonSection.qml │ │ │ │ │ │ ├── Basic/ │ │ │ │ │ │ │ ├── BusyIndicatorSpecifics.qml │ │ │ │ │ │ │ ├── ButtonSpecifics.qml │ │ │ │ │ │ │ ├── CheckBoxSpecifics.qml │ │ │ │ │ │ │ ├── CheckDelegateSpecifics.qml │ │ │ │ │ │ │ ├── ComboBoxSpecifics.qml │ │ │ │ │ │ │ ├── ControlSpecifics.qml │ │ │ │ │ │ │ ├── DelayButtonSpecifics.qml │ │ │ │ │ │ │ ├── DialSpecifics.qml │ │ │ │ │ │ │ ├── DialogSpecifics.qml │ │ │ │ │ │ │ ├── DrawerSpecifics.qml │ │ │ │ │ │ │ ├── FrameSpecifics.qml │ │ │ │ │ │ │ ├── GroupBoxSpecifics.qml │ │ │ │ │ │ │ ├── ItemDelegateSpecifics.qml │ │ │ │ │ │ │ ├── LabelSpecifics.qml │ │ │ │ │ │ │ ├── PageIndicatorSpecifics.qml │ │ │ │ │ │ │ ├── PageSpecifics.qml │ │ │ │ │ │ │ ├── PaneSpecifics.qml │ │ │ │ │ │ │ ├── PopupSpecifics.qml │ │ │ │ │ │ │ ├── ProgressBarSpecifics.qml │ │ │ │ │ │ │ ├── RadioButtonSpecifics.qml │ │ │ │ │ │ │ ├── RadioDelegateSpecifics.qml │ │ │ │ │ │ │ ├── RangeSliderSpecifics.qml │ │ │ │ │ │ │ ├── RoundButtonSpecifics.qml │ │ │ │ │ │ │ ├── ScrollViewSpecifics.qml │ │ │ │ │ │ │ ├── SliderSpecifics.qml │ │ │ │ │ │ │ ├── SpinBoxSpecifics.qml │ │ │ │ │ │ │ ├── StackViewSpecifics.qml │ │ │ │ │ │ │ ├── SwipeDelegateSpecifics.qml │ │ │ │ │ │ │ ├── SwipeViewSpecifics.qml │ │ │ │ │ │ │ ├── SwitchDelegateSpecifics.qml │ │ │ │ │ │ │ ├── SwitchSpecifics.qml │ │ │ │ │ │ │ ├── TabBarSpecifics.qml │ │ │ │ │ │ │ ├── TabButtonSpecifics.qml │ │ │ │ │ │ │ ├── TextAreaSpecifics.qml │ │ │ │ │ │ │ ├── TextFieldSpecifics.qml │ │ │ │ │ │ │ ├── ToolBarSpecifics.qml │ │ │ │ │ │ │ ├── ToolButtonSpecifics.qml │ │ │ │ │ │ │ ├── ToolSeparatorSpecifics.qml │ │ │ │ │ │ │ └── TumblerSpecifics.qml │ │ │ │ │ │ ├── BusyIndicatorSpecifics.qml │ │ │ │ │ │ ├── ButtonSection.qml │ │ │ │ │ │ ├── ButtonSpecifics.qml │ │ │ │ │ │ ├── CheckBoxSpecifics.qml │ │ │ │ │ │ ├── CheckDelegateSpecifics.qml │ │ │ │ │ │ ├── CheckSection.qml │ │ │ │ │ │ ├── ComboBoxSpecifics.qml │ │ │ │ │ │ ├── ContainerSection.qml │ │ │ │ │ │ ├── ControlSection.qml │ │ │ │ │ │ ├── ControlSpecifics.qml │ │ │ │ │ │ ├── DelayButtonSpecifics.qml │ │ │ │ │ │ ├── DialSpecifics.qml │ │ │ │ │ │ ├── DialogSpecifics.qml │ │ │ │ │ │ ├── DrawerSpecifics.qml │ │ │ │ │ │ ├── FrameSpecifics.qml │ │ │ │ │ │ ├── GroupBoxSpecifics.qml │ │ │ │ │ │ ├── IconSection.qml │ │ │ │ │ │ ├── InsetSection.qml │ │ │ │ │ │ ├── ItemDelegateSection.qml │ │ │ │ │ │ ├── ItemDelegateSpecifics.qml │ │ │ │ │ │ ├── LabelSpecifics.qml │ │ │ │ │ │ ├── PageIndicatorSpecifics.qml │ │ │ │ │ │ ├── PageSpecifics.qml │ │ │ │ │ │ ├── PaneSection.qml │ │ │ │ │ │ ├── PaneSpecifics.qml │ │ │ │ │ │ ├── PopupSection.qml │ │ │ │ │ │ ├── PopupSpecifics.qml │ │ │ │ │ │ ├── ProgressBarSpecifics.qml │ │ │ │ │ │ ├── RadioButtonSpecifics.qml │ │ │ │ │ │ ├── RadioDelegateSpecifics.qml │ │ │ │ │ │ ├── RangeSliderSpecifics.qml │ │ │ │ │ │ ├── RoundButtonSpecifics.qml │ │ │ │ │ │ ├── ScrollViewSpecifics.qml │ │ │ │ │ │ ├── SliderSpecifics.qml │ │ │ │ │ │ ├── SpinBoxSpecifics.qml │ │ │ │ │ │ ├── StackViewSpecifics.qml │ │ │ │ │ │ ├── SwipeDelegateSpecifics.qml │ │ │ │ │ │ ├── SwipeViewSpecifics.qml │ │ │ │ │ │ ├── SwitchDelegateSpecifics.qml │ │ │ │ │ │ ├── SwitchSpecifics.qml │ │ │ │ │ │ ├── TabBarSpecifics.qml │ │ │ │ │ │ ├── TabButtonSpecifics.qml │ │ │ │ │ │ ├── TextAreaSpecifics.qml │ │ │ │ │ │ ├── TextFieldSpecifics.qml │ │ │ │ │ │ ├── TextSection.qml │ │ │ │ │ │ ├── ToolBarSpecifics.qml │ │ │ │ │ │ ├── ToolButtonSpecifics.qml │ │ │ │ │ │ ├── ToolSeparatorSpecifics.qml │ │ │ │ │ │ └── TumblerSpecifics.qml │ │ │ │ │ ├── EffectsSection.qml │ │ │ │ │ ├── FlickableSpecifics.qml │ │ │ │ │ ├── FlipableSpecifics.qml │ │ │ │ │ ├── FlowSpecifics.qml │ │ │ │ │ ├── GeometrySection.qml │ │ │ │ │ ├── GridSpecifics.qml │ │ │ │ │ ├── GridViewSpecifics.qml │ │ │ │ │ ├── ImageSpecifics.qml │ │ │ │ │ ├── ItemPane.qml │ │ │ │ │ ├── LayerSection.qml │ │ │ │ │ ├── LayoutProperties.qml │ │ │ │ │ ├── LayoutSection.qml │ │ │ │ │ ├── Layouts/ │ │ │ │ │ │ ├── ColumnLayoutSpecifics.qml │ │ │ │ │ │ ├── GridLayoutSpecifics.qml │ │ │ │ │ │ ├── RowLayoutSpecifics.qml │ │ │ │ │ │ └── StackLayoutSpecifics.qml │ │ │ │ │ ├── ListViewSpecifics.qml │ │ │ │ │ ├── LoaderSpecifics.qml │ │ │ │ │ ├── MouseAreaSpecifics.qml │ │ │ │ │ ├── NumberAnimationSpecifics.qml │ │ │ │ │ ├── ParallelAnimationSpecifics.qml │ │ │ │ │ ├── PathViewSpecifics.qml │ │ │ │ │ ├── PauseAnimationSpecifics.qml │ │ │ │ │ ├── PropertyActionSpecifics.qml │ │ │ │ │ ├── PropertyAnimationSpecifics.qml │ │ │ │ │ ├── QtObjectPane.qml │ │ │ │ │ ├── RectangleSpecifics.qml │ │ │ │ │ ├── RepeaterSpecifics.qml │ │ │ │ │ ├── RowSpecifics.qml │ │ │ │ │ ├── ScriptActionSpecifics.qml │ │ │ │ │ ├── ScriptSection.qml │ │ │ │ │ ├── SequentialAnimationSpecifics.qml │ │ │ │ │ ├── StateSpecifics.qml │ │ │ │ │ ├── Studio/ │ │ │ │ │ │ ├── Components/ │ │ │ │ │ │ │ ├── ArcArrowSpecifics.qml │ │ │ │ │ │ │ ├── ArcItemSpecifics.qml │ │ │ │ │ │ │ ├── BevelSection.qml │ │ │ │ │ │ │ ├── BorderItemSpecifics.qml │ │ │ │ │ │ │ ├── BorderModeComboBox.qml │ │ │ │ │ │ │ ├── CapComboBox.qml │ │ │ │ │ │ │ ├── DashPatternEditor.qml │ │ │ │ │ │ │ ├── EllipseItemSpecifics.qml │ │ │ │ │ │ │ ├── FlipableItemSpecifics.qml │ │ │ │ │ │ │ ├── GroupItemSpecifics.qml │ │ │ │ │ │ │ ├── PieItemSpecifics.qml │ │ │ │ │ │ │ ├── RectangleItemSpecifics.qml │ │ │ │ │ │ │ ├── RegularPolygonItemSpecifics.qml │ │ │ │ │ │ │ ├── StarItemSpecifics.qml │ │ │ │ │ │ │ ├── StraightArrowSpecifics.qml │ │ │ │ │ │ │ ├── StrokeDetailsSection.qml │ │ │ │ │ │ │ ├── SvgPathItemSpecifics.qml │ │ │ │ │ │ │ ├── TextItemSpecifics.qml │ │ │ │ │ │ │ └── TriangleItemSpecifics.qml │ │ │ │ │ │ ├── DesignEffects/ │ │ │ │ │ │ │ └── DesignEffectPane.qml │ │ │ │ │ │ ├── Effects/ │ │ │ │ │ │ │ ├── BlendEffectSpecifics.qml │ │ │ │ │ │ │ ├── BrightnessContrastEffectSpecifics.qml │ │ │ │ │ │ │ ├── ColorOverlayEffectSpecifics.qml │ │ │ │ │ │ │ ├── ColorizeEffectSpecifics.qml │ │ │ │ │ │ │ ├── DesaturationEffectSpecifics.qml │ │ │ │ │ │ │ ├── DirectionalBlurEffectSpecifics.qml │ │ │ │ │ │ │ ├── DisplaceEffectSpecifics.qml │ │ │ │ │ │ │ ├── DropShadowEffectSpecifics.qml │ │ │ │ │ │ │ ├── FastBlurEffectSpecifics.qml │ │ │ │ │ │ │ ├── GammaAdjustEffectSpecifics.qml │ │ │ │ │ │ │ ├── GaussianBlurEffectSpecifics.qml │ │ │ │ │ │ │ ├── GlowEffectSpecifics.qml │ │ │ │ │ │ │ ├── HueSaturationEffectSpecifics.qml │ │ │ │ │ │ │ ├── InnerShadowEffectSpecifics.qml │ │ │ │ │ │ │ ├── LevelAdjustEffectSpecifics.qml │ │ │ │ │ │ │ ├── MaskedBlurEffectSpecifics.qml │ │ │ │ │ │ │ ├── OpacityMaskEffectSpecifics.qml │ │ │ │ │ │ │ ├── RadialBlurEffectSpecifics.qml │ │ │ │ │ │ │ ├── RecursiveBlurEffectSpecifics.qml │ │ │ │ │ │ │ ├── ThresholdMaskEffectSpecifics.qml │ │ │ │ │ │ │ └── ZoomBlurEffectSpecifics.qml │ │ │ │ │ │ └── LogicHelper/ │ │ │ │ │ │ ├── AndOperatorSpecifics.qml │ │ │ │ │ │ ├── BidirectionalBindingSpecifics.qml │ │ │ │ │ │ ├── MinMaxMapperSpecifics.qml │ │ │ │ │ │ ├── NotOperatorSpecifics.qml │ │ │ │ │ │ ├── OrOperatorSpecifics.qml │ │ │ │ │ │ ├── RangeMapperSpecifics.qml │ │ │ │ │ │ └── StringMapperSpecifics.qml │ │ │ │ │ ├── TargetComboBox.qml │ │ │ │ │ ├── TextEditSpecifics.qml │ │ │ │ │ ├── TextInputSpecifics.qml │ │ │ │ │ ├── TextSpecifics.qml │ │ │ │ │ ├── Window/ │ │ │ │ │ │ └── WindowSpecifics.qml │ │ │ │ │ ├── WindowSpecifics.qml │ │ │ │ │ ├── emptyPane.qml │ │ │ │ │ └── project.qmlproject │ │ │ │ ├── QtQuick3D/ │ │ │ │ │ ├── AbstractLightSection.qml │ │ │ │ │ ├── AssetUtils/ │ │ │ │ │ │ ├── RuntimeLoaderSection.qml │ │ │ │ │ │ └── RuntimeLoaderSpecifics.qml │ │ │ │ │ ├── BakedLightmapSection.qml │ │ │ │ │ ├── BakedLightmapSpecifics.qml │ │ │ │ │ ├── BufferInputSection.qml │ │ │ │ │ ├── BufferInputSpecifics.qml │ │ │ │ │ ├── BufferSection.qml │ │ │ │ │ ├── BufferSpecifics.qml │ │ │ │ │ ├── CameraSection.qml │ │ │ │ │ ├── CustomCameraSpecifics.qml │ │ │ │ │ ├── CustomMaterialSection.qml │ │ │ │ │ ├── CustomMaterialSpecifics.qml │ │ │ │ │ ├── DebugSettingsSection.qml │ │ │ │ │ ├── DebugSettingsSpecifics.qml │ │ │ │ │ ├── DefaultMaterialSection.qml │ │ │ │ │ ├── DefaultMaterialSpecifics.qml │ │ │ │ │ ├── DirectionalLightSection.qml │ │ │ │ │ ├── DirectionalLightSpecifics.qml │ │ │ │ │ ├── EffectSection.qml │ │ │ │ │ ├── EffectSpecifics.qml │ │ │ │ │ ├── Effects/ │ │ │ │ │ │ ├── AdditiveColorGradientSection.qml │ │ │ │ │ │ ├── AdditiveColorGradientSpecifics.qml │ │ │ │ │ │ ├── BlurSection.qml │ │ │ │ │ │ ├── BlurSpecifics.qml │ │ │ │ │ │ ├── BrushStrokesSection.qml │ │ │ │ │ │ ├── BrushStrokesSpecifics.qml │ │ │ │ │ │ ├── ChromaticAberrationSection.qml │ │ │ │ │ │ ├── ChromaticAberrationSpecifics.qml │ │ │ │ │ │ ├── ColorMasterSection.qml │ │ │ │ │ │ ├── ColorMasterSpecifics.qml │ │ │ │ │ │ ├── DepthOfFieldHQBlurSection.qml │ │ │ │ │ │ ├── DepthOfFieldHQBlurSpecifics.qml │ │ │ │ │ │ ├── DesaturateSection.qml │ │ │ │ │ │ ├── DesaturateSpecifics.qml │ │ │ │ │ │ ├── DistortionRippleSection.qml │ │ │ │ │ │ ├── DistortionRippleSpecifics.qml │ │ │ │ │ │ ├── DistortionSphereSection.qml │ │ │ │ │ │ ├── DistortionSphereSpecifics.qml │ │ │ │ │ │ ├── DistortionSpiralSection.qml │ │ │ │ │ │ ├── DistortionSpiralSpecifics.qml │ │ │ │ │ │ ├── EdgeDetectSection.qml │ │ │ │ │ │ ├── EdgeDetectSpecifics.qml │ │ │ │ │ │ ├── EmbossSection.qml │ │ │ │ │ │ ├── EmbossSpecifics.qml │ │ │ │ │ │ ├── FlipSection.qml │ │ │ │ │ │ ├── FlipSpecifics.qml │ │ │ │ │ │ ├── FxaaSection.qml │ │ │ │ │ │ ├── FxaaSpecifics.qml │ │ │ │ │ │ ├── GaussianBlurSection.qml │ │ │ │ │ │ ├── GaussianBlurSpecifics.qml │ │ │ │ │ │ ├── HDRBloomTonemapSection.qml │ │ │ │ │ │ ├── HDRBloomTonemapSpecifics.qml │ │ │ │ │ │ ├── MotionBlurSection.qml │ │ │ │ │ │ ├── MotionBlurSpecifics.qml │ │ │ │ │ │ ├── SCurveTonemapSection.qml │ │ │ │ │ │ ├── SCurveTonemapSpecifics.qml │ │ │ │ │ │ ├── ScatterSection.qml │ │ │ │ │ │ ├── ScatterSpecifics.qml │ │ │ │ │ │ ├── TiltShiftSection.qml │ │ │ │ │ │ ├── TiltShiftSpecifics.qml │ │ │ │ │ │ ├── VignetteSection.qml │ │ │ │ │ │ └── VignetteSpecifics.qml │ │ │ │ │ ├── FileInstancingSection.qml │ │ │ │ │ ├── FileInstancingSpecifics.qml │ │ │ │ │ ├── FogSection.qml │ │ │ │ │ ├── FogSpecifics.qml │ │ │ │ │ ├── FrustumCameraSection.qml │ │ │ │ │ ├── FrustumCameraSpecifics.qml │ │ │ │ │ ├── Helpers/ │ │ │ │ │ │ ├── AxisHelperSection.qml │ │ │ │ │ │ ├── AxisHelperSpecifics.qml │ │ │ │ │ │ ├── DebugViewSection.qml │ │ │ │ │ │ ├── DebugViewSpecifics.qml │ │ │ │ │ │ ├── ExtendedSceneEnvironmentSection.qml │ │ │ │ │ │ ├── ExtendedSceneEnvironmentSpecifics.qml │ │ │ │ │ │ ├── GridGeometrySection.qml │ │ │ │ │ │ ├── GridGeometrySpecifics.qml │ │ │ │ │ │ ├── HeightFieldGeometrySection.qml │ │ │ │ │ │ ├── HeightFieldGeometrySpecifics.qml │ │ │ │ │ │ ├── InfiniteGridSection.qml │ │ │ │ │ │ ├── InfiniteGridSpecifics.qml │ │ │ │ │ │ ├── InstanceModelSection.qml │ │ │ │ │ │ ├── InstanceModelSpecifics.qml │ │ │ │ │ │ ├── InstanceRepeaterSection.qml │ │ │ │ │ │ ├── InstanceRepeaterSpecifics.qml │ │ │ │ │ │ ├── LodManagerSection.qml │ │ │ │ │ │ ├── LodManagerSpecifics.qml │ │ │ │ │ │ ├── LookAtNodeSection.qml │ │ │ │ │ │ ├── LookAtNodeSpecifics.qml │ │ │ │ │ │ ├── OrbitCameraControllerSection.qml │ │ │ │ │ │ ├── OrbitCameraControllerSpecifics.qml │ │ │ │ │ │ ├── ProceduralSkyTextureDataSection.qml │ │ │ │ │ │ ├── ProceduralSkyTextureDataSpecifics.qml │ │ │ │ │ │ ├── Repeater3DSection.qml │ │ │ │ │ │ ├── WasdControllerSection.qml │ │ │ │ │ │ └── WasdControllerSpecifics.qml │ │ │ │ │ ├── InstanceListEntrySection.qml │ │ │ │ │ ├── InstanceListEntrySpecifics.qml │ │ │ │ │ ├── InstanceListSection.qml │ │ │ │ │ ├── InstanceListSpecifics.qml │ │ │ │ │ ├── InstancingSection.qml │ │ │ │ │ ├── JointSection.qml │ │ │ │ │ ├── JointSpecifics.qml │ │ │ │ │ ├── LightmapperSection.qml │ │ │ │ │ ├── LightmapperSpecifics.qml │ │ │ │ │ ├── Loader3DSection.qml │ │ │ │ │ ├── Loader3DSpecifics.qml │ │ │ │ │ ├── Material/ │ │ │ │ │ │ ├── ColorEditorPopup.qml │ │ │ │ │ │ ├── Preview.qml │ │ │ │ │ │ ├── Toolbar.qml │ │ │ │ │ │ └── TopSection.qml │ │ │ │ │ ├── MaterialPane.qml │ │ │ │ │ ├── MaterialSection.qml │ │ │ │ │ ├── ModelSection.qml │ │ │ │ │ ├── ModelSpecifics.qml │ │ │ │ │ ├── MorphTargetSection.qml │ │ │ │ │ ├── MorphTargetSpecifics.qml │ │ │ │ │ ├── NodeSection.qml │ │ │ │ │ ├── NodeSpecifics.qml │ │ │ │ │ ├── Object3DPane.qml │ │ │ │ │ ├── Object3DSection.qml │ │ │ │ │ ├── OrthographicCameraSection.qml │ │ │ │ │ ├── OrthographicCameraSpecifics.qml │ │ │ │ │ ├── Particles3D/ │ │ │ │ │ │ ├── Affector3DSection.qml │ │ │ │ │ │ ├── Affector3DSpecifics.qml │ │ │ │ │ │ ├── Attractor3DSection.qml │ │ │ │ │ │ ├── Attractor3DSpecifics.qml │ │ │ │ │ │ ├── DynamicBurst3DSection.qml │ │ │ │ │ │ ├── DynamicBurst3DSpecifics.qml │ │ │ │ │ │ ├── EmitBurst3DSection.qml │ │ │ │ │ │ ├── EmitBurst3DSpecifics.qml │ │ │ │ │ │ ├── Gravity3DSection.qml │ │ │ │ │ │ ├── Gravity3DSpecifics.qml │ │ │ │ │ │ ├── LineParticle3DSection.qml │ │ │ │ │ │ ├── LineParticle3DSpecifics.qml │ │ │ │ │ │ ├── ModelBlendParticle3DSection.qml │ │ │ │ │ │ ├── ModelBlendParticle3DSpecifics.qml │ │ │ │ │ │ ├── ModelParticle3DSection.qml │ │ │ │ │ │ ├── ModelParticle3DSpecifics.qml │ │ │ │ │ │ ├── Particle3DSection.qml │ │ │ │ │ │ ├── Particle3DSpecifics.qml │ │ │ │ │ │ ├── ParticleCustomShape3DSection.qml │ │ │ │ │ │ ├── ParticleCustomShape3DSpecifics.qml │ │ │ │ │ │ ├── ParticleEmitter3DSection.qml │ │ │ │ │ │ ├── ParticleEmitter3DSpecifics.qml │ │ │ │ │ │ ├── ParticleModelShape3DSection.qml │ │ │ │ │ │ ├── ParticleModelShape3DSpecifics.qml │ │ │ │ │ │ ├── ParticleShape3DSection.qml │ │ │ │ │ │ ├── ParticleShape3DSpecifics.qml │ │ │ │ │ │ ├── ParticleSystem3DSection.qml │ │ │ │ │ │ ├── ParticleSystem3DSpecifics.qml │ │ │ │ │ │ ├── PointRotator3DSection.qml │ │ │ │ │ │ ├── PointRotator3DSpecifics.qml │ │ │ │ │ │ ├── Repeller3DSection.qml │ │ │ │ │ │ ├── Repeller3DSpecifics.qml │ │ │ │ │ │ ├── ScaleAffector3DSection.qml │ │ │ │ │ │ ├── ScaleAffector3DSpecifics.qml │ │ │ │ │ │ ├── SpriteParticle3DSection.qml │ │ │ │ │ │ ├── SpriteParticle3DSpecifics.qml │ │ │ │ │ │ ├── SpriteSequence3DSection.qml │ │ │ │ │ │ ├── SpriteSequence3DSpecifics.qml │ │ │ │ │ │ ├── TargetDirection3DSection.qml │ │ │ │ │ │ ├── TargetDirection3DSpecifics.qml │ │ │ │ │ │ ├── TrailEmitter3DSection.qml │ │ │ │ │ │ ├── TrailEmitter3DSpecifics.qml │ │ │ │ │ │ ├── VectorDirection3DSection.qml │ │ │ │ │ │ ├── VectorDirection3DSpecifics.qml │ │ │ │ │ │ ├── Wander3DSection.qml │ │ │ │ │ │ └── Wander3DSpecifics.qml │ │ │ │ │ ├── PassSection.qml │ │ │ │ │ ├── PassSpecifics.qml │ │ │ │ │ ├── PerspectiveCameraSection.qml │ │ │ │ │ ├── PerspectiveCameraSpecifics.qml │ │ │ │ │ ├── Physics/ │ │ │ │ │ │ ├── BoxShapeSection.qml │ │ │ │ │ │ ├── BoxShapeSpecifics.qml │ │ │ │ │ │ ├── CapsuleShapeSection.qml │ │ │ │ │ │ ├── CapsuleShapeSpecifics.qml │ │ │ │ │ │ ├── CharacterControllerSection.qml │ │ │ │ │ │ ├── CharacterControllerSpecifics.qml │ │ │ │ │ │ ├── CollisionShapeSection.qml │ │ │ │ │ │ ├── ConvexMeshShapeSection.qml │ │ │ │ │ │ ├── ConvexMeshShapeSpecifics.qml │ │ │ │ │ │ ├── DynamicRigidBodySection.qml │ │ │ │ │ │ ├── DynamicRigidBodySpecifics.qml │ │ │ │ │ │ ├── HeightFieldShapeSection.qml │ │ │ │ │ │ ├── HeightFieldShapeSpecifics.qml │ │ │ │ │ │ ├── PhysicsBodySection.qml │ │ │ │ │ │ ├── PhysicsMaterialSection.qml │ │ │ │ │ │ ├── PhysicsMaterialSpecifics.qml │ │ │ │ │ │ ├── PhysicsNodeSection.qml │ │ │ │ │ │ ├── PhysicsWorldSection.qml │ │ │ │ │ │ ├── PhysicsWorldSpecifics.qml │ │ │ │ │ │ ├── PlaneShapeSpecifics.qml │ │ │ │ │ │ ├── SphereShapeSection.qml │ │ │ │ │ │ ├── SphereShapeSpecifics.qml │ │ │ │ │ │ ├── StaticRigidBodySpecifics.qml │ │ │ │ │ │ ├── TriangleMeshShapeSection.qml │ │ │ │ │ │ ├── TriangleMeshShapeSpecifics.qml │ │ │ │ │ │ └── TriggerBodySpecifics.qml │ │ │ │ │ ├── PointLightSection.qml │ │ │ │ │ ├── PointLightSpecifics.qml │ │ │ │ │ ├── PrincipledMaterialSection.qml │ │ │ │ │ ├── PrincipledMaterialSpecifics.qml │ │ │ │ │ ├── ReflectionProbeSection.qml │ │ │ │ │ ├── ReflectionProbeSpecifics.qml │ │ │ │ │ ├── Repeater3DSection.qml │ │ │ │ │ ├── Repeater3DSpecifics.qml │ │ │ │ │ ├── ResourceLoaderSection.qml │ │ │ │ │ ├── ResourceLoaderSpecifics.qml │ │ │ │ │ ├── SceneEnvironmentSection.qml │ │ │ │ │ ├── SceneEnvironmentSpecifics.qml │ │ │ │ │ ├── SetUniformValueSection.qml │ │ │ │ │ ├── SetUniformValueSpecifics.qml │ │ │ │ │ ├── ShaderSection.qml │ │ │ │ │ ├── ShaderSpecifics.qml │ │ │ │ │ ├── ShadowSection.qml │ │ │ │ │ ├── SkinSection.qml │ │ │ │ │ ├── SkinSpecifics.qml │ │ │ │ │ ├── SpatialAudio/ │ │ │ │ │ │ ├── AmbientSoundSection.qml │ │ │ │ │ │ ├── AmbientSoundSpecifics.qml │ │ │ │ │ │ ├── AudioEngineSection.qml │ │ │ │ │ │ ├── AudioEngineSpecifics.qml │ │ │ │ │ │ ├── AudioListenerSpecifics.qml │ │ │ │ │ │ ├── AudioRoomSection.qml │ │ │ │ │ │ ├── AudioRoomSpecifics.qml │ │ │ │ │ │ ├── SpatialSoundSection.qml │ │ │ │ │ │ └── SpatialSoundSpecifics.qml │ │ │ │ │ ├── SpecularGlossyMaterialSection.qml │ │ │ │ │ ├── SpecularGlossyMaterialSpecifics.qml │ │ │ │ │ ├── SpotLightSection.qml │ │ │ │ │ ├── SpotLightSpecifics.qml │ │ │ │ │ ├── Texture/ │ │ │ │ │ │ ├── ToolBar.qml │ │ │ │ │ │ └── TopSection.qml │ │ │ │ │ ├── TextureInputSection.qml │ │ │ │ │ ├── TextureInputSpecifics.qml │ │ │ │ │ ├── TexturePane.qml │ │ │ │ │ ├── TextureSection.qml │ │ │ │ │ ├── View3DSection.qml │ │ │ │ │ ├── View3DSpecifics.qml │ │ │ │ │ └── propertyGroups.json │ │ │ │ ├── QtQuickUltralite/ │ │ │ │ │ ├── Extras/ │ │ │ │ │ │ ├── AnimatedSpriteDirectorySpecifics.qml │ │ │ │ │ │ ├── ColorizedImageSpecifics.qml │ │ │ │ │ │ └── StaticTextSpecifics.qml │ │ │ │ │ ├── Layers/ │ │ │ │ │ │ ├── ApplicationScreensSpecifics.qml │ │ │ │ │ │ ├── ImageLayerSpecifics.qml │ │ │ │ │ │ ├── ItemLayerSpecifics.qml │ │ │ │ │ │ ├── ScreenSpecifics.qml │ │ │ │ │ │ └── SpriteLayerSpecifics.qml │ │ │ │ │ └── Studio/ │ │ │ │ │ └── Components/ │ │ │ │ │ └── ArcItemSpecifics.qml │ │ │ │ ├── RegExpValidator.qml │ │ │ │ └── imports/ │ │ │ │ ├── HelperWidgets/ │ │ │ │ │ ├── AbstractButton.qml │ │ │ │ │ ├── ActionIndicator.qml │ │ │ │ │ ├── AlignmentHorizontalButtons.qml │ │ │ │ │ ├── AlignmentVerticalButtons.qml │ │ │ │ │ ├── AnchorButtons.qml │ │ │ │ │ ├── BoolButtonRowButton.qml │ │ │ │ │ ├── Button.qml │ │ │ │ │ ├── ButtonRow.qml │ │ │ │ │ ├── ButtonRow2.qml │ │ │ │ │ ├── ButtonRowButton.qml │ │ │ │ │ ├── CharacterSection.qml │ │ │ │ │ ├── CheckBox.qml │ │ │ │ │ ├── ColorEditor.qml │ │ │ │ │ ├── ColorEditorPopup.qml │ │ │ │ │ ├── ColorLogic.qml │ │ │ │ │ ├── ComboBox.qml │ │ │ │ │ ├── ComponentButton.qml │ │ │ │ │ ├── ComponentSection.qml │ │ │ │ │ ├── Constants.js │ │ │ │ │ ├── ControlLabel.qml │ │ │ │ │ ├── Controller.qml │ │ │ │ │ ├── CornerRadiusSection.qml │ │ │ │ │ ├── DoubleSpinBox.qml │ │ │ │ │ ├── DynamicPropertiesSection.qml │ │ │ │ │ ├── EditableListView.qml │ │ │ │ │ ├── ExpandingSpacer.qml │ │ │ │ │ ├── ExpressionTextField.qml │ │ │ │ │ ├── ExtendedFunctionLogic.qml │ │ │ │ │ ├── FlagsComboBox.qml │ │ │ │ │ ├── FlickableGeometrySection.qml │ │ │ │ │ ├── FlickableSection.qml │ │ │ │ │ ├── FontComboBox.qml │ │ │ │ │ ├── FontExtrasSection.qml │ │ │ │ │ ├── FontSection.qml │ │ │ │ │ ├── FontStyleButtons.qml │ │ │ │ │ ├── GradientLine.qml │ │ │ │ │ ├── GradientPresetList.qml │ │ │ │ │ ├── GradientPresetTabContent.qml │ │ │ │ │ ├── GradientPropertySpinBox.qml │ │ │ │ │ ├── HorizontalScrollBar.qml │ │ │ │ │ ├── IconButton.qml │ │ │ │ │ ├── IconIndicator.qml │ │ │ │ │ ├── IconLabel.qml │ │ │ │ │ ├── ImagePreviewTooltipArea.qml │ │ │ │ │ ├── ImageSection.qml │ │ │ │ │ ├── InsightSection.qml │ │ │ │ │ ├── ItemFilterComboBox.qml │ │ │ │ │ ├── Label.qml │ │ │ │ │ ├── LineEdit.qml │ │ │ │ │ ├── LinkIndicator2D.qml │ │ │ │ │ ├── ListViewComboBox.qml │ │ │ │ │ ├── MarginSection.qml │ │ │ │ │ ├── MultiIconLabel.qml │ │ │ │ │ ├── OriginControl.qml │ │ │ │ │ ├── OriginIndicator.qml │ │ │ │ │ ├── OriginSelector.qml │ │ │ │ │ ├── PaddingSection.qml │ │ │ │ │ ├── PopupLabel.qml │ │ │ │ │ ├── PropertyEditorPane.qml │ │ │ │ │ ├── PropertyEditorToolBar.qml │ │ │ │ │ ├── PropertyLabel.qml │ │ │ │ │ ├── PropertySearchBar.qml │ │ │ │ │ ├── RoundedPanel.qml │ │ │ │ │ ├── ScrollView.qml │ │ │ │ │ ├── SecondColumnLayout.qml │ │ │ │ │ ├── Section.qml │ │ │ │ │ ├── SectionLayout.qml │ │ │ │ │ ├── Spacer.qml │ │ │ │ │ ├── SpinBox.qml │ │ │ │ │ ├── StandardTextSection.qml │ │ │ │ │ ├── TextExtrasSection.qml │ │ │ │ │ ├── TextInputSection.qml │ │ │ │ │ ├── ToolTipArea.qml │ │ │ │ │ ├── UrlChooser.qml │ │ │ │ │ ├── VerticalScrollBar.qml │ │ │ │ │ └── qmldir │ │ │ │ ├── StudioControls/ │ │ │ │ │ ├── AbstractButton.qml │ │ │ │ │ ├── ActionIndicator.qml │ │ │ │ │ ├── Button.qml │ │ │ │ │ ├── ButtonGroup.qml │ │ │ │ │ ├── ButtonRow.qml │ │ │ │ │ ├── CheckBox.qml │ │ │ │ │ ├── CheckIndicator.qml │ │ │ │ │ ├── ColorEditor.qml │ │ │ │ │ ├── ComboBox.qml │ │ │ │ │ ├── ComboBoxInput.qml │ │ │ │ │ ├── ContextMenu.qml │ │ │ │ │ ├── CustomComboBox.qml │ │ │ │ │ ├── Dialog.qml │ │ │ │ │ ├── DialogButton.qml │ │ │ │ │ ├── DialogButtonBox.qml │ │ │ │ │ ├── FilterComboBox.qml │ │ │ │ │ ├── IconIndicator.qml │ │ │ │ │ ├── IconTextButton.qml │ │ │ │ │ ├── Indicator.qml │ │ │ │ │ ├── InfinityLoopIndicator.qml │ │ │ │ │ ├── ItemDelegate.qml │ │ │ │ │ ├── LinkIndicator2D.qml │ │ │ │ │ ├── LinkIndicator3D.qml │ │ │ │ │ ├── LinkIndicator3DComponent.qml │ │ │ │ │ ├── Menu.qml │ │ │ │ │ ├── MenuItem.qml │ │ │ │ │ ├── MenuItemWithIcon.qml │ │ │ │ │ ├── MenuSeparator.qml │ │ │ │ │ ├── PopupDialog.qml │ │ │ │ │ ├── PopupPanel.qml │ │ │ │ │ ├── ProgressBar.qml │ │ │ │ │ ├── RadioButton.qml │ │ │ │ │ ├── RealSliderPopup.qml │ │ │ │ │ ├── RealSpinBox.qml │ │ │ │ │ ├── RealSpinBoxIndicator.qml │ │ │ │ │ ├── RealSpinBoxInput.qml │ │ │ │ │ ├── ScrollBar.qml │ │ │ │ │ ├── ScrollView.qml │ │ │ │ │ ├── SearchBox.qml │ │ │ │ │ ├── SecondColumnLayout.qml │ │ │ │ │ ├── Section.qml │ │ │ │ │ ├── SectionLabel.qml │ │ │ │ │ ├── SectionLayout.qml │ │ │ │ │ ├── Slider.qml │ │ │ │ │ ├── SliderPopup.qml │ │ │ │ │ ├── SortFilterModel.qml │ │ │ │ │ ├── SpinBox.qml │ │ │ │ │ ├── SpinBoxIndicator.qml │ │ │ │ │ ├── SpinBoxInput.qml │ │ │ │ │ ├── SplitView.qml │ │ │ │ │ ├── Switch.qml │ │ │ │ │ ├── TabBar.qml │ │ │ │ │ ├── TabButton.qml │ │ │ │ │ ├── TextArea.qml │ │ │ │ │ ├── TextField.qml │ │ │ │ │ ├── ToolTip.qml │ │ │ │ │ ├── ToolTipArea.qml │ │ │ │ │ ├── TopLevelComboBox.qml │ │ │ │ │ ├── TransientScrollBar.qml │ │ │ │ │ ├── TranslationIndicator.qml │ │ │ │ │ ├── impl/ │ │ │ │ │ │ ├── ColorEditorPopup.qml │ │ │ │ │ │ ├── ColorPalette.qml │ │ │ │ │ │ ├── ColorPicker.qml │ │ │ │ │ │ ├── HueSlider.qml │ │ │ │ │ │ ├── LuminanceSlider.qml │ │ │ │ │ │ └── OpacitySlider.qml │ │ │ │ │ └── qmldir │ │ │ │ └── StudioTheme/ │ │ │ │ ├── ConnectionPopupButtonStyle.qml │ │ │ │ ├── ConnectionPopupControlStyle.qml │ │ │ │ ├── Constants.qml │ │ │ │ ├── ControlStyle.qml │ │ │ │ ├── DefaultStyle.qml │ │ │ │ ├── InternalConstants.qml │ │ │ │ ├── MicroToolbarButtonStyle.qml │ │ │ │ ├── PrimaryButtonStyle.qml │ │ │ │ ├── SearchControlStyle.qml │ │ │ │ ├── StatesControlStyle.qml │ │ │ │ ├── StatusBarButtonStyle.qml │ │ │ │ ├── StatusBarControlStyle.qml │ │ │ │ ├── ToolbarStyle.qml │ │ │ │ ├── TopToolbarButtonStyle.qml │ │ │ │ ├── Values.qml │ │ │ │ ├── ViewBarButtonStyle.qml │ │ │ │ ├── ViewBarControlStyle.qml │ │ │ │ ├── ViewStyle.qml │ │ │ │ └── qmldir │ │ │ ├── qt4mcu/ │ │ │ │ ├── metadata.qml │ │ │ │ ├── qul-14.qml │ │ │ │ ├── qul-17.qml │ │ │ │ ├── qul-18.qml │ │ │ │ ├── qul-19.qml │ │ │ │ ├── qul-20.qml │ │ │ │ ├── qul-21.qml │ │ │ │ ├── qul-22.qml │ │ │ │ ├── qul-23.qml │ │ │ │ ├── qul-24.qml │ │ │ │ ├── qul-25.qml │ │ │ │ ├── qul-26.qml │ │ │ │ ├── qul-27.qml │ │ │ │ └── qul-28.qml │ │ │ ├── scriptseditor/ │ │ │ │ └── imports/ │ │ │ │ └── ScriptsEditor/ │ │ │ │ ├── ActionsComboBox.qml │ │ │ │ ├── ExpressionBuilder.qml │ │ │ │ ├── MyListViewDelegate.qml │ │ │ │ ├── MyTreeViewDelegate.qml │ │ │ │ ├── Pill.qml │ │ │ │ ├── ScriptEditorForm.qml │ │ │ │ ├── StatementEditor.qml │ │ │ │ ├── SuggestionPopup.qml │ │ │ │ └── qmldir │ │ │ ├── stateseditor/ │ │ │ │ ├── Main.qml │ │ │ │ ├── MenuButton.qml │ │ │ │ ├── StateMenu.qml │ │ │ │ ├── StateScrollBar.qml │ │ │ │ ├── StateThumbnail.qml │ │ │ │ └── imports/ │ │ │ │ └── StatesEditor/ │ │ │ │ ├── Constants.qml │ │ │ │ └── qmldir │ │ │ ├── statusbar/ │ │ │ │ ├── IssuesOutputPanel.qml │ │ │ │ ├── IssuesPanel.qml │ │ │ │ ├── Main.qml │ │ │ │ ├── NotificationButton.qml │ │ │ │ ├── OutputPanel.qml │ │ │ │ └── TabBarButton.qml │ │ │ ├── studio_templates/ │ │ │ │ ├── files/ │ │ │ │ │ ├── custombutton/ │ │ │ │ │ │ ├── file.qml.tpl │ │ │ │ │ │ └── wizard.json │ │ │ │ │ ├── customcheckbox/ │ │ │ │ │ │ ├── file.qml.tpl │ │ │ │ │ │ └── wizard.json │ │ │ │ │ ├── customdial/ │ │ │ │ │ │ ├── file.qml.tpl │ │ │ │ │ │ └── wizard.json │ │ │ │ │ ├── customslider/ │ │ │ │ │ │ ├── file.qml.tpl │ │ │ │ │ │ └── wizard.json │ │ │ │ │ ├── customspinbox/ │ │ │ │ │ │ ├── file.qml.tpl │ │ │ │ │ │ └── wizard.json │ │ │ │ │ ├── customswitch/ │ │ │ │ │ │ ├── file.qml.tpl │ │ │ │ │ │ └── wizard.json │ │ │ │ │ ├── javascript/ │ │ │ │ │ │ ├── file.js.tpl │ │ │ │ │ │ └── wizard.json │ │ │ │ │ ├── listmodel/ │ │ │ │ │ │ ├── file.qml.tpl │ │ │ │ │ │ └── wizard.json │ │ │ │ │ ├── pane/ │ │ │ │ │ │ ├── file.qml.tpl │ │ │ │ │ │ └── wizard.json │ │ │ │ │ ├── qmlmodule/ │ │ │ │ │ │ ├── file.qml.tpl │ │ │ │ │ │ ├── qmldir.tpl │ │ │ │ │ │ ├── qmlproject.tpl │ │ │ │ │ │ └── wizard.json │ │ │ │ │ ├── qtquickfile/ │ │ │ │ │ │ ├── file.qml.tpl │ │ │ │ │ │ └── wizard.json │ │ │ │ │ ├── qtquickviews/ │ │ │ │ │ │ ├── DataModel.qml.tpl │ │ │ │ │ │ ├── GridDelegate.ui.qml.tpl │ │ │ │ │ │ ├── GridView.ui.qml.tpl │ │ │ │ │ │ ├── ListDelegate.ui.qml.tpl │ │ │ │ │ │ ├── ListView.ui.qml.tpl │ │ │ │ │ │ └── wizard.json │ │ │ │ │ ├── qtuiquickfile/ │ │ │ │ │ │ ├── file.qml.tpl │ │ │ │ │ │ └── wizard.json │ │ │ │ │ ├── qtuiquickform/ │ │ │ │ │ │ ├── file.qml.tpl │ │ │ │ │ │ ├── fileForm.ui.qml.tpl │ │ │ │ │ │ └── wizard.json │ │ │ │ │ ├── scxml/ │ │ │ │ │ │ ├── file.scxml │ │ │ │ │ │ └── wizard.json │ │ │ │ │ ├── stackedlayout/ │ │ │ │ │ │ ├── file.qml.tpl │ │ │ │ │ │ └── wizard.json │ │ │ │ │ └── swipeview/ │ │ │ │ │ ├── file.qml.tpl │ │ │ │ │ └── wizard.json │ │ │ │ └── projects/ │ │ │ │ ├── application/ │ │ │ │ │ ├── Screen01.ui.qml.tpl │ │ │ │ │ ├── detailsPage.qml │ │ │ │ │ └── wizard.json │ │ │ │ ├── application-3d/ │ │ │ │ │ ├── Screen01.ui.qml.tpl │ │ │ │ │ ├── contentmodule.main.qml.tpl │ │ │ │ │ ├── detailsPage.qml │ │ │ │ │ └── wizard.json │ │ │ │ ├── application-extended-3d/ │ │ │ │ │ ├── Screen01.ui.qml.tpl │ │ │ │ │ ├── contentmodule.main.qml.tpl │ │ │ │ │ ├── detailsPage.qml │ │ │ │ │ └── wizard.json │ │ │ │ ├── application-mcu/ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Constants.qml.tpl │ │ │ │ │ ├── MCUDefaultStyle/ │ │ │ │ │ │ ├── Button.qml │ │ │ │ │ │ ├── CheckBox.qml │ │ │ │ │ │ ├── DefaultStyle.qml │ │ │ │ │ │ ├── Dial.qml │ │ │ │ │ │ ├── ProgressBar.qml │ │ │ │ │ │ ├── RadioButton.qml │ │ │ │ │ │ ├── Slider.qml │ │ │ │ │ │ ├── SwipeView.qml │ │ │ │ │ │ ├── Switch.qml │ │ │ │ │ │ └── qmldir │ │ │ │ │ ├── Screen01.ui.qml.tpl │ │ │ │ │ ├── app_mcu.qmlproject.tpl │ │ │ │ │ ├── assets.txt │ │ │ │ │ ├── constants_module.qmlproject.tpl │ │ │ │ │ ├── detailsPage.qml │ │ │ │ │ ├── images.txt │ │ │ │ │ ├── main.qml.tpl │ │ │ │ │ ├── mcuqtquickcontrols2.conf │ │ │ │ │ ├── qmldir.tpl │ │ │ │ │ └── wizard.json │ │ │ │ ├── common/ │ │ │ │ │ ├── App.qml.tpl │ │ │ │ │ ├── app.qmlproject.tpl │ │ │ │ │ ├── asset_imports.txt │ │ │ │ │ ├── fonts.txt │ │ │ │ │ ├── images.txt │ │ │ │ │ └── qtquickcontrols2.conf.tpl │ │ │ │ ├── defaults/ │ │ │ │ │ └── qmlapplication-project-page.json │ │ │ │ ├── desktop-launcher/ │ │ │ │ │ ├── Screen01.ui.qml.tpl │ │ │ │ │ ├── detailsPage.qml │ │ │ │ │ └── wizard.json │ │ │ │ ├── fonts.txt │ │ │ │ ├── mobile-scroll/ │ │ │ │ │ ├── Screen01.ui.qml.tpl │ │ │ │ │ ├── detailsPage.qml │ │ │ │ │ └── wizard.json │ │ │ │ ├── mobile-stack/ │ │ │ │ │ ├── App.qml.tpl │ │ │ │ │ ├── CMakeLists.content.txt.tpl │ │ │ │ │ ├── Screen01.ui.qml.tpl │ │ │ │ │ ├── Screen02.ui.qml.tpl │ │ │ │ │ ├── detailsPage.qml │ │ │ │ │ └── wizard.json │ │ │ │ ├── mobile-swipe/ │ │ │ │ │ ├── App.qml.tpl │ │ │ │ │ ├── CMakeLists.content.txt.tpl │ │ │ │ │ ├── Screen01.ui.qml.tpl │ │ │ │ │ ├── Screen02.ui.qml.tpl │ │ │ │ │ ├── detailsPage.qml │ │ │ │ │ └── wizard.json │ │ │ │ └── shared-plugin/ │ │ │ │ └── name/ │ │ │ │ ├── CMakeLists.importmodule.txt.tpl │ │ │ │ ├── Constants.qml.tpl │ │ │ │ ├── EventListModel.qml.tpl │ │ │ │ ├── EventListSimulator.qml.tpl │ │ │ │ ├── JsonData.qml.tpl │ │ │ │ ├── data.json.tpl │ │ │ │ ├── designer/ │ │ │ │ │ └── plugin.metainfo │ │ │ │ └── importmodule.qmldir.tpl │ │ │ ├── toolbar/ │ │ │ │ ├── CrumbleBar.qml │ │ │ │ ├── CrumbleBread.qml │ │ │ │ ├── Main.qml │ │ │ │ ├── MenuItemDelegate.qml │ │ │ │ ├── ShareNotification.qml │ │ │ │ └── ToolbarButton.qml │ │ │ ├── translationhelper/ │ │ │ │ └── itemlibrary.qml │ │ │ ├── welcomepage/ │ │ │ │ ├── BrandBar.qml │ │ │ │ ├── CheckButton.ui.qml │ │ │ │ ├── CustomDialog.qml │ │ │ │ ├── CustomDialogButtonBox.qml │ │ │ │ ├── CustomGrid.qml │ │ │ │ ├── CustomScrollBar.qml │ │ │ │ ├── CustomScrollView.qml │ │ │ │ ├── DialogButton.qml │ │ │ │ ├── DownloadButton.qml │ │ │ │ ├── DownloadPanel.qml │ │ │ │ ├── DownloadProgressBar.qml │ │ │ │ ├── FigmaButton.qml │ │ │ │ ├── MainGridStack.qml │ │ │ │ ├── MainScreen.qml │ │ │ │ ├── PushButton.ui.qml │ │ │ │ ├── RangeMapper.qml │ │ │ │ ├── SocialButton.qml │ │ │ │ ├── StringMapper.qml │ │ │ │ ├── Tag.qml │ │ │ │ ├── TagArea.qml │ │ │ │ ├── TestControlPanel.qml │ │ │ │ ├── ThumbnailDelegate.qml │ │ │ │ ├── TourDialogButton.qml │ │ │ │ ├── TourModel.qml │ │ │ │ ├── TourProgressBar.qml │ │ │ │ ├── TourRestartButton.qml │ │ │ │ ├── TourThumbnailDelegate.qml │ │ │ │ ├── TwirlButton.qml │ │ │ │ ├── WelcomePage.qml │ │ │ │ ├── WelcomeScreen.qmlproject │ │ │ │ ├── YoutubeButton.qml │ │ │ │ ├── fonts/ │ │ │ │ │ └── fonts.txt │ │ │ │ ├── imports/ │ │ │ │ │ ├── UiTour/ │ │ │ │ │ │ ├── Highlight.ui.qml │ │ │ │ │ │ ├── Slide.qml │ │ │ │ │ │ ├── SlideNavButton.qml │ │ │ │ │ │ ├── SlidePlayer.qml │ │ │ │ │ │ ├── SlideShow.qml │ │ │ │ │ │ ├── StrongHighlight.ui.qml │ │ │ │ │ │ └── qmldir │ │ │ │ │ └── WelcomeScreen/ │ │ │ │ │ ├── Constants.qml │ │ │ │ │ ├── designer/ │ │ │ │ │ │ └── plugin.metainfo │ │ │ │ │ └── qmldir │ │ │ │ ├── main.qml │ │ │ │ ├── main.qml.qml │ │ │ │ ├── mockData/ │ │ │ │ │ ├── ExampleCheckout/ │ │ │ │ │ │ ├── FileDownloader.qml │ │ │ │ │ │ ├── FileExtractor.qml │ │ │ │ │ │ └── qmldir │ │ │ │ │ ├── projectmodel/ │ │ │ │ │ │ ├── ProjectModel.qml │ │ │ │ │ │ └── qmldir │ │ │ │ │ └── usagestatistics/ │ │ │ │ │ ├── UsageStatisticModel.qml │ │ │ │ │ └── qmldir │ │ │ │ └── qtquickcontrols2.conf │ │ │ └── workspacePresets/ │ │ │ ├── Advanced-2D.wrk │ │ │ ├── Advanced-3D.wrk │ │ │ ├── Basic-2D.wrk │ │ │ ├── Basic-3D.wrk │ │ │ └── order.json │ │ ├── schemes/ │ │ │ ├── MS_Visual_C++.kms │ │ │ ├── MS_Visual_Studio_Code.kms │ │ │ └── Xcode.kms │ │ ├── snippets/ │ │ │ ├── cmake.xml │ │ │ ├── cpp.xml │ │ │ ├── qml.xml │ │ │ ├── test.xml │ │ │ └── text.xml │ │ ├── styles/ │ │ │ ├── creator-dark.xml │ │ │ ├── dark-2024.xml │ │ │ ├── dark.xml │ │ │ ├── default.xml │ │ │ ├── default_classic.xml │ │ │ ├── grayscale.xml │ │ │ ├── inkpot.xml │ │ │ ├── intellij.xml │ │ │ ├── light-2024.xml │ │ │ ├── mabakor.xml │ │ │ ├── modnokai_night_shift_v2.xml │ │ │ ├── solarized-dark.xml │ │ │ └── solarized-light.xml │ │ ├── templates/ │ │ │ ├── qt4project/ │ │ │ │ └── customwidgetwizard/ │ │ │ │ ├── tpl_collection.cpp │ │ │ │ ├── tpl_collection.h │ │ │ │ ├── tpl_plugin.pro │ │ │ │ ├── tpl_resources.qrc │ │ │ │ ├── tpl_single.cpp │ │ │ │ ├── tpl_single.h │ │ │ │ ├── tpl_widget.cpp │ │ │ │ ├── tpl_widget.h │ │ │ │ ├── tpl_widget_include.pri │ │ │ │ └── tpl_widget_lib.pro │ │ │ └── wizards/ │ │ │ ├── README.txt │ │ │ ├── autotest/ │ │ │ │ ├── boosttest/ │ │ │ │ │ └── wizard.json │ │ │ │ ├── catch/ │ │ │ │ │ └── wizard.json │ │ │ │ ├── files/ │ │ │ │ │ ├── catch-common.pri │ │ │ │ │ ├── catch2_tst.cpp │ │ │ │ │ ├── catchCommon.js │ │ │ │ │ ├── googlecommon.js │ │ │ │ │ ├── gtest_dependency.pri │ │ │ │ │ ├── setup.cpp │ │ │ │ │ ├── setup.h │ │ │ │ │ ├── tst.pro │ │ │ │ │ ├── tst.qbs │ │ │ │ │ ├── tst.txt │ │ │ │ │ ├── tstQt6.txt │ │ │ │ │ ├── tst_main.cpp │ │ │ │ │ ├── tst_qml.tmpl │ │ │ │ │ ├── tst_src.cpp │ │ │ │ │ ├── tst_src_boost.cpp │ │ │ │ │ └── tst_src_gt.cpp │ │ │ │ ├── gtest/ │ │ │ │ │ └── wizard.json │ │ │ │ ├── qttest/ │ │ │ │ │ └── wizard.json │ │ │ │ └── quicktest/ │ │ │ │ └── wizard.json │ │ │ ├── classes/ │ │ │ │ ├── cpp/ │ │ │ │ │ ├── file.cpp │ │ │ │ │ ├── file.h │ │ │ │ │ └── wizard.json │ │ │ │ ├── itemmodel/ │ │ │ │ │ ├── itemmodel.cpp │ │ │ │ │ ├── itemmodel.h │ │ │ │ │ ├── listmodel.cpp │ │ │ │ │ ├── listmodel.h │ │ │ │ │ ├── tablemodel.cpp │ │ │ │ │ ├── tablemodel.h │ │ │ │ │ └── wizard.json │ │ │ │ └── python/ │ │ │ │ ├── file.py │ │ │ │ └── wizard.json │ │ │ ├── files/ │ │ │ │ ├── cppheader/ │ │ │ │ │ ├── file.h │ │ │ │ │ └── wizard.json │ │ │ │ ├── cppsource/ │ │ │ │ │ ├── file.cpp │ │ │ │ │ └── wizard.json │ │ │ │ ├── form/ │ │ │ │ │ ├── file.ui │ │ │ │ │ └── wizard.json │ │ │ │ ├── glsl/ │ │ │ │ │ ├── gl/ │ │ │ │ │ │ ├── fragment/ │ │ │ │ │ │ │ ├── file.frag │ │ │ │ │ │ │ └── wizard.json │ │ │ │ │ │ └── vertex/ │ │ │ │ │ │ ├── file.vert │ │ │ │ │ │ └── wizard.json │ │ │ │ │ └── gles/ │ │ │ │ │ ├── fragment/ │ │ │ │ │ │ ├── file.fsh │ │ │ │ │ │ └── wizard.json │ │ │ │ │ └── vertex/ │ │ │ │ │ ├── file.vsh │ │ │ │ │ └── wizard.json │ │ │ │ ├── java/ │ │ │ │ │ ├── source.java │ │ │ │ │ └── wizard.json │ │ │ │ ├── js/ │ │ │ │ │ ├── file.js │ │ │ │ │ └── wizard.json │ │ │ │ ├── markdown/ │ │ │ │ │ ├── file.md │ │ │ │ │ └── wizard.json │ │ │ │ ├── nim/ │ │ │ │ │ ├── file.nim │ │ │ │ │ └── wizard.json │ │ │ │ ├── nimscript/ │ │ │ │ │ ├── file.nims │ │ │ │ │ └── wizard.json │ │ │ │ ├── python/ │ │ │ │ │ ├── file.py │ │ │ │ │ └── wizard.json │ │ │ │ ├── qrc/ │ │ │ │ │ ├── file.qrc │ │ │ │ │ └── wizard.json │ │ │ │ ├── qtquick2/ │ │ │ │ │ ├── file.qml.tpl │ │ │ │ │ └── wizard.json │ │ │ │ ├── scratch/ │ │ │ │ │ ├── file.txt │ │ │ │ │ └── wizard.json │ │ │ │ ├── scxml/ │ │ │ │ │ ├── file.scxml │ │ │ │ │ └── wizard.json │ │ │ │ ├── testing/ │ │ │ │ │ ├── file.cpp │ │ │ │ │ └── wizard.json │ │ │ │ ├── text/ │ │ │ │ │ ├── file.txt │ │ │ │ │ └── wizard.json │ │ │ │ └── translation/ │ │ │ │ └── wizard.json │ │ │ ├── projects/ │ │ │ │ ├── consoleapp/ │ │ │ │ │ ├── CMakeLists-Qt6.txt │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── file.pro │ │ │ │ │ ├── file.qbs │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── meson.build │ │ │ │ │ └── wizard.json │ │ │ │ ├── cpplibrary/ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── lib.cpp │ │ │ │ │ ├── lib.h │ │ │ │ │ ├── lib_global.h │ │ │ │ │ ├── meson.build │ │ │ │ │ ├── project.json │ │ │ │ │ ├── project.pro │ │ │ │ │ ├── project.qbs │ │ │ │ │ └── wizard.json │ │ │ │ ├── git.ignore │ │ │ │ ├── nim/ │ │ │ │ │ ├── file.nimproject │ │ │ │ │ ├── main.nim │ │ │ │ │ └── wizard.json │ │ │ │ ├── nimble/ │ │ │ │ │ ├── binary/ │ │ │ │ │ │ ├── binary.nimble │ │ │ │ │ │ └── src/ │ │ │ │ │ │ └── binary.nim │ │ │ │ │ ├── hybrid/ │ │ │ │ │ │ ├── hybrid.nimble │ │ │ │ │ │ ├── src/ │ │ │ │ │ │ │ ├── hybrid.nim │ │ │ │ │ │ │ └── hybridpkg/ │ │ │ │ │ │ │ └── submodule.nim │ │ │ │ │ │ └── tests/ │ │ │ │ │ │ ├── config.nims │ │ │ │ │ │ └── test1.nim │ │ │ │ │ ├── library/ │ │ │ │ │ │ ├── library.nimble │ │ │ │ │ │ ├── src/ │ │ │ │ │ │ │ ├── library/ │ │ │ │ │ │ │ │ └── submodule.nim │ │ │ │ │ │ │ └── library.nim │ │ │ │ │ │ └── tests/ │ │ │ │ │ │ ├── config.nims │ │ │ │ │ │ └── test1.nim │ │ │ │ │ └── wizard.json │ │ │ │ ├── plainc/ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── file.pro │ │ │ │ │ ├── file.qbs │ │ │ │ │ ├── main.c │ │ │ │ │ ├── meson.build │ │ │ │ │ └── wizard.json │ │ │ │ ├── plaincpp/ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── file.pro │ │ │ │ │ ├── file.qbs │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── meson.build │ │ │ │ │ └── wizard.json │ │ │ │ ├── qmake/ │ │ │ │ │ └── empty/ │ │ │ │ │ ├── file.pro │ │ │ │ │ └── wizard.json │ │ │ │ ├── qtforpythonapplication/ │ │ │ │ │ ├── empty/ │ │ │ │ │ │ └── wizard.json │ │ │ │ │ ├── main_empty.py │ │ │ │ │ ├── main_mainwindow.py │ │ │ │ │ ├── main_qtquick.py │ │ │ │ │ ├── main_widget.py │ │ │ │ │ ├── main_widget.ui │ │ │ │ │ ├── mainwindow/ │ │ │ │ │ │ └── wizard.json │ │ │ │ │ ├── pyproject.toml │ │ │ │ │ ├── qtquickapplication/ │ │ │ │ │ │ ├── main.qml.tpl │ │ │ │ │ │ ├── pyproject.toml │ │ │ │ │ │ ├── qmldir.tpl │ │ │ │ │ │ └── wizard.json │ │ │ │ │ ├── requirements.txt │ │ │ │ │ └── widget/ │ │ │ │ │ ├── pyproject.toml │ │ │ │ │ └── wizard.json │ │ │ │ ├── qtinterfaceframework/ │ │ │ │ │ ├── CMakeLists.txt.tpl │ │ │ │ │ ├── Main.qml.tpl │ │ │ │ │ ├── featureadapter.cpp.tpl │ │ │ │ │ ├── featureadapter.h.tpl │ │ │ │ │ ├── featurebackend.cpp.tpl │ │ │ │ │ ├── featurebackend.h.tpl │ │ │ │ │ ├── interfaces.qface.tpl │ │ │ │ │ ├── interfaces.yaml.tpl │ │ │ │ │ ├── main.cpp.tpl │ │ │ │ │ ├── moduleplugin.cpp.tpl │ │ │ │ │ ├── moduleplugin.h.tpl │ │ │ │ │ ├── moduleplugin.json.tpl │ │ │ │ │ ├── production_backend.cmake.tpl │ │ │ │ │ ├── production_server.cmake.tpl │ │ │ │ │ ├── servermain.cpp.tpl │ │ │ │ │ ├── servermain.h.tpl │ │ │ │ │ ├── simulation.qml.tpl │ │ │ │ │ ├── simulation_backend.cmake.tpl │ │ │ │ │ ├── simulation_server.cmake.tpl │ │ │ │ │ └── wizard.json │ │ │ │ ├── qtquick2-extension/ │ │ │ │ │ ├── CMakeLists.6.x.txt │ │ │ │ │ ├── example/ │ │ │ │ │ │ ├── example.cpp │ │ │ │ │ │ └── example.qml.tpl │ │ │ │ │ ├── object.cpp │ │ │ │ │ ├── object.h │ │ │ │ │ ├── object.qml.tpl │ │ │ │ │ ├── plugin.cpp │ │ │ │ │ ├── plugin.h │ │ │ │ │ ├── project.pro │ │ │ │ │ ├── qmldir │ │ │ │ │ └── wizard.json │ │ │ │ ├── qtquickapplication/ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Main.qml.tpl │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── qtquickcontrols2.conf │ │ │ │ │ └── wizard.json │ │ │ │ ├── qtquickapplication_compat/ │ │ │ │ │ ├── CMakeLists.6.x.txt │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── app.pro │ │ │ │ │ ├── app.qbs │ │ │ │ │ ├── empty/ │ │ │ │ │ │ ├── main.qml.tpl │ │ │ │ │ │ ├── qml.qrc │ │ │ │ │ │ └── wizard.json │ │ │ │ │ ├── main.cpp │ │ │ │ │ └── qtquickcontrols2.conf │ │ │ │ ├── qtquickuiprototype/ │ │ │ │ │ ├── app.qmlproject │ │ │ │ │ └── wizard.json │ │ │ │ ├── qtwidgetsapplication/ │ │ │ │ │ ├── CMakeLists-Qt6.txt │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── meson.build │ │ │ │ │ ├── project.pro │ │ │ │ │ ├── project.qbs │ │ │ │ │ ├── widget.cpp │ │ │ │ │ ├── widget.h │ │ │ │ │ ├── widget.ui │ │ │ │ │ └── wizard.json │ │ │ │ ├── translation.ts │ │ │ │ ├── vcs/ │ │ │ │ │ ├── bazaar/ │ │ │ │ │ │ └── wizard.json │ │ │ │ │ ├── cvs/ │ │ │ │ │ │ └── wizard.json │ │ │ │ │ ├── git/ │ │ │ │ │ │ └── wizard.json │ │ │ │ │ ├── mercurial/ │ │ │ │ │ │ └── wizard.json │ │ │ │ │ └── subversion/ │ │ │ │ │ └── wizard.json │ │ │ │ └── xrapplication/ │ │ │ │ ├── AndroidManifest.xml.tpl │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── MacOSXBundleInfo.plist.in │ │ │ │ ├── Main.qml.tpl │ │ │ │ ├── main.cpp │ │ │ │ ├── qtquickcontrols2.conf │ │ │ │ └── wizard.json │ │ │ └── qtcreatorplugin/ │ │ │ ├── CMakeLists.txt │ │ │ ├── MyPlugin.json.in │ │ │ ├── README.md │ │ │ ├── github_workflows_README.md │ │ │ ├── github_workflows_build_cmake.yml │ │ │ ├── myplugin.cpp │ │ │ ├── mypluginconstants.h │ │ │ ├── myplugintr.h │ │ │ └── wizard.json │ │ ├── themes/ │ │ │ ├── 2024.tokenmapping │ │ │ ├── dark-2024.creatortheme │ │ │ ├── dark.creatortheme │ │ │ ├── dark.figmatokens │ │ │ ├── default.creatortheme │ │ │ ├── ds.tokenmapping │ │ │ ├── flat-dark.creatortheme │ │ │ ├── flat-light.creatortheme │ │ │ ├── flat.creatortheme │ │ │ ├── light-2024.creatortheme │ │ │ ├── light-palette.inc │ │ │ ├── light.figmatokens │ │ │ ├── primitive-colors.inc │ │ │ ├── qmldesigner-dark.inc │ │ │ └── qmldesigner-light.inc │ │ └── translations/ │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── check-ts.pl │ │ ├── check-ts.xq │ │ ├── extract-customwizards.py │ │ ├── extract-customwizards.xq │ │ ├── extract-externaltools.py │ │ ├── extract-externaltools.xq │ │ ├── extract-jsonwizards.py │ │ ├── extract-snippets.py │ │ ├── extract-snippets.xq │ │ ├── lupdaterunner.qbs │ │ ├── qtcreator_cs.ts │ │ ├── qtcreator_da.ts │ │ ├── qtcreator_de.ts │ │ ├── qtcreator_en.ts │ │ ├── qtcreator_es.ts │ │ ├── qtcreator_fr.ts │ │ ├── qtcreator_hr.ts │ │ ├── qtcreator_hu.ts │ │ ├── qtcreator_it.ts │ │ ├── qtcreator_ja.ts │ │ ├── qtcreator_pl.ts │ │ ├── qtcreator_ru.ts │ │ ├── qtcreator_sl.ts │ │ ├── qtcreator_sv.ts │ │ ├── qtcreator_uk.ts │ │ ├── qtcreator_zh_CN.ts │ │ ├── qtcreator_zh_TW.ts │ │ └── translations.qbs │ └── share.qbs ├── src/ │ ├── CMakeLists.txt │ ├── app/ │ │ ├── CMakeLists.txt │ │ ├── app-Info.plist │ │ ├── app.qbs │ │ ├── app_logo.qrc │ │ ├── app_logo.qrc.cmakein │ │ ├── app_version.h.cmakein │ │ ├── app_version_header.qbs │ │ ├── images/ │ │ │ └── logo/ │ │ │ └── logo.qbs │ │ ├── macos/ │ │ │ ├── legacy/ │ │ │ │ ├── README.md │ │ │ │ └── qtcreator.icns │ │ │ └── qtcreator.icon/ │ │ │ └── icon.json │ │ ├── main.cpp │ │ ├── main_mac.mm │ │ └── winicons/ │ │ └── createicons.sh │ ├── libs/ │ │ ├── 3rdparty/ │ │ │ ├── CMakeLists.txt │ │ │ ├── cplusplus/ │ │ │ │ ├── AST.cpp │ │ │ │ ├── AST.h │ │ │ │ ├── ASTClone.cpp │ │ │ │ ├── ASTMatch0.cpp │ │ │ │ ├── ASTMatcher.cpp │ │ │ │ ├── ASTMatcher.h │ │ │ │ ├── ASTPatternBuilder.h │ │ │ │ ├── ASTVisit.cpp │ │ │ │ ├── ASTVisitor.cpp │ │ │ │ ├── ASTVisitor.h │ │ │ │ ├── ASTfwd.h │ │ │ │ ├── Bind.cpp │ │ │ │ ├── Bind.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CPlusPlus.h │ │ │ │ ├── CPlusPlusForwardDeclarations.h │ │ │ │ ├── Control.cpp │ │ │ │ ├── Control.h │ │ │ │ ├── CoreTypes.cpp │ │ │ │ ├── CoreTypes.h │ │ │ │ ├── DiagnosticClient.cpp │ │ │ │ ├── DiagnosticClient.h │ │ │ │ ├── FullySpecifiedType.cpp │ │ │ │ ├── FullySpecifiedType.h │ │ │ │ ├── Keywords.cpp │ │ │ │ ├── Keywords.kwgen │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── Lexer.cpp │ │ │ │ ├── Lexer.h │ │ │ │ ├── LiteralTable.h │ │ │ │ ├── Literals.cpp │ │ │ │ ├── Literals.h │ │ │ │ ├── Matcher.cpp │ │ │ │ ├── Matcher.h │ │ │ │ ├── MemoryPool.cpp │ │ │ │ ├── MemoryPool.h │ │ │ │ ├── Name.cpp │ │ │ │ ├── Name.h │ │ │ │ ├── NameVisitor.cpp │ │ │ │ ├── NameVisitor.h │ │ │ │ ├── Names.cpp │ │ │ │ ├── Names.h │ │ │ │ ├── ObjectiveCAtKeywords.cpp │ │ │ │ ├── ObjectiveCTypeQualifiers.cpp │ │ │ │ ├── ObjectiveCTypeQualifiers.h │ │ │ │ ├── Parser.cpp │ │ │ │ ├── Parser.h │ │ │ │ ├── QtContextKeywords.cpp │ │ │ │ ├── QtContextKeywords.h │ │ │ │ ├── SafeMatcher.cpp │ │ │ │ ├── SafeMatcher.h │ │ │ │ ├── Scope.cpp │ │ │ │ ├── Scope.h │ │ │ │ ├── Symbol.cpp │ │ │ │ ├── Symbol.h │ │ │ │ ├── SymbolVisitor.h │ │ │ │ ├── Symbols.cpp │ │ │ │ ├── Symbols.h │ │ │ │ ├── Templates.cpp │ │ │ │ ├── Templates.h │ │ │ │ ├── Token.cpp │ │ │ │ ├── Token.h │ │ │ │ ├── TranslationUnit.cpp │ │ │ │ ├── TranslationUnit.h │ │ │ │ ├── Type.cpp │ │ │ │ ├── Type.h │ │ │ │ ├── TypeVisitor.cpp │ │ │ │ ├── TypeVisitor.h │ │ │ │ └── cppassert.h │ │ │ ├── json/ │ │ │ │ ├── LICENSE.MIT │ │ │ │ └── json.hpp │ │ │ ├── libarchive/ │ │ │ │ ├── .editorconfig │ │ │ │ ├── CMakeLists.original.txt │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── COPYING │ │ │ │ ├── INSTALL │ │ │ │ ├── NEWS │ │ │ │ ├── README.md │ │ │ │ ├── SECURITY.md │ │ │ │ ├── build/ │ │ │ │ │ ├── cmake/ │ │ │ │ │ │ ├── CheckFileOffsetBits.c │ │ │ │ │ │ ├── CheckFileOffsetBits.cmake │ │ │ │ │ │ ├── CheckFuncs.cmake │ │ │ │ │ │ ├── CheckFuncs_stub.c.in │ │ │ │ │ │ ├── CheckHeaderDirent.cmake │ │ │ │ │ │ ├── CheckTypeExists.cmake │ │ │ │ │ │ ├── CreatePkgConfigFile.cmake │ │ │ │ │ │ ├── FindLIBGCC.cmake │ │ │ │ │ │ ├── FindMbedTLS.cmake │ │ │ │ │ │ ├── FindNettle.cmake │ │ │ │ │ │ ├── FindPCRE2POSIX.cmake │ │ │ │ │ │ ├── FindPCREPOSIX.cmake │ │ │ │ │ │ ├── LibarchiveCodeCoverage.cmake │ │ │ │ │ │ └── config.h.in │ │ │ │ │ ├── pkgconfig/ │ │ │ │ │ │ └── libarchive.pc.in │ │ │ │ │ └── version │ │ │ │ ├── config_mac.h │ │ │ │ ├── config_mingw.h │ │ │ │ ├── config_unix.h │ │ │ │ ├── config_win.h │ │ │ │ ├── configure.ac │ │ │ │ ├── configure_libarchive.cmake │ │ │ │ ├── libarchive/ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── archive.h │ │ │ │ │ ├── archive_acl.c │ │ │ │ │ ├── archive_acl_private.h │ │ │ │ │ ├── archive_blake2.h │ │ │ │ │ ├── archive_blake2_impl.h │ │ │ │ │ ├── archive_blake2s_ref.c │ │ │ │ │ ├── archive_blake2sp_ref.c │ │ │ │ │ ├── archive_check_magic.c │ │ │ │ │ ├── archive_cmdline.c │ │ │ │ │ ├── archive_cmdline_private.h │ │ │ │ │ ├── archive_crc32.h │ │ │ │ │ ├── archive_cryptor.c │ │ │ │ │ ├── archive_cryptor_private.h │ │ │ │ │ ├── archive_digest.c │ │ │ │ │ ├── archive_digest_private.h │ │ │ │ │ ├── archive_disk_acl_darwin.c │ │ │ │ │ ├── archive_disk_acl_freebsd.c │ │ │ │ │ ├── archive_disk_acl_linux.c │ │ │ │ │ ├── archive_disk_acl_sunos.c │ │ │ │ │ ├── archive_endian.h │ │ │ │ │ ├── archive_entry.3 │ │ │ │ │ ├── archive_entry.c │ │ │ │ │ ├── archive_entry.h │ │ │ │ │ ├── archive_entry_acl.3 │ │ │ │ │ ├── archive_entry_copy_bhfi.c │ │ │ │ │ ├── archive_entry_copy_stat.c │ │ │ │ │ ├── archive_entry_link_resolver.c │ │ │ │ │ ├── archive_entry_linkify.3 │ │ │ │ │ ├── archive_entry_locale.h │ │ │ │ │ ├── archive_entry_misc.3 │ │ │ │ │ ├── archive_entry_paths.3 │ │ │ │ │ ├── archive_entry_perms.3 │ │ │ │ │ ├── archive_entry_private.h │ │ │ │ │ ├── archive_entry_sparse.c │ │ │ │ │ ├── archive_entry_stat.3 │ │ │ │ │ ├── archive_entry_stat.c │ │ │ │ │ ├── archive_entry_strmode.c │ │ │ │ │ ├── archive_entry_time.3 │ │ │ │ │ ├── archive_entry_xattr.c │ │ │ │ │ ├── archive_hmac.c │ │ │ │ │ ├── archive_hmac_private.h │ │ │ │ │ ├── archive_match.c │ │ │ │ │ ├── archive_openssl_evp_private.h │ │ │ │ │ ├── archive_openssl_hmac_private.h │ │ │ │ │ ├── archive_options.c │ │ │ │ │ ├── archive_options_private.h │ │ │ │ │ ├── archive_pack_dev.c │ │ │ │ │ ├── archive_pack_dev.h │ │ │ │ │ ├── archive_parse_date.c │ │ │ │ │ ├── archive_pathmatch.c │ │ │ │ │ ├── archive_pathmatch.h │ │ │ │ │ ├── archive_platform.h │ │ │ │ │ ├── archive_platform_acl.h │ │ │ │ │ ├── archive_platform_stat.h │ │ │ │ │ ├── archive_platform_xattr.h │ │ │ │ │ ├── archive_ppmd7.c │ │ │ │ │ ├── archive_ppmd7_private.h │ │ │ │ │ ├── archive_ppmd8.c │ │ │ │ │ ├── archive_ppmd8_private.h │ │ │ │ │ ├── archive_ppmd_private.h │ │ │ │ │ ├── archive_private.h │ │ │ │ │ ├── archive_random.c │ │ │ │ │ ├── archive_random_private.h │ │ │ │ │ ├── archive_rb.c │ │ │ │ │ ├── archive_rb.h │ │ │ │ │ ├── archive_read.3 │ │ │ │ │ ├── archive_read.c │ │ │ │ │ ├── archive_read_add_passphrase.3 │ │ │ │ │ ├── archive_read_add_passphrase.c │ │ │ │ │ ├── archive_read_append_filter.c │ │ │ │ │ ├── archive_read_data.3 │ │ │ │ │ ├── archive_read_data_into_fd.c │ │ │ │ │ ├── archive_read_disk.3 │ │ │ │ │ ├── archive_read_disk_entry_from_file.c │ │ │ │ │ ├── archive_read_disk_posix.c │ │ │ │ │ ├── archive_read_disk_private.h │ │ │ │ │ ├── archive_read_disk_set_standard_lookup.c │ │ │ │ │ ├── archive_read_disk_windows.c │ │ │ │ │ ├── archive_read_extract.3 │ │ │ │ │ ├── archive_read_extract.c │ │ │ │ │ ├── archive_read_extract2.c │ │ │ │ │ ├── archive_read_filter.3 │ │ │ │ │ ├── archive_read_format.3 │ │ │ │ │ ├── archive_read_free.3 │ │ │ │ │ ├── archive_read_header.3 │ │ │ │ │ ├── archive_read_new.3 │ │ │ │ │ ├── archive_read_open.3 │ │ │ │ │ ├── archive_read_open_fd.c │ │ │ │ │ ├── archive_read_open_file.c │ │ │ │ │ ├── archive_read_open_filename.c │ │ │ │ │ ├── archive_read_open_memory.c │ │ │ │ │ ├── archive_read_private.h │ │ │ │ │ ├── archive_read_set_format.c │ │ │ │ │ ├── archive_read_set_options.3 │ │ │ │ │ ├── archive_read_set_options.c │ │ │ │ │ ├── archive_read_support_filter_all.c │ │ │ │ │ ├── archive_read_support_filter_by_code.c │ │ │ │ │ ├── archive_read_support_filter_bzip2.c │ │ │ │ │ ├── archive_read_support_filter_compress.c │ │ │ │ │ ├── archive_read_support_filter_grzip.c │ │ │ │ │ ├── archive_read_support_filter_gzip.c │ │ │ │ │ ├── archive_read_support_filter_lrzip.c │ │ │ │ │ ├── archive_read_support_filter_lz4.c │ │ │ │ │ ├── archive_read_support_filter_lzop.c │ │ │ │ │ ├── archive_read_support_filter_none.c │ │ │ │ │ ├── archive_read_support_filter_program.c │ │ │ │ │ ├── archive_read_support_filter_rpm.c │ │ │ │ │ ├── archive_read_support_filter_uu.c │ │ │ │ │ ├── archive_read_support_filter_xz.c │ │ │ │ │ ├── archive_read_support_filter_zstd.c │ │ │ │ │ ├── archive_read_support_format_7zip.c │ │ │ │ │ ├── archive_read_support_format_all.c │ │ │ │ │ ├── archive_read_support_format_ar.c │ │ │ │ │ ├── archive_read_support_format_by_code.c │ │ │ │ │ ├── archive_read_support_format_cab.c │ │ │ │ │ ├── archive_read_support_format_cpio.c │ │ │ │ │ ├── archive_read_support_format_empty.c │ │ │ │ │ ├── archive_read_support_format_iso9660.c │ │ │ │ │ ├── archive_read_support_format_lha.c │ │ │ │ │ ├── archive_read_support_format_mtree.c │ │ │ │ │ ├── archive_read_support_format_rar.c │ │ │ │ │ ├── archive_read_support_format_rar5.c │ │ │ │ │ ├── archive_read_support_format_raw.c │ │ │ │ │ ├── archive_read_support_format_tar.c │ │ │ │ │ ├── archive_read_support_format_warc.c │ │ │ │ │ ├── archive_read_support_format_zip.c │ │ │ │ │ ├── archive_string.c │ │ │ │ │ ├── archive_string.h │ │ │ │ │ ├── archive_string_composition.h │ │ │ │ │ ├── archive_string_sprintf.c │ │ │ │ │ ├── archive_time.c │ │ │ │ │ ├── archive_time_private.h │ │ │ │ │ ├── archive_util.3 │ │ │ │ │ ├── archive_util.c │ │ │ │ │ ├── archive_version_details.c │ │ │ │ │ ├── archive_virtual.c │ │ │ │ │ ├── archive_windows.c │ │ │ │ │ ├── archive_windows.h │ │ │ │ │ ├── archive_write.3 │ │ │ │ │ ├── archive_write.c │ │ │ │ │ ├── archive_write_add_filter.c │ │ │ │ │ ├── archive_write_add_filter_b64encode.c │ │ │ │ │ ├── archive_write_add_filter_by_name.c │ │ │ │ │ ├── archive_write_add_filter_bzip2.c │ │ │ │ │ ├── archive_write_add_filter_compress.c │ │ │ │ │ ├── archive_write_add_filter_grzip.c │ │ │ │ │ ├── archive_write_add_filter_gzip.c │ │ │ │ │ ├── archive_write_add_filter_lrzip.c │ │ │ │ │ ├── archive_write_add_filter_lz4.c │ │ │ │ │ ├── archive_write_add_filter_lzop.c │ │ │ │ │ ├── archive_write_add_filter_none.c │ │ │ │ │ ├── archive_write_add_filter_program.c │ │ │ │ │ ├── archive_write_add_filter_uuencode.c │ │ │ │ │ ├── archive_write_add_filter_xz.c │ │ │ │ │ ├── archive_write_add_filter_zstd.c │ │ │ │ │ ├── archive_write_blocksize.3 │ │ │ │ │ ├── archive_write_data.3 │ │ │ │ │ ├── archive_write_disk.3 │ │ │ │ │ ├── archive_write_disk_posix.c │ │ │ │ │ ├── archive_write_disk_private.h │ │ │ │ │ ├── archive_write_disk_set_standard_lookup.c │ │ │ │ │ ├── archive_write_disk_windows.c │ │ │ │ │ ├── archive_write_filter.3 │ │ │ │ │ ├── archive_write_finish_entry.3 │ │ │ │ │ ├── archive_write_format.3 │ │ │ │ │ ├── archive_write_free.3 │ │ │ │ │ ├── archive_write_header.3 │ │ │ │ │ ├── archive_write_new.3 │ │ │ │ │ ├── archive_write_open.3 │ │ │ │ │ ├── archive_write_open_fd.c │ │ │ │ │ ├── archive_write_open_file.c │ │ │ │ │ ├── archive_write_open_filename.c │ │ │ │ │ ├── archive_write_open_memory.c │ │ │ │ │ ├── archive_write_private.h │ │ │ │ │ ├── archive_write_set_format.c │ │ │ │ │ ├── archive_write_set_format_7zip.c │ │ │ │ │ ├── archive_write_set_format_ar.c │ │ │ │ │ ├── archive_write_set_format_by_name.c │ │ │ │ │ ├── archive_write_set_format_cpio.c │ │ │ │ │ ├── archive_write_set_format_cpio_binary.c │ │ │ │ │ ├── archive_write_set_format_cpio_newc.c │ │ │ │ │ ├── archive_write_set_format_cpio_odc.c │ │ │ │ │ ├── archive_write_set_format_filter_by_ext.c │ │ │ │ │ ├── archive_write_set_format_gnutar.c │ │ │ │ │ ├── archive_write_set_format_iso9660.c │ │ │ │ │ ├── archive_write_set_format_mtree.c │ │ │ │ │ ├── archive_write_set_format_pax.c │ │ │ │ │ ├── archive_write_set_format_private.h │ │ │ │ │ ├── archive_write_set_format_raw.c │ │ │ │ │ ├── archive_write_set_format_shar.c │ │ │ │ │ ├── archive_write_set_format_ustar.c │ │ │ │ │ ├── archive_write_set_format_v7tar.c │ │ │ │ │ ├── archive_write_set_format_warc.c │ │ │ │ │ ├── archive_write_set_format_zip.c │ │ │ │ │ ├── archive_write_set_options.3 │ │ │ │ │ ├── archive_write_set_options.c │ │ │ │ │ ├── archive_write_set_passphrase.3 │ │ │ │ │ ├── archive_write_set_passphrase.c │ │ │ │ │ ├── archive_xxhash.h │ │ │ │ │ ├── config_freebsd.h │ │ │ │ │ ├── cpio.5 │ │ │ │ │ ├── filter_fork.h │ │ │ │ │ ├── filter_fork_posix.c │ │ │ │ │ ├── filter_fork_windows.c │ │ │ │ │ ├── libarchive-formats.5 │ │ │ │ │ ├── libarchive.3 │ │ │ │ │ ├── libarchive_changes.3 │ │ │ │ │ ├── libarchive_internals.3 │ │ │ │ │ ├── module.modulemap │ │ │ │ │ ├── mtree.5 │ │ │ │ │ ├── tar.5 │ │ │ │ │ └── xxhash.c │ │ │ │ └── libarchive.qbs │ │ │ ├── libptyqt/ │ │ │ │ ├── .clang-format │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── LICENSE │ │ │ │ ├── LICENSE-CONPTY │ │ │ │ ├── conptyprocess.cpp │ │ │ │ ├── conptyprocess.h │ │ │ │ ├── iptyprocess.h │ │ │ │ ├── ptyqt.cpp │ │ │ │ ├── ptyqt.h │ │ │ │ ├── ptyqt.qbs │ │ │ │ ├── unixptyprocess.cpp │ │ │ │ ├── unixptyprocess.h │ │ │ │ ├── winptyprocess.cpp │ │ │ │ └── winptyprocess.h │ │ │ ├── libvterm/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CONTRIBUTING │ │ │ │ ├── LICENSE │ │ │ │ ├── include/ │ │ │ │ │ ├── vterm.h │ │ │ │ │ └── vterm_keycodes.h │ │ │ │ ├── src/ │ │ │ │ │ ├── encoding/ │ │ │ │ │ │ ├── DECdrawing.inc │ │ │ │ │ │ └── uk.inc │ │ │ │ │ ├── encoding.c │ │ │ │ │ ├── fullwidth.inc │ │ │ │ │ ├── keyboard.c │ │ │ │ │ ├── mouse.c │ │ │ │ │ ├── parser.c │ │ │ │ │ ├── pen.c │ │ │ │ │ ├── rect.h │ │ │ │ │ ├── screen.c │ │ │ │ │ ├── state.c │ │ │ │ │ ├── unicode.c │ │ │ │ │ ├── utf8.h │ │ │ │ │ ├── vterm.c │ │ │ │ │ └── vterm_internal.h │ │ │ │ ├── vterm.pc.in │ │ │ │ └── vterm.qbs │ │ │ ├── lua/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── LICENSE │ │ │ │ ├── README │ │ │ │ ├── doc/ │ │ │ │ │ ├── contents.html │ │ │ │ │ ├── index.css │ │ │ │ │ ├── lua.1 │ │ │ │ │ ├── lua.css │ │ │ │ │ ├── luac.1 │ │ │ │ │ ├── manual.css │ │ │ │ │ ├── manual.html │ │ │ │ │ └── readme.html │ │ │ │ ├── lua.qbs │ │ │ │ └── src/ │ │ │ │ ├── lapi.c │ │ │ │ ├── lapi.h │ │ │ │ ├── lauxlib.c │ │ │ │ ├── lauxlib.h │ │ │ │ ├── lbaselib.c │ │ │ │ ├── lcode.c │ │ │ │ ├── lcode.h │ │ │ │ ├── lcorolib.c │ │ │ │ ├── lctype.c │ │ │ │ ├── lctype.h │ │ │ │ ├── ldblib.c │ │ │ │ ├── ldebug.c │ │ │ │ ├── ldebug.h │ │ │ │ ├── ldo.c │ │ │ │ ├── ldo.h │ │ │ │ ├── ldump.c │ │ │ │ ├── lfunc.c │ │ │ │ ├── lfunc.h │ │ │ │ ├── lgc.c │ │ │ │ ├── lgc.h │ │ │ │ ├── linit.c │ │ │ │ ├── liolib.c │ │ │ │ ├── ljumptab.h │ │ │ │ ├── llex.c │ │ │ │ ├── llex.h │ │ │ │ ├── llimits.h │ │ │ │ ├── lmathlib.c │ │ │ │ ├── lmem.c │ │ │ │ ├── lmem.h │ │ │ │ ├── loadlib.c │ │ │ │ ├── lobject.c │ │ │ │ ├── lobject.h │ │ │ │ ├── lopcodes.c │ │ │ │ ├── lopcodes.h │ │ │ │ ├── lopnames.h │ │ │ │ ├── loslib.c │ │ │ │ ├── lparser.c │ │ │ │ ├── lparser.h │ │ │ │ ├── lprefix.h │ │ │ │ ├── lstate.c │ │ │ │ ├── lstate.h │ │ │ │ ├── lstring.c │ │ │ │ ├── lstring.h │ │ │ │ ├── lstrlib.c │ │ │ │ ├── ltable.c │ │ │ │ ├── ltable.h │ │ │ │ ├── ltablib.c │ │ │ │ ├── ltm.c │ │ │ │ ├── ltm.h │ │ │ │ ├── lua.c │ │ │ │ ├── lua.h │ │ │ │ ├── lua.hpp │ │ │ │ ├── luac.c │ │ │ │ ├── luaconf.h │ │ │ │ ├── lualib.h │ │ │ │ ├── lundump.c │ │ │ │ ├── lundump.h │ │ │ │ ├── lutf8lib.c │ │ │ │ ├── lvm.c │ │ │ │ ├── lvm.h │ │ │ │ ├── lzio.c │ │ │ │ └── lzio.h │ │ │ ├── qtkeychain/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CMakeLists.txt.upstream │ │ │ │ ├── COPYING │ │ │ │ ├── ChangeLog │ │ │ │ ├── QtKeychainConfig.cmake.in │ │ │ │ ├── ReadMe.md │ │ │ │ ├── TestAppExample/ │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── TestAppExample.pro │ │ │ │ │ ├── keychainclass.cpp │ │ │ │ │ ├── keychainclass.h │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── main.qml │ │ │ │ │ └── qml.qrc │ │ │ │ ├── appveyor.yml │ │ │ │ ├── appveyorHelp.psm1 │ │ │ │ ├── autotest/ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── basic.cpp │ │ │ │ ├── cmake/ │ │ │ │ │ └── Modules/ │ │ │ │ │ ├── ECMAddTests.cmake │ │ │ │ │ ├── ECMGeneratePriFile.cmake │ │ │ │ │ ├── ECMMarkAsTest.cmake │ │ │ │ │ ├── ECMMarkNonGuiExecutable.cmake │ │ │ │ │ ├── ECMPackageConfigHelpers.cmake │ │ │ │ │ ├── ECMQueryQt.cmake │ │ │ │ │ ├── ECMSetupVersion.cmake │ │ │ │ │ └── QtVersionOption.cmake │ │ │ │ ├── qtkeychain/ │ │ │ │ │ ├── CMakeLists.txt.upstream │ │ │ │ │ ├── androidkeystore.cpp │ │ │ │ │ ├── androidkeystore_p.h │ │ │ │ │ ├── keychain.cpp │ │ │ │ │ ├── keychain.h │ │ │ │ │ ├── keychain_android.cpp │ │ │ │ │ ├── keychain_apple.mm │ │ │ │ │ ├── keychain_haiku.cpp │ │ │ │ │ ├── keychain_p.h │ │ │ │ │ ├── keychain_unix.cpp │ │ │ │ │ ├── keychain_win.cpp │ │ │ │ │ ├── libsecret.cpp │ │ │ │ │ ├── libsecret_p.h │ │ │ │ │ ├── org.kde.KWallet.xml │ │ │ │ │ ├── plaintextstore.cpp │ │ │ │ │ ├── plaintextstore_p.h │ │ │ │ │ └── qkeychain_export.h │ │ │ │ ├── qtkeychain.pri │ │ │ │ ├── qtkeychain.qbs │ │ │ │ ├── testclient.cpp │ │ │ │ └── translations/ │ │ │ │ ├── qtkeychain_de.ts │ │ │ │ ├── qtkeychain_fr.ts │ │ │ │ ├── qtkeychain_nl.ts │ │ │ │ ├── qtkeychain_ro.ts │ │ │ │ ├── qtkeychain_ru.ts │ │ │ │ ├── qtkeychain_zh.ts │ │ │ │ └── translations.qrc.in │ │ │ ├── sol2/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── include/ │ │ │ │ │ └── sol/ │ │ │ │ │ ├── config.hpp │ │ │ │ │ ├── forward.hpp │ │ │ │ │ └── sol.hpp │ │ │ │ └── sol2.qbs │ │ │ ├── span/ │ │ │ │ ├── LICENSE_1_0.txt │ │ │ │ ├── README.md │ │ │ │ └── span.hpp │ │ │ ├── sqlite/ │ │ │ │ ├── carray.c │ │ │ │ ├── config.h │ │ │ │ ├── sqlite.h │ │ │ │ ├── sqlite3.c │ │ │ │ ├── sqlite3.h │ │ │ │ ├── sqlite3ext.h │ │ │ │ └── sqlite_static_config.h │ │ │ ├── syntax-highlighting/ │ │ │ │ ├── .arcconfig │ │ │ │ ├── .git-blame-ignore-revs │ │ │ │ ├── .gitignore │ │ │ │ ├── .gitlab-ci.yml │ │ │ │ ├── .kateconfig │ │ │ │ ├── .kde-ci.yml │ │ │ │ ├── .krazy │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CMakeLists.txt.kde │ │ │ │ ├── COPYING │ │ │ │ ├── KF5SyntaxHighlightingConfig.cmake.in │ │ │ │ ├── README.md │ │ │ │ ├── autogenerated/ │ │ │ │ │ ├── include/ │ │ │ │ │ │ └── KSyntaxHighlighting/ │ │ │ │ │ │ ├── AbstractHighlighter │ │ │ │ │ │ ├── Definition │ │ │ │ │ │ ├── DefinitionDownloader │ │ │ │ │ │ ├── FoldingRegion │ │ │ │ │ │ ├── Format │ │ │ │ │ │ ├── Repository │ │ │ │ │ │ ├── State │ │ │ │ │ │ ├── SyntaxHighlighter │ │ │ │ │ │ ├── Theme │ │ │ │ │ │ └── WildcardMatcher │ │ │ │ │ ├── ksyntaxhighlighting_version.h │ │ │ │ │ └── src/ │ │ │ │ │ └── lib/ │ │ │ │ │ ├── ksyntaxhighlighting_export.h │ │ │ │ │ ├── ksyntaxhighlighting_logging.cpp │ │ │ │ │ └── ksyntaxhighlighting_logging.h │ │ │ │ ├── data/ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── generators/ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── Pipfile │ │ │ │ │ │ ├── cmake.xml.tpl │ │ │ │ │ │ ├── cmake.yaml │ │ │ │ │ │ ├── generate-cmake-syntax.py │ │ │ │ │ │ ├── generate-doxygenlua.pl │ │ │ │ │ │ ├── generate-html.pl │ │ │ │ │ │ ├── generate-jsonc.pl │ │ │ │ │ │ ├── generate-nginx-lists.rb │ │ │ │ │ │ ├── generate-spdx-syntax.py │ │ │ │ │ │ ├── generate-xslt.pl │ │ │ │ │ │ ├── generate_jinja.py │ │ │ │ │ │ ├── get-Qt-classes.sh │ │ │ │ │ │ ├── get-Qt-macros.sh │ │ │ │ │ │ ├── nsis-gen.py │ │ │ │ │ │ ├── qmake-gen.py │ │ │ │ │ │ ├── spdx-comments.xml.tpl │ │ │ │ │ │ ├── update_css_and_scss.py │ │ │ │ │ │ ├── update_less.py │ │ │ │ │ │ └── xslt.base.xml │ │ │ │ │ ├── schema/ │ │ │ │ │ │ ├── language.xsd │ │ │ │ │ │ └── validatehl.sh │ │ │ │ │ ├── syntax/ │ │ │ │ │ │ ├── alert.xml │ │ │ │ │ │ ├── autoconf.xml │ │ │ │ │ │ ├── bash.xml │ │ │ │ │ │ ├── cmake.xml │ │ │ │ │ │ ├── comments.xml │ │ │ │ │ │ ├── css.xml │ │ │ │ │ │ ├── doxygen.xml │ │ │ │ │ │ ├── dtd.xml │ │ │ │ │ │ ├── gnuassembler.xml │ │ │ │ │ │ ├── html.xml │ │ │ │ │ │ ├── ini.xml │ │ │ │ │ │ ├── java.xml │ │ │ │ │ │ ├── javadoc.xml │ │ │ │ │ │ ├── jinja-alert.xml │ │ │ │ │ │ ├── jinja-cmake.xml │ │ │ │ │ │ ├── jinja-comments.xml │ │ │ │ │ │ ├── jinja-cpp.xml │ │ │ │ │ │ ├── jinja-css.xml │ │ │ │ │ │ ├── jinja-doxygen.xml │ │ │ │ │ │ ├── jinja-gcc.xml │ │ │ │ │ │ ├── jinja-html.xml │ │ │ │ │ │ ├── jinja-isocpp.xml │ │ │ │ │ │ ├── jinja-java.xml │ │ │ │ │ │ ├── jinja-javadoc.xml │ │ │ │ │ │ ├── jinja-javascript-react.xml │ │ │ │ │ │ ├── jinja-javascript.xml │ │ │ │ │ │ ├── jinja-json.xml │ │ │ │ │ │ ├── jinja-modelines.xml │ │ │ │ │ │ ├── jinja-mustache.xml │ │ │ │ │ │ ├── jinja-qmake.xml │ │ │ │ │ │ ├── jinja-qml.xml │ │ │ │ │ │ ├── jinja-rest.xml │ │ │ │ │ │ ├── jinja-spdx-comments.xml │ │ │ │ │ │ ├── jinja-typescript.xml │ │ │ │ │ │ ├── jinja.xml │ │ │ │ │ │ ├── json.xml │ │ │ │ │ │ ├── licenses/ │ │ │ │ │ │ │ ├── LICENSE.GPLv2 │ │ │ │ │ │ │ ├── LICENSE.GPLv3 │ │ │ │ │ │ │ ├── LICENSE.LGPLv21 │ │ │ │ │ │ │ └── LICENSE.LGPLv3 │ │ │ │ │ │ ├── markdown.xml │ │ │ │ │ │ ├── modelines.xml │ │ │ │ │ │ ├── perl.xml │ │ │ │ │ │ ├── powershell.xml │ │ │ │ │ │ ├── qdocconf.xml │ │ │ │ │ │ ├── qface.xml │ │ │ │ │ │ ├── ruby.xml │ │ │ │ │ │ ├── spdx-comments.xml │ │ │ │ │ │ ├── toml.xml │ │ │ │ │ │ ├── valgrind-suppression.xml │ │ │ │ │ │ ├── xml.xml │ │ │ │ │ │ ├── yacc.xml │ │ │ │ │ │ └── yaml.xml │ │ │ │ │ ├── syntax-data.qrc.in │ │ │ │ │ └── themes/ │ │ │ │ │ ├── atom-one-dark.theme │ │ │ │ │ ├── atom-one-light.theme │ │ │ │ │ ├── ayu-dark.theme │ │ │ │ │ ├── ayu-light.theme │ │ │ │ │ ├── ayu-mirage.theme │ │ │ │ │ ├── breeze-dark.theme │ │ │ │ │ ├── breeze-light.theme │ │ │ │ │ ├── catppuccin-frappe.theme │ │ │ │ │ ├── catppuccin-latte.theme │ │ │ │ │ ├── catppuccin-macchiato.theme │ │ │ │ │ ├── catppuccin-mocha.theme │ │ │ │ │ ├── dracula.theme │ │ │ │ │ ├── falcon.theme │ │ │ │ │ ├── github-dark.theme │ │ │ │ │ ├── github-light.theme │ │ │ │ │ ├── gruvbox-dark.theme │ │ │ │ │ ├── gruvbox-light.theme │ │ │ │ │ ├── homunculus.theme │ │ │ │ │ ├── monokai.theme │ │ │ │ │ ├── nord.theme │ │ │ │ │ ├── oblivion.theme │ │ │ │ │ ├── printing.theme │ │ │ │ │ ├── radical.theme │ │ │ │ │ ├── solarized-dark.theme │ │ │ │ │ ├── solarized-light.theme │ │ │ │ │ ├── theme-data.qrc │ │ │ │ │ ├── tokyo-night-light.theme │ │ │ │ │ ├── tokyo-night-storm.theme │ │ │ │ │ ├── tokyo-night.theme │ │ │ │ │ ├── vim-dark.theme │ │ │ │ │ └── vscodium-dark.theme │ │ │ │ ├── metainfo.yaml │ │ │ │ ├── org_kde_ksyntaxhighlighting.categories │ │ │ │ ├── src/ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Messages.sh │ │ │ │ │ ├── cli/ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── ksyntaxhighlighter.cpp │ │ │ │ │ ├── indexer/ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── katehighlightingindexer.cpp │ │ │ │ │ ├── lib/ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── abstracthighlighter.cpp │ │ │ │ │ │ ├── abstracthighlighter.h │ │ │ │ │ │ ├── abstracthighlighter_p.h │ │ │ │ │ │ ├── ansihighlighter.cpp │ │ │ │ │ │ ├── ansihighlighter.h │ │ │ │ │ │ ├── context.cpp │ │ │ │ │ │ ├── context_p.h │ │ │ │ │ │ ├── contextswitch.cpp │ │ │ │ │ │ ├── contextswitch_p.h │ │ │ │ │ │ ├── definition.cpp │ │ │ │ │ │ ├── definition.h │ │ │ │ │ │ ├── definition_p.h │ │ │ │ │ │ ├── definitiondownloader.cpp │ │ │ │ │ │ ├── definitiondownloader.h │ │ │ │ │ │ ├── dynamicregexpcache_p.h │ │ │ │ │ │ ├── foldingregion.cpp │ │ │ │ │ │ ├── foldingregion.h │ │ │ │ │ │ ├── format.cpp │ │ │ │ │ │ ├── format.h │ │ │ │ │ │ ├── format_p.h │ │ │ │ │ │ ├── highlightingdata.cpp │ │ │ │ │ │ ├── highlightingdata_p.hpp │ │ │ │ │ │ ├── htmlhighlighter.cpp │ │ │ │ │ │ ├── htmlhighlighter.h │ │ │ │ │ │ ├── keywordlist.cpp │ │ │ │ │ │ ├── keywordlist_p.h │ │ │ │ │ │ ├── ksyntaxhighlighting-index.qdoc │ │ │ │ │ │ ├── ksyntaxhighlighting.qdoc │ │ │ │ │ │ ├── ksyntaxhighlighting.qdocconf │ │ │ │ │ │ ├── matchresult_p.h │ │ │ │ │ │ ├── repository.cpp │ │ │ │ │ │ ├── repository.h │ │ │ │ │ │ ├── repository_p.h │ │ │ │ │ │ ├── rule.cpp │ │ │ │ │ │ ├── rule_p.h │ │ │ │ │ │ ├── state.cpp │ │ │ │ │ │ ├── state.h │ │ │ │ │ │ ├── state_p.h │ │ │ │ │ │ ├── syntaxhighlighter.cpp │ │ │ │ │ │ ├── syntaxhighlighter.h │ │ │ │ │ │ ├── textstyledata_p.h │ │ │ │ │ │ ├── theme.cpp │ │ │ │ │ │ ├── theme.h │ │ │ │ │ │ ├── themedata.cpp │ │ │ │ │ │ ├── themedata_p.h │ │ │ │ │ │ ├── wildcardmatcher.cpp │ │ │ │ │ │ ├── wildcardmatcher.h │ │ │ │ │ │ ├── worddelimiters.cpp │ │ │ │ │ │ ├── worddelimiters_p.h │ │ │ │ │ │ └── xml_p.h │ │ │ │ │ └── quick/ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── kquicksyntaxhighlighter.cpp │ │ │ │ │ ├── kquicksyntaxhighlighter.h │ │ │ │ │ ├── kquicksyntaxhighlightingplugin.cpp │ │ │ │ │ ├── kquicksyntaxhighlightingplugin.h │ │ │ │ │ ├── ksyntaxhighlightingqml.qdoc │ │ │ │ │ ├── ksyntaxhighlightingqml.qdocconf │ │ │ │ │ ├── types.cpp │ │ │ │ │ └── types.h │ │ │ │ └── syntax-highlighting.qbs │ │ │ ├── tika/ │ │ │ │ └── tika-mimetypes.xml │ │ │ ├── tl_expected/ │ │ │ │ ├── COPYING │ │ │ │ ├── README.md │ │ │ │ └── include/ │ │ │ │ └── tl/ │ │ │ │ └── expected.hpp │ │ │ ├── toml11/ │ │ │ │ ├── LICENSE │ │ │ │ └── toml.hpp │ │ │ ├── ui_watchdog/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── LICENSES/ │ │ │ │ │ └── MIT.txt │ │ │ │ ├── README.md │ │ │ │ ├── example/ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── main.cpp │ │ │ │ ├── uiwatchdog.h │ │ │ │ └── uiwatchdog.qbs │ │ │ ├── winpty/ │ │ │ │ ├── .gitattributes │ │ │ │ ├── .gitignore │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── RELEASES.md │ │ │ │ ├── VERSION.txt │ │ │ │ ├── appveyor.yml │ │ │ │ ├── configure │ │ │ │ ├── misc/ │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── BufferResizeTests.cc │ │ │ │ │ ├── ChangeScreenBuffer.cc │ │ │ │ │ ├── ClearConsole.cc │ │ │ │ │ ├── ConinMode.cc │ │ │ │ │ ├── ConinMode.ps1 │ │ │ │ │ ├── ConoutMode.cc │ │ │ │ │ ├── DebugClient.py │ │ │ │ │ ├── DebugServer.py │ │ │ │ │ ├── DumpLines.py │ │ │ │ │ ├── EnableExtendedFlags.txt │ │ │ │ │ ├── Font-Report-June2016/ │ │ │ │ │ │ ├── CP437-Consolas.txt │ │ │ │ │ │ ├── CP437-Lucida.txt │ │ │ │ │ │ ├── CP932.txt │ │ │ │ │ │ ├── CP936.txt │ │ │ │ │ │ ├── CP949.txt │ │ │ │ │ │ ├── CP950.txt │ │ │ │ │ │ ├── MinimumWindowWidths.txt │ │ │ │ │ │ ├── Results.txt │ │ │ │ │ │ └── Windows10SetFontBugginess.txt │ │ │ │ │ ├── FontSurvey.cc │ │ │ │ │ ├── FormatChar.h │ │ │ │ │ ├── FreezePerfTest.cc │ │ │ │ │ ├── GetCh.cc │ │ │ │ │ ├── GetConsolePos.cc │ │ │ │ │ ├── GetFont.cc │ │ │ │ │ ├── IdentifyConsoleWindow.ps1 │ │ │ │ │ ├── IsNewConsole.cc │ │ │ │ │ ├── MouseInputNotes.txt │ │ │ │ │ ├── MoveConsoleWindow.cc │ │ │ │ │ ├── Notes.txt │ │ │ │ │ ├── OSVersion.cc │ │ │ │ │ ├── ScreenBufferFreezeInactive.cc │ │ │ │ │ ├── ScreenBufferTest.cc │ │ │ │ │ ├── ScreenBufferTest2.cc │ │ │ │ │ ├── SelectAllTest.cc │ │ │ │ │ ├── SetBufInfo.cc │ │ │ │ │ ├── SetBufferSize.cc │ │ │ │ │ ├── SetCursorPos.cc │ │ │ │ │ ├── SetFont.cc │ │ │ │ │ ├── SetWindowRect.cc │ │ │ │ │ ├── ShowArgv.cc │ │ │ │ │ ├── ShowConsoleInput.cc │ │ │ │ │ ├── Spew.py │ │ │ │ │ ├── TestUtil.cc │ │ │ │ │ ├── UnicodeDoubleWidthTest.cc │ │ │ │ │ ├── UnicodeWideTest1.cc │ │ │ │ │ ├── UnicodeWideTest2.cc │ │ │ │ │ ├── UnixEcho.cc │ │ │ │ │ ├── Utf16Echo.cc │ │ │ │ │ ├── VeryLargeRead.cc │ │ │ │ │ ├── VkEscapeTest.cc │ │ │ │ │ ├── Win10ResizeWhileFrozen.cc │ │ │ │ │ ├── Win10WrapTest1.cc │ │ │ │ │ ├── Win10WrapTest2.cc │ │ │ │ │ ├── Win32Echo1.cc │ │ │ │ │ ├── Win32Echo2.cc │ │ │ │ │ ├── Win32Test1.cc │ │ │ │ │ ├── Win32Test2.cc │ │ │ │ │ ├── Win32Test3.cc │ │ │ │ │ ├── Win32Write1.cc │ │ │ │ │ ├── WindowsBugCrashReader.cc │ │ │ │ │ ├── WriteConsole.cc │ │ │ │ │ ├── build32.sh │ │ │ │ │ ├── build64.sh │ │ │ │ │ ├── color-test.sh │ │ │ │ │ ├── font-notes.txt │ │ │ │ │ └── winbug-15048.cc │ │ │ │ ├── ship/ │ │ │ │ │ ├── build-pty4j-libpty.bat │ │ │ │ │ ├── common_ship.py │ │ │ │ │ ├── make_msvc_package.py │ │ │ │ │ └── ship.py │ │ │ │ ├── src/ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── agent/ │ │ │ │ │ │ ├── Agent.cc │ │ │ │ │ │ ├── Agent.h │ │ │ │ │ │ ├── AgentCreateDesktop.cc │ │ │ │ │ │ ├── AgentCreateDesktop.h │ │ │ │ │ │ ├── ConsoleFont.cc │ │ │ │ │ │ ├── ConsoleFont.h │ │ │ │ │ │ ├── ConsoleInput.cc │ │ │ │ │ │ ├── ConsoleInput.h │ │ │ │ │ │ ├── ConsoleInputReencoding.cc │ │ │ │ │ │ ├── ConsoleInputReencoding.h │ │ │ │ │ │ ├── ConsoleLine.cc │ │ │ │ │ │ ├── ConsoleLine.h │ │ │ │ │ │ ├── Coord.h │ │ │ │ │ │ ├── DebugShowInput.cc │ │ │ │ │ │ ├── DebugShowInput.h │ │ │ │ │ │ ├── DefaultInputMap.cc │ │ │ │ │ │ ├── DefaultInputMap.h │ │ │ │ │ │ ├── DsrSender.h │ │ │ │ │ │ ├── EventLoop.cc │ │ │ │ │ │ ├── EventLoop.h │ │ │ │ │ │ ├── InputMap.cc │ │ │ │ │ │ ├── InputMap.h │ │ │ │ │ │ ├── LargeConsoleRead.cc │ │ │ │ │ │ ├── LargeConsoleRead.h │ │ │ │ │ │ ├── NamedPipe.cc │ │ │ │ │ │ ├── NamedPipe.h │ │ │ │ │ │ ├── Scraper.cc │ │ │ │ │ │ ├── Scraper.h │ │ │ │ │ │ ├── SimplePool.h │ │ │ │ │ │ ├── SmallRect.h │ │ │ │ │ │ ├── Terminal.cc │ │ │ │ │ │ ├── Terminal.h │ │ │ │ │ │ ├── UnicodeEncoding.h │ │ │ │ │ │ ├── UnicodeEncodingTest.cc │ │ │ │ │ │ ├── Win32Console.cc │ │ │ │ │ │ ├── Win32Console.h │ │ │ │ │ │ ├── Win32ConsoleBuffer.cc │ │ │ │ │ │ ├── Win32ConsoleBuffer.h │ │ │ │ │ │ ├── main.cc │ │ │ │ │ │ └── subdir.mk │ │ │ │ │ ├── configurations.gypi │ │ │ │ │ ├── debugserver/ │ │ │ │ │ │ ├── DebugServer.cc │ │ │ │ │ │ └── subdir.mk │ │ │ │ │ ├── include/ │ │ │ │ │ │ ├── winpty.h │ │ │ │ │ │ └── winpty_constants.h │ │ │ │ │ ├── libwinpty/ │ │ │ │ │ │ ├── AgentLocation.cc │ │ │ │ │ │ ├── AgentLocation.h │ │ │ │ │ │ ├── LibWinptyException.h │ │ │ │ │ │ ├── WinptyInternal.h │ │ │ │ │ │ ├── subdir.mk │ │ │ │ │ │ └── winpty.cc │ │ │ │ │ ├── shared/ │ │ │ │ │ │ ├── AgentMsg.h │ │ │ │ │ │ ├── BackgroundDesktop.cc │ │ │ │ │ │ ├── BackgroundDesktop.h │ │ │ │ │ │ ├── Buffer.cc │ │ │ │ │ │ ├── Buffer.h │ │ │ │ │ │ ├── DebugClient.cc │ │ │ │ │ │ ├── DebugClient.h │ │ │ │ │ │ ├── GenRandom.cc │ │ │ │ │ │ ├── GenRandom.h │ │ │ │ │ │ ├── GetCommitHash.bat │ │ │ │ │ │ ├── Mutex.h │ │ │ │ │ │ ├── OsModule.h │ │ │ │ │ │ ├── OwnedHandle.cc │ │ │ │ │ │ ├── OwnedHandle.h │ │ │ │ │ │ ├── PrecompiledHeader.h │ │ │ │ │ │ ├── StringBuilder.h │ │ │ │ │ │ ├── StringBuilderTest.cc │ │ │ │ │ │ ├── StringUtil.cc │ │ │ │ │ │ ├── StringUtil.h │ │ │ │ │ │ ├── TimeMeasurement.h │ │ │ │ │ │ ├── UnixCtrlChars.h │ │ │ │ │ │ ├── UpdateGenVersion.bat │ │ │ │ │ │ ├── WindowsSecurity.cc │ │ │ │ │ │ ├── WindowsSecurity.h │ │ │ │ │ │ ├── WindowsVersion.cc │ │ │ │ │ │ ├── WindowsVersion.h │ │ │ │ │ │ ├── WinptyAssert.cc │ │ │ │ │ │ ├── WinptyAssert.h │ │ │ │ │ │ ├── WinptyException.cc │ │ │ │ │ │ ├── WinptyException.h │ │ │ │ │ │ ├── WinptyVersion.cc │ │ │ │ │ │ ├── WinptyVersion.h │ │ │ │ │ │ └── winpty_snprintf.h │ │ │ │ │ ├── subdir.mk │ │ │ │ │ ├── tests/ │ │ │ │ │ │ ├── subdir.mk │ │ │ │ │ │ └── trivial_test.cc │ │ │ │ │ ├── unix-adapter/ │ │ │ │ │ │ ├── InputHandler.cc │ │ │ │ │ │ ├── InputHandler.h │ │ │ │ │ │ ├── OutputHandler.cc │ │ │ │ │ │ ├── OutputHandler.h │ │ │ │ │ │ ├── Util.cc │ │ │ │ │ │ ├── Util.h │ │ │ │ │ │ ├── WakeupFd.cc │ │ │ │ │ │ ├── WakeupFd.h │ │ │ │ │ │ ├── main.cc │ │ │ │ │ │ └── subdir.mk │ │ │ │ │ └── winpty.gyp │ │ │ │ ├── vcbuild.bat │ │ │ │ └── winpty.qbs │ │ │ ├── xz/ │ │ │ │ ├── AUTHORS │ │ │ │ ├── CMakeLists.original.txt │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── COPYING │ │ │ │ ├── COPYING.0BSD │ │ │ │ ├── COPYING.GPLv2 │ │ │ │ ├── COPYING.GPLv3 │ │ │ │ ├── COPYING.LGPLv2.1 │ │ │ │ ├── ChangeLog │ │ │ │ ├── INSTALL │ │ │ │ ├── INSTALL.generic │ │ │ │ ├── NEWS │ │ │ │ ├── PACKAGERS │ │ │ │ ├── README │ │ │ │ ├── README.qtcreator │ │ │ │ ├── THANKS │ │ │ │ ├── TODO │ │ │ │ ├── src/ │ │ │ │ │ ├── common/ │ │ │ │ │ │ ├── my_landlock.h │ │ │ │ │ │ ├── mythread.h │ │ │ │ │ │ ├── sysdefs.h │ │ │ │ │ │ ├── tuklib_common.h │ │ │ │ │ │ ├── tuklib_config.h │ │ │ │ │ │ ├── tuklib_cpucores.c │ │ │ │ │ │ ├── tuklib_cpucores.h │ │ │ │ │ │ ├── tuklib_exit.c │ │ │ │ │ │ ├── tuklib_exit.h │ │ │ │ │ │ ├── tuklib_gettext.h │ │ │ │ │ │ ├── tuklib_integer.h │ │ │ │ │ │ ├── tuklib_mbstr.h │ │ │ │ │ │ ├── tuklib_mbstr_fw.c │ │ │ │ │ │ ├── tuklib_mbstr_nonprint.c │ │ │ │ │ │ ├── tuklib_mbstr_nonprint.h │ │ │ │ │ │ ├── tuklib_mbstr_width.c │ │ │ │ │ │ ├── tuklib_mbstr_wrap.c │ │ │ │ │ │ ├── tuklib_mbstr_wrap.h │ │ │ │ │ │ ├── tuklib_open_stdxxx.c │ │ │ │ │ │ ├── tuklib_open_stdxxx.h │ │ │ │ │ │ ├── tuklib_physmem.c │ │ │ │ │ │ ├── tuklib_physmem.h │ │ │ │ │ │ ├── tuklib_progname.c │ │ │ │ │ │ ├── tuklib_progname.h │ │ │ │ │ │ ├── w32_application.manifest │ │ │ │ │ │ └── w32_application.manifest.comments.txt │ │ │ │ │ └── liblzma/ │ │ │ │ │ ├── api/ │ │ │ │ │ │ ├── lzma/ │ │ │ │ │ │ │ ├── base.h │ │ │ │ │ │ │ ├── bcj.h │ │ │ │ │ │ │ ├── block.h │ │ │ │ │ │ │ ├── check.h │ │ │ │ │ │ │ ├── container.h │ │ │ │ │ │ │ ├── delta.h │ │ │ │ │ │ │ ├── filter.h │ │ │ │ │ │ │ ├── hardware.h │ │ │ │ │ │ │ ├── index.h │ │ │ │ │ │ │ ├── index_hash.h │ │ │ │ │ │ │ ├── lzma12.h │ │ │ │ │ │ │ ├── stream_flags.h │ │ │ │ │ │ │ ├── version.h │ │ │ │ │ │ │ └── vli.h │ │ │ │ │ │ └── lzma.h │ │ │ │ │ ├── check/ │ │ │ │ │ │ ├── check.c │ │ │ │ │ │ ├── check.h │ │ │ │ │ │ ├── crc32_arm64.h │ │ │ │ │ │ ├── crc32_fast.c │ │ │ │ │ │ ├── crc32_loongarch.h │ │ │ │ │ │ ├── crc32_small.c │ │ │ │ │ │ ├── crc32_table_be.h │ │ │ │ │ │ ├── crc32_table_le.h │ │ │ │ │ │ ├── crc32_tablegen.c │ │ │ │ │ │ ├── crc32_x86.S │ │ │ │ │ │ ├── crc64_fast.c │ │ │ │ │ │ ├── crc64_small.c │ │ │ │ │ │ ├── crc64_table_be.h │ │ │ │ │ │ ├── crc64_table_le.h │ │ │ │ │ │ ├── crc64_tablegen.c │ │ │ │ │ │ ├── crc64_x86.S │ │ │ │ │ │ ├── crc_clmul_consts_gen.c │ │ │ │ │ │ ├── crc_common.h │ │ │ │ │ │ ├── crc_x86_clmul.h │ │ │ │ │ │ └── sha256.c │ │ │ │ │ ├── common/ │ │ │ │ │ │ ├── alone_decoder.c │ │ │ │ │ │ ├── alone_decoder.h │ │ │ │ │ │ ├── alone_encoder.c │ │ │ │ │ │ ├── auto_decoder.c │ │ │ │ │ │ ├── block_buffer_decoder.c │ │ │ │ │ │ ├── block_buffer_encoder.c │ │ │ │ │ │ ├── block_buffer_encoder.h │ │ │ │ │ │ ├── block_decoder.c │ │ │ │ │ │ ├── block_decoder.h │ │ │ │ │ │ ├── block_encoder.c │ │ │ │ │ │ ├── block_encoder.h │ │ │ │ │ │ ├── block_header_decoder.c │ │ │ │ │ │ ├── block_header_encoder.c │ │ │ │ │ │ ├── block_util.c │ │ │ │ │ │ ├── common.c │ │ │ │ │ │ ├── common.h │ │ │ │ │ │ ├── easy_buffer_encoder.c │ │ │ │ │ │ ├── easy_decoder_memusage.c │ │ │ │ │ │ ├── easy_encoder.c │ │ │ │ │ │ ├── easy_encoder_memusage.c │ │ │ │ │ │ ├── easy_preset.c │ │ │ │ │ │ ├── easy_preset.h │ │ │ │ │ │ ├── file_info.c │ │ │ │ │ │ ├── filter_buffer_decoder.c │ │ │ │ │ │ ├── filter_buffer_encoder.c │ │ │ │ │ │ ├── filter_common.c │ │ │ │ │ │ ├── filter_common.h │ │ │ │ │ │ ├── filter_decoder.c │ │ │ │ │ │ ├── filter_decoder.h │ │ │ │ │ │ ├── filter_encoder.c │ │ │ │ │ │ ├── filter_encoder.h │ │ │ │ │ │ ├── filter_flags_decoder.c │ │ │ │ │ │ ├── filter_flags_encoder.c │ │ │ │ │ │ ├── hardware_cputhreads.c │ │ │ │ │ │ ├── hardware_physmem.c │ │ │ │ │ │ ├── index.c │ │ │ │ │ │ ├── index.h │ │ │ │ │ │ ├── index_decoder.c │ │ │ │ │ │ ├── index_decoder.h │ │ │ │ │ │ ├── index_encoder.c │ │ │ │ │ │ ├── index_encoder.h │ │ │ │ │ │ ├── index_hash.c │ │ │ │ │ │ ├── lzip_decoder.c │ │ │ │ │ │ ├── lzip_decoder.h │ │ │ │ │ │ ├── memcmplen.h │ │ │ │ │ │ ├── microlzma_decoder.c │ │ │ │ │ │ ├── microlzma_encoder.c │ │ │ │ │ │ ├── outqueue.c │ │ │ │ │ │ ├── outqueue.h │ │ │ │ │ │ ├── stream_buffer_decoder.c │ │ │ │ │ │ ├── stream_buffer_encoder.c │ │ │ │ │ │ ├── stream_decoder.c │ │ │ │ │ │ ├── stream_decoder.h │ │ │ │ │ │ ├── stream_decoder_mt.c │ │ │ │ │ │ ├── stream_encoder.c │ │ │ │ │ │ ├── stream_encoder_mt.c │ │ │ │ │ │ ├── stream_flags_common.c │ │ │ │ │ │ ├── stream_flags_common.h │ │ │ │ │ │ ├── stream_flags_decoder.c │ │ │ │ │ │ ├── stream_flags_encoder.c │ │ │ │ │ │ ├── string_conversion.c │ │ │ │ │ │ ├── vli_decoder.c │ │ │ │ │ │ ├── vli_encoder.c │ │ │ │ │ │ └── vli_size.c │ │ │ │ │ ├── delta/ │ │ │ │ │ │ ├── delta_common.c │ │ │ │ │ │ ├── delta_common.h │ │ │ │ │ │ ├── delta_decoder.c │ │ │ │ │ │ ├── delta_decoder.h │ │ │ │ │ │ ├── delta_encoder.c │ │ │ │ │ │ ├── delta_encoder.h │ │ │ │ │ │ └── delta_private.h │ │ │ │ │ ├── liblzma.pc.in │ │ │ │ │ ├── lz/ │ │ │ │ │ │ ├── lz_decoder.c │ │ │ │ │ │ ├── lz_decoder.h │ │ │ │ │ │ ├── lz_encoder.c │ │ │ │ │ │ ├── lz_encoder.h │ │ │ │ │ │ ├── lz_encoder_hash.h │ │ │ │ │ │ ├── lz_encoder_hash_table.h │ │ │ │ │ │ └── lz_encoder_mf.c │ │ │ │ │ ├── lzma/ │ │ │ │ │ │ ├── fastpos.h │ │ │ │ │ │ ├── fastpos_table.c │ │ │ │ │ │ ├── fastpos_tablegen.c │ │ │ │ │ │ ├── lzma2_decoder.c │ │ │ │ │ │ ├── lzma2_decoder.h │ │ │ │ │ │ ├── lzma2_encoder.c │ │ │ │ │ │ ├── lzma2_encoder.h │ │ │ │ │ │ ├── lzma_common.h │ │ │ │ │ │ ├── lzma_decoder.c │ │ │ │ │ │ ├── lzma_decoder.h │ │ │ │ │ │ ├── lzma_encoder.c │ │ │ │ │ │ ├── lzma_encoder.h │ │ │ │ │ │ ├── lzma_encoder_optimum_fast.c │ │ │ │ │ │ ├── lzma_encoder_optimum_normal.c │ │ │ │ │ │ ├── lzma_encoder_presets.c │ │ │ │ │ │ └── lzma_encoder_private.h │ │ │ │ │ ├── rangecoder/ │ │ │ │ │ │ ├── price.h │ │ │ │ │ │ ├── price_table.c │ │ │ │ │ │ ├── price_tablegen.c │ │ │ │ │ │ ├── range_common.h │ │ │ │ │ │ ├── range_decoder.h │ │ │ │ │ │ └── range_encoder.h │ │ │ │ │ ├── simple/ │ │ │ │ │ │ ├── arm.c │ │ │ │ │ │ ├── arm64.c │ │ │ │ │ │ ├── armthumb.c │ │ │ │ │ │ ├── ia64.c │ │ │ │ │ │ ├── powerpc.c │ │ │ │ │ │ ├── riscv.c │ │ │ │ │ │ ├── simple_coder.c │ │ │ │ │ │ ├── simple_coder.h │ │ │ │ │ │ ├── simple_decoder.c │ │ │ │ │ │ ├── simple_decoder.h │ │ │ │ │ │ ├── simple_encoder.c │ │ │ │ │ │ ├── simple_encoder.h │ │ │ │ │ │ ├── simple_private.h │ │ │ │ │ │ ├── sparc.c │ │ │ │ │ │ └── x86.c │ │ │ │ │ └── validate_map.sh │ │ │ │ └── xz.qbs │ │ │ ├── yaml-cpp/ │ │ │ │ ├── .clang-format │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── include/ │ │ │ │ │ └── yaml-cpp/ │ │ │ │ │ ├── anchor.h │ │ │ │ │ ├── binary.h │ │ │ │ │ ├── depthguard.h │ │ │ │ │ ├── dll.h │ │ │ │ │ ├── emitfromevents.h │ │ │ │ │ ├── emitter.h │ │ │ │ │ ├── emitterdef.h │ │ │ │ │ ├── emittermanip.h │ │ │ │ │ ├── emitterstyle.h │ │ │ │ │ ├── eventhandler.h │ │ │ │ │ ├── exceptions.h │ │ │ │ │ ├── mark.h │ │ │ │ │ ├── node/ │ │ │ │ │ │ ├── convert.h │ │ │ │ │ │ ├── detail/ │ │ │ │ │ │ │ ├── impl.h │ │ │ │ │ │ │ ├── iterator.h │ │ │ │ │ │ │ ├── iterator_fwd.h │ │ │ │ │ │ │ ├── memory.h │ │ │ │ │ │ │ ├── node.h │ │ │ │ │ │ │ ├── node_data.h │ │ │ │ │ │ │ ├── node_iterator.h │ │ │ │ │ │ │ └── node_ref.h │ │ │ │ │ │ ├── emit.h │ │ │ │ │ │ ├── impl.h │ │ │ │ │ │ ├── iterator.h │ │ │ │ │ │ ├── node.h │ │ │ │ │ │ ├── parse.h │ │ │ │ │ │ ├── ptr.h │ │ │ │ │ │ └── type.h │ │ │ │ │ ├── noexcept.h │ │ │ │ │ ├── null.h │ │ │ │ │ ├── ostream_wrapper.h │ │ │ │ │ ├── parser.h │ │ │ │ │ ├── stlemitter.h │ │ │ │ │ ├── traits.h │ │ │ │ │ └── yaml.h │ │ │ │ ├── patches/ │ │ │ │ │ └── 0001-yaml-cpp-Strip-unneeded-sources.patch │ │ │ │ ├── src/ │ │ │ │ │ ├── binary.cpp │ │ │ │ │ ├── collectionstack.h │ │ │ │ │ ├── convert.cpp │ │ │ │ │ ├── depthguard.cpp │ │ │ │ │ ├── directives.cpp │ │ │ │ │ ├── directives.h │ │ │ │ │ ├── emit.cpp │ │ │ │ │ ├── emitfromevents.cpp │ │ │ │ │ ├── emitter.cpp │ │ │ │ │ ├── emitterstate.cpp │ │ │ │ │ ├── emitterstate.h │ │ │ │ │ ├── emitterutils.cpp │ │ │ │ │ ├── emitterutils.h │ │ │ │ │ ├── exceptions.cpp │ │ │ │ │ ├── exp.cpp │ │ │ │ │ ├── exp.h │ │ │ │ │ ├── indentation.h │ │ │ │ │ ├── memory.cpp │ │ │ │ │ ├── node.cpp │ │ │ │ │ ├── node_data.cpp │ │ │ │ │ ├── nodebuilder.cpp │ │ │ │ │ ├── nodebuilder.h │ │ │ │ │ ├── nodeevents.cpp │ │ │ │ │ ├── nodeevents.h │ │ │ │ │ ├── null.cpp │ │ │ │ │ ├── ostream_wrapper.cpp │ │ │ │ │ ├── parse.cpp │ │ │ │ │ ├── parser.cpp │ │ │ │ │ ├── ptr_vector.h │ │ │ │ │ ├── regex_yaml.cpp │ │ │ │ │ ├── regex_yaml.h │ │ │ │ │ ├── regeximpl.h │ │ │ │ │ ├── scanner.cpp │ │ │ │ │ ├── scanner.h │ │ │ │ │ ├── scanscalar.cpp │ │ │ │ │ ├── scanscalar.h │ │ │ │ │ ├── scantag.cpp │ │ │ │ │ ├── scantag.h │ │ │ │ │ ├── scantoken.cpp │ │ │ │ │ ├── setting.h │ │ │ │ │ ├── simplekey.cpp │ │ │ │ │ ├── singledocparser.cpp │ │ │ │ │ ├── singledocparser.h │ │ │ │ │ ├── stream.cpp │ │ │ │ │ ├── stream.h │ │ │ │ │ ├── streamcharsource.h │ │ │ │ │ ├── stringsource.h │ │ │ │ │ ├── tag.cpp │ │ │ │ │ ├── tag.h │ │ │ │ │ └── token.h │ │ │ │ └── yaml-cpp.qbs │ │ │ └── zlib/ │ │ │ ├── CMakeLists.txt │ │ │ ├── LICENSE │ │ │ ├── import_from_zlib_tarball.sh │ │ │ ├── qt_attribution.json │ │ │ ├── qtpatches.diff │ │ │ ├── src/ │ │ │ │ ├── ChangeLog │ │ │ │ ├── README │ │ │ │ ├── adler32.c │ │ │ │ ├── compress.c │ │ │ │ ├── crc32.c │ │ │ │ ├── crc32.h │ │ │ │ ├── deflate.c │ │ │ │ ├── deflate.h │ │ │ │ ├── gzclose.c │ │ │ │ ├── gzguts.h │ │ │ │ ├── gzlib.c │ │ │ │ ├── gzread.c │ │ │ │ ├── gzwrite.c │ │ │ │ ├── infback.c │ │ │ │ ├── inffast.c │ │ │ │ ├── inffast.h │ │ │ │ ├── inffixed.h │ │ │ │ ├── inflate.c │ │ │ │ ├── inflate.h │ │ │ │ ├── inftrees.c │ │ │ │ ├── inftrees.h │ │ │ │ ├── trees.c │ │ │ │ ├── trees.h │ │ │ │ ├── uncompr.c │ │ │ │ ├── zconf.h │ │ │ │ ├── zlib.h │ │ │ │ ├── zutil.c │ │ │ │ └── zutil.h │ │ │ └── zlib.qbs │ │ ├── CMakeLists.txt │ │ ├── QtTaskTree/ │ │ │ ├── CMakeLists.txt │ │ │ └── QtTaskTree/ │ │ │ ├── CMakeLists.txt │ │ │ ├── QBarrier │ │ │ ├── QConditional │ │ │ ├── QCustomTask │ │ │ ├── QDefaultTaskAdapter │ │ │ ├── QMappedTaskTreeRunner │ │ │ ├── QNetworkReplyWrapper │ │ │ ├── QParallelTaskTreeRunner │ │ │ ├── QProcessTaskAdapter │ │ │ ├── QProcessTaskDeleter │ │ │ ├── QSequentialTaskTreeRunner │ │ │ ├── QSingleTaskTreeRunner │ │ │ ├── QStartedBarrier │ │ │ ├── QSyncTask │ │ │ ├── QTaskInterface │ │ │ ├── QTaskTree │ │ │ ├── QTaskTreeTaskAdapter │ │ │ ├── QTcpSocketWrapper │ │ │ ├── QThreadFunction │ │ │ ├── QThreadFunctionBase │ │ │ ├── QThreadFunctionTaskAdapter │ │ │ ├── QTimeoutTaskAdapter │ │ │ ├── QtTaskTree │ │ │ ├── QtTaskTree.qbs │ │ │ ├── doc/ │ │ │ │ ├── qttasktree.qdocconf │ │ │ │ └── src/ │ │ │ │ └── qttasktree-module.qdoc │ │ │ ├── qbarriertask.cpp │ │ │ ├── qbarriertask.h │ │ │ ├── qconditional.cpp │ │ │ ├── qconditional.h │ │ │ ├── qnetworkreplywrappertask.cpp │ │ │ ├── qnetworkreplywrappertask.h │ │ │ ├── qprocesstask.cpp │ │ │ ├── qprocesstask.h │ │ │ ├── qtasktree.cpp │ │ │ ├── qtasktree.h │ │ │ ├── qtasktreerunner.cpp │ │ │ ├── qtasktreerunner.h │ │ │ ├── qtcpsocketwrappertask.cpp │ │ │ ├── qtcpsocketwrappertask.h │ │ │ ├── qthreadfunctiontask.cpp │ │ │ ├── qthreadfunctiontask.h │ │ │ └── qttasktreeglobal.h │ │ ├── acp/ │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── acp.cpp │ │ │ ├── acp.h │ │ │ ├── acp.qbs │ │ │ ├── acp_global.h │ │ │ ├── acpregistry.cpp │ │ │ ├── acpregistry.h │ │ │ ├── overview.md │ │ │ └── schema/ │ │ │ ├── agent.schema.json │ │ │ ├── meta.json │ │ │ ├── registry.schema.json │ │ │ └── schema.json │ │ ├── advanceddockingsystem/ │ │ │ ├── CMakeLists.txt │ │ │ ├── LICENSE.LGPLv21 │ │ │ ├── ads_globals.cpp │ │ │ ├── ads_globals.h │ │ │ ├── ads_globals_p.h │ │ │ ├── advanceddockingsystem.qbs │ │ │ ├── advanceddockingsystemtr.h │ │ │ ├── autohidedockcontainer.cpp │ │ │ ├── autohidedockcontainer.h │ │ │ ├── autohidesidebar.cpp │ │ │ ├── autohidesidebar.h │ │ │ ├── autohidetab.cpp │ │ │ ├── autohidetab.h │ │ │ ├── dockareatabbar.cpp │ │ │ ├── dockareatabbar.h │ │ │ ├── dockareatitlebar.cpp │ │ │ ├── dockareatitlebar.h │ │ │ ├── dockareawidget.cpp │ │ │ ├── dockareawidget.h │ │ │ ├── dockcomponentsfactory.cpp │ │ │ ├── dockcomponentsfactory.h │ │ │ ├── dockcontainerwidget.cpp │ │ │ ├── dockcontainerwidget.h │ │ │ ├── dockfocuscontroller.cpp │ │ │ ├── dockfocuscontroller.h │ │ │ ├── dockingstatereader.cpp │ │ │ ├── dockingstatereader.h │ │ │ ├── dockmanager.cpp │ │ │ ├── dockmanager.h │ │ │ ├── dockoverlay.cpp │ │ │ ├── dockoverlay.h │ │ │ ├── docksplitter.cpp │ │ │ ├── docksplitter.h │ │ │ ├── dockwidget.cpp │ │ │ ├── dockwidget.h │ │ │ ├── dockwidgettab.cpp │ │ │ ├── dockwidgettab.h │ │ │ ├── elidinglabel.cpp │ │ │ ├── elidinglabel.h │ │ │ ├── floatingdockcontainer.cpp │ │ │ ├── floatingdockcontainer.h │ │ │ ├── floatingdragpreview.cpp │ │ │ ├── floatingdragpreview.h │ │ │ ├── iconprovider.cpp │ │ │ ├── iconprovider.h │ │ │ ├── linux/ │ │ │ │ ├── floatingwidgettitlebar.cpp │ │ │ │ └── floatingwidgettitlebar.h │ │ │ ├── pushbutton.cpp │ │ │ ├── pushbutton.h │ │ │ ├── resizehandle.cpp │ │ │ ├── resizehandle.h │ │ │ ├── workspace.cpp │ │ │ ├── workspace.h │ │ │ ├── workspacedialog.cpp │ │ │ ├── workspacedialog.h │ │ │ ├── workspaceinputdialog.cpp │ │ │ ├── workspaceinputdialog.h │ │ │ ├── workspacemodel.cpp │ │ │ ├── workspacemodel.h │ │ │ ├── workspaceview.cpp │ │ │ └── workspaceview.h │ │ ├── aggregation/ │ │ │ ├── CMakeLists.txt │ │ │ ├── aggregate.cpp │ │ │ ├── aggregate.h │ │ │ ├── aggregation.qbs │ │ │ ├── aggregation_global.h │ │ │ └── examples/ │ │ │ └── text/ │ │ │ ├── main.cpp │ │ │ ├── main.h │ │ │ ├── main.ui │ │ │ └── myinterfaces.h │ │ ├── cplusplus/ │ │ │ ├── ASTParent.cpp │ │ │ ├── ASTParent.h │ │ │ ├── ASTPath.cpp │ │ │ ├── ASTPath.h │ │ │ ├── AlreadyConsideredClassContainer.h │ │ │ ├── BackwardsScanner.cpp │ │ │ ├── BackwardsScanner.h │ │ │ ├── CMakeLists.txt │ │ │ ├── CppDocument.cpp │ │ │ ├── CppDocument.h │ │ │ ├── CppRewriter.cpp │ │ │ ├── CppRewriter.h │ │ │ ├── DependencyTable.cpp │ │ │ ├── DependencyTable.h │ │ │ ├── DeprecatedGenTemplateInstance.cpp │ │ │ ├── DeprecatedGenTemplateInstance.h │ │ │ ├── ExpressionUnderCursor.cpp │ │ │ ├── ExpressionUnderCursor.h │ │ │ ├── FastPreprocessor.cpp │ │ │ ├── FastPreprocessor.h │ │ │ ├── FindUsages.cpp │ │ │ ├── FindUsages.h │ │ │ ├── Icons.cpp │ │ │ ├── Icons.h │ │ │ ├── LookupContext.cpp │ │ │ ├── LookupContext.h │ │ │ ├── LookupItem.cpp │ │ │ ├── LookupItem.h │ │ │ ├── Macro.cpp │ │ │ ├── Macro.h │ │ │ ├── MatchingText.cpp │ │ │ ├── MatchingText.h │ │ │ ├── NamePrettyPrinter.cpp │ │ │ ├── NamePrettyPrinter.h │ │ │ ├── Overview.cpp │ │ │ ├── Overview.h │ │ │ ├── PPToken.cpp │ │ │ ├── PPToken.h │ │ │ ├── PreprocessorClient.cpp │ │ │ ├── PreprocessorClient.h │ │ │ ├── PreprocessorEnvironment.cpp │ │ │ ├── PreprocessorEnvironment.h │ │ │ ├── ResolveExpression.cpp │ │ │ ├── ResolveExpression.h │ │ │ ├── SimpleLexer.cpp │ │ │ ├── SimpleLexer.h │ │ │ ├── SnapshotSymbolVisitor.cpp │ │ │ ├── SnapshotSymbolVisitor.h │ │ │ ├── SymbolNameVisitor.cpp │ │ │ ├── SymbolNameVisitor.h │ │ │ ├── TypeOfExpression.cpp │ │ │ ├── TypeOfExpression.h │ │ │ ├── TypePrettyPrinter.cpp │ │ │ ├── TypePrettyPrinter.h │ │ │ ├── cplusplus.qbs │ │ │ ├── cppmodelmanagerbase.cpp │ │ │ ├── cppmodelmanagerbase.h │ │ │ ├── declarationcomments.cpp │ │ │ ├── declarationcomments.h │ │ │ ├── findcdbbreakpoint.cpp │ │ │ ├── findcdbbreakpoint.h │ │ │ ├── pp-cctype.h │ │ │ ├── pp-engine.cpp │ │ │ ├── pp-engine.h │ │ │ └── pp.h │ │ ├── devcontainer/ │ │ │ ├── CMakeLists.txt │ │ │ ├── devContainerFeature.schema.json │ │ │ ├── devcontainer.cpp │ │ │ ├── devcontainer.h │ │ │ ├── devcontainer.qbs │ │ │ ├── devcontainer.schema.json │ │ │ ├── devcontainer_global.h │ │ │ ├── devcontainerconfig.cpp │ │ │ ├── devcontainerconfig.h │ │ │ ├── devcontainerfeature.cpp │ │ │ ├── devcontainerfeature.h │ │ │ ├── devcontainertr.h │ │ │ ├── substitute.cpp │ │ │ └── substitute.h │ │ ├── extensionsystem/ │ │ │ ├── CMakeLists.txt │ │ │ ├── extensionsystem.qbs │ │ │ ├── extensionsystem_global.h │ │ │ ├── extensionsystemtr.h │ │ │ ├── invoker.cpp │ │ │ ├── invoker.h │ │ │ ├── iplugin.cpp │ │ │ ├── iplugin.h │ │ │ ├── optionsparser.cpp │ │ │ ├── optionsparser.h │ │ │ ├── plugindetailsview.cpp │ │ │ ├── plugindetailsview.h │ │ │ ├── pluginerroroverview.cpp │ │ │ ├── pluginerroroverview.h │ │ │ ├── pluginerrorview.cpp │ │ │ ├── pluginerrorview.h │ │ │ ├── pluginmanager.cpp │ │ │ ├── pluginmanager.h │ │ │ ├── pluginmanager_p.h │ │ │ ├── pluginspec.cpp │ │ │ ├── pluginspec.h │ │ │ ├── pluginview.cpp │ │ │ └── pluginview.h │ │ ├── glsl/ │ │ │ ├── CMakeLists.txt │ │ │ ├── glsl.g │ │ │ ├── glsl.h │ │ │ ├── glsl.qbs │ │ │ ├── glslast.cpp │ │ │ ├── glslast.h │ │ │ ├── glslastdump.cpp │ │ │ ├── glslastdump.h │ │ │ ├── glslastvisitor.cpp │ │ │ ├── glslastvisitor.h │ │ │ ├── glslengine.cpp │ │ │ ├── glslengine.h │ │ │ ├── glslkeywords.cpp │ │ │ ├── glsllexer.cpp │ │ │ ├── glsllexer.h │ │ │ ├── glslmemorypool.cpp │ │ │ ├── glslmemorypool.h │ │ │ ├── glslparser.cpp │ │ │ ├── glslparser.h │ │ │ ├── glslparsertable.cpp │ │ │ ├── glslparsertable_p.h │ │ │ ├── glslsemantic.cpp │ │ │ ├── glslsemantic.h │ │ │ ├── glslsymbol.cpp │ │ │ ├── glslsymbol.h │ │ │ ├── glslsymbols.cpp │ │ │ ├── glslsymbols.h │ │ │ ├── glsltype.cpp │ │ │ ├── glsltype.h │ │ │ ├── glsltypes.cpp │ │ │ ├── glsltypes.h │ │ │ ├── make-parser.sh │ │ │ └── specification/ │ │ │ ├── glsl.keywords │ │ │ └── grammar.txt │ │ ├── gocmdbridge/ │ │ │ ├── CMakeLists.txt │ │ │ ├── client/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── bridgedfileaccess.cpp │ │ │ │ ├── bridgedfileaccess.h │ │ │ │ ├── client.qbs │ │ │ │ ├── cmdbridgeclient.cpp │ │ │ │ ├── cmdbridgeclient.h │ │ │ │ ├── cmdbridgeglobal.h │ │ │ │ └── cmdbridgetr.h │ │ │ ├── gocmdbridge.qbs │ │ │ └── server/ │ │ │ ├── CMakeLists.txt │ │ │ ├── channelwriter.go │ │ │ ├── cmdbridge.go │ │ │ ├── exec.go │ │ │ ├── fileaccess.go │ │ │ ├── fileaccess_windows.go │ │ │ ├── find.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── is.go │ │ │ ├── readfile.go │ │ │ ├── server.qbs │ │ │ ├── stat.go │ │ │ ├── watcher.go │ │ │ └── writefile.go │ │ ├── googletest/ │ │ │ └── CMakeLists.txt │ │ ├── languageserverprotocol/ │ │ │ ├── CMakeLists.txt │ │ │ ├── basemessage.cpp │ │ │ ├── basemessage.h │ │ │ ├── callhierarchy.cpp │ │ │ ├── callhierarchy.h │ │ │ ├── client.cpp │ │ │ ├── client.h │ │ │ ├── clientcapabilities.cpp │ │ │ ├── clientcapabilities.h │ │ │ ├── completion.cpp │ │ │ ├── completion.h │ │ │ ├── diagnostics.cpp │ │ │ ├── diagnostics.h │ │ │ ├── initializemessages.cpp │ │ │ ├── initializemessages.h │ │ │ ├── jsonkeys.h │ │ │ ├── jsonobject.cpp │ │ │ ├── jsonobject.h │ │ │ ├── jsonrpcmessages.cpp │ │ │ ├── jsonrpcmessages.h │ │ │ ├── languagefeatures.cpp │ │ │ ├── languagefeatures.h │ │ │ ├── languageserverprotocol.qbs │ │ │ ├── languageserverprotocol_global.h │ │ │ ├── languageserverprotocoltr.h │ │ │ ├── lsptypes.cpp │ │ │ ├── lsptypes.h │ │ │ ├── lsputils.cpp │ │ │ ├── lsputils.h │ │ │ ├── messages.cpp │ │ │ ├── messages.h │ │ │ ├── progresssupport.cpp │ │ │ ├── progresssupport.h │ │ │ ├── semantictokens.cpp │ │ │ ├── semantictokens.h │ │ │ ├── servercapabilities.cpp │ │ │ ├── servercapabilities.h │ │ │ ├── shutdownmessages.cpp │ │ │ ├── shutdownmessages.h │ │ │ ├── textsynchronization.cpp │ │ │ ├── textsynchronization.h │ │ │ ├── typehierarchy.cpp │ │ │ ├── typehierarchy.h │ │ │ ├── workspace.cpp │ │ │ └── workspace.h │ │ ├── languageutils/ │ │ │ ├── CMakeLists.txt │ │ │ ├── componentversion.cpp │ │ │ ├── componentversion.h │ │ │ ├── fakemetaobject.cpp │ │ │ ├── fakemetaobject.h │ │ │ ├── languageutils.qbs │ │ │ └── languageutils_global.h │ │ ├── libs.qbs │ │ ├── mcp/ │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── mcp.qbs │ │ │ ├── schemas/ │ │ │ │ ├── schema-2025-11-25.json │ │ │ │ ├── schema_2025_11_25.cpp │ │ │ │ └── schema_2025_11_25.h │ │ │ └── server/ │ │ │ ├── CMakeLists.txt │ │ │ ├── mcpserver.cpp │ │ │ ├── mcpserver.h │ │ │ ├── mcpserver_global.h │ │ │ └── minihttpserver.h │ │ ├── modelinglib/ │ │ │ ├── CMakeLists.txt │ │ │ ├── modelinglib.qbs │ │ │ ├── modelinglibtr.h │ │ │ ├── qmt/ │ │ │ │ ├── config/ │ │ │ │ │ ├── configcontroller.cpp │ │ │ │ │ ├── configcontroller.h │ │ │ │ │ ├── sourcepos.cpp │ │ │ │ │ ├── sourcepos.h │ │ │ │ │ ├── stereotypedefinitionparser.cpp │ │ │ │ │ ├── stereotypedefinitionparser.h │ │ │ │ │ ├── stringtextsource.cpp │ │ │ │ │ ├── stringtextsource.h │ │ │ │ │ ├── textscanner.cpp │ │ │ │ │ ├── textscanner.h │ │ │ │ │ ├── textsource.h │ │ │ │ │ ├── token.cpp │ │ │ │ │ └── token.h │ │ │ │ ├── controller/ │ │ │ │ │ ├── container.h │ │ │ │ │ ├── namecontroller.cpp │ │ │ │ │ ├── namecontroller.h │ │ │ │ │ ├── references.h │ │ │ │ │ ├── selection.cpp │ │ │ │ │ ├── selection.h │ │ │ │ │ ├── undocommand.cpp │ │ │ │ │ ├── undocommand.h │ │ │ │ │ ├── undocontroller.cpp │ │ │ │ │ └── undocontroller.h │ │ │ │ ├── diagram/ │ │ │ │ │ ├── dannotation.cpp │ │ │ │ │ ├── dannotation.h │ │ │ │ │ ├── dassociation.cpp │ │ │ │ │ ├── dassociation.h │ │ │ │ │ ├── dboundary.cpp │ │ │ │ │ ├── dboundary.h │ │ │ │ │ ├── dclass.cpp │ │ │ │ │ ├── dclass.h │ │ │ │ │ ├── dcomponent.cpp │ │ │ │ │ ├── dcomponent.h │ │ │ │ │ ├── dconnection.cpp │ │ │ │ │ ├── dconnection.h │ │ │ │ │ ├── dconstvisitor.h │ │ │ │ │ ├── ddependency.cpp │ │ │ │ │ ├── ddependency.h │ │ │ │ │ ├── ddiagram.cpp │ │ │ │ │ ├── ddiagram.h │ │ │ │ │ ├── delement.cpp │ │ │ │ │ ├── delement.h │ │ │ │ │ ├── dinheritance.cpp │ │ │ │ │ ├── dinheritance.h │ │ │ │ │ ├── ditem.cpp │ │ │ │ │ ├── ditem.h │ │ │ │ │ ├── dobject.cpp │ │ │ │ │ ├── dobject.h │ │ │ │ │ ├── dpackage.cpp │ │ │ │ │ ├── dpackage.h │ │ │ │ │ ├── drelation.cpp │ │ │ │ │ ├── drelation.h │ │ │ │ │ ├── dswimlane.cpp │ │ │ │ │ ├── dswimlane.h │ │ │ │ │ └── dvisitor.h │ │ │ │ ├── diagram_controller/ │ │ │ │ │ ├── dclonevisitor.cpp │ │ │ │ │ ├── dclonevisitor.h │ │ │ │ │ ├── dcontainer.h │ │ │ │ │ ├── dfactory.cpp │ │ │ │ │ ├── dfactory.h │ │ │ │ │ ├── dflatassignmentvisitor.cpp │ │ │ │ │ ├── dflatassignmentvisitor.h │ │ │ │ │ ├── diagramcontroller.cpp │ │ │ │ │ ├── diagramcontroller.h │ │ │ │ │ ├── dreferences.h │ │ │ │ │ ├── dselection.h │ │ │ │ │ ├── dupdatevisitor.cpp │ │ │ │ │ ├── dupdatevisitor.h │ │ │ │ │ ├── dvoidvisitor.cpp │ │ │ │ │ └── dvoidvisitor.h │ │ │ │ ├── diagram_scene/ │ │ │ │ │ ├── capabilities/ │ │ │ │ │ │ ├── alignable.h │ │ │ │ │ │ ├── editable.h │ │ │ │ │ │ ├── intersectionable.h │ │ │ │ │ │ ├── latchable.h │ │ │ │ │ │ ├── moveable.h │ │ │ │ │ │ ├── relationable.h │ │ │ │ │ │ ├── resizable.h │ │ │ │ │ │ ├── selectable.h │ │ │ │ │ │ └── windable.h │ │ │ │ │ ├── diagramgraphicsscene.cpp │ │ │ │ │ ├── diagramgraphicsscene.h │ │ │ │ │ ├── diagramsceneconstants.h │ │ │ │ │ ├── diagramscenemodel.cpp │ │ │ │ │ ├── diagramscenemodel.h │ │ │ │ │ ├── diagramscenemodelitemvisitors.cpp │ │ │ │ │ ├── diagramscenemodelitemvisitors.h │ │ │ │ │ ├── items/ │ │ │ │ │ │ ├── annotationitem.cpp │ │ │ │ │ │ ├── annotationitem.h │ │ │ │ │ │ ├── associationitem.cpp │ │ │ │ │ │ ├── associationitem.h │ │ │ │ │ │ ├── boundaryitem.cpp │ │ │ │ │ │ ├── boundaryitem.h │ │ │ │ │ │ ├── classitem.cpp │ │ │ │ │ │ ├── classitem.h │ │ │ │ │ │ ├── componentitem.cpp │ │ │ │ │ │ ├── componentitem.h │ │ │ │ │ │ ├── connectionitem.cpp │ │ │ │ │ │ ├── connectionitem.h │ │ │ │ │ │ ├── diagramitem.cpp │ │ │ │ │ │ ├── diagramitem.h │ │ │ │ │ │ ├── itemitem.cpp │ │ │ │ │ │ ├── itemitem.h │ │ │ │ │ │ ├── objectitem.cpp │ │ │ │ │ │ ├── objectitem.h │ │ │ │ │ │ ├── packageitem.cpp │ │ │ │ │ │ ├── packageitem.h │ │ │ │ │ │ ├── relationitem.cpp │ │ │ │ │ │ ├── relationitem.h │ │ │ │ │ │ ├── stereotypedisplayvisitor.cpp │ │ │ │ │ │ ├── stereotypedisplayvisitor.h │ │ │ │ │ │ ├── swimlaneitem.cpp │ │ │ │ │ │ └── swimlaneitem.h │ │ │ │ │ ├── latchcontroller.cpp │ │ │ │ │ ├── latchcontroller.h │ │ │ │ │ └── parts/ │ │ │ │ │ ├── alignbuttonsitem.cpp │ │ │ │ │ ├── alignbuttonsitem.h │ │ │ │ │ ├── alignlineitem.cpp │ │ │ │ │ ├── alignlineitem.h │ │ │ │ │ ├── arrowitem.cpp │ │ │ │ │ ├── arrowitem.h │ │ │ │ │ ├── contextlabelitem.cpp │ │ │ │ │ ├── contextlabelitem.h │ │ │ │ │ ├── customiconitem.cpp │ │ │ │ │ ├── customiconitem.h │ │ │ │ │ ├── editabletextitem.cpp │ │ │ │ │ ├── editabletextitem.h │ │ │ │ │ ├── pathselectionitem.cpp │ │ │ │ │ ├── pathselectionitem.h │ │ │ │ │ ├── rectangularselectionitem.cpp │ │ │ │ │ ├── rectangularselectionitem.h │ │ │ │ │ ├── relationstarter.cpp │ │ │ │ │ ├── relationstarter.h │ │ │ │ │ ├── stereotypesitem.cpp │ │ │ │ │ ├── stereotypesitem.h │ │ │ │ │ ├── templateparameterbox.cpp │ │ │ │ │ └── templateparameterbox.h │ │ │ │ ├── diagram_ui/ │ │ │ │ │ ├── diagram_mime_types.h │ │ │ │ │ ├── diagramsmanager.cpp │ │ │ │ │ ├── diagramsmanager.h │ │ │ │ │ ├── diagramsviewinterface.h │ │ │ │ │ ├── sceneinspector.cpp │ │ │ │ │ └── sceneinspector.h │ │ │ │ ├── diagram_widgets_ui/ │ │ │ │ │ ├── diagramsview.cpp │ │ │ │ │ ├── diagramsview.h │ │ │ │ │ ├── diagramview.cpp │ │ │ │ │ ├── diagramview.h │ │ │ │ │ ├── stackeddiagramsview.cpp │ │ │ │ │ └── stackeddiagramsview.h │ │ │ │ ├── document_controller/ │ │ │ │ │ ├── documentcontroller.cpp │ │ │ │ │ └── documentcontroller.h │ │ │ │ ├── infrastructure/ │ │ │ │ │ ├── contextmenuaction.cpp │ │ │ │ │ ├── contextmenuaction.h │ │ │ │ │ ├── exceptions.cpp │ │ │ │ │ ├── exceptions.h │ │ │ │ │ ├── geometryutilities.cpp │ │ │ │ │ ├── geometryutilities.h │ │ │ │ │ ├── handle.h │ │ │ │ │ ├── handles.h │ │ │ │ │ ├── ioexceptions.cpp │ │ │ │ │ ├── ioexceptions.h │ │ │ │ │ ├── qcompressedfile.cpp │ │ │ │ │ ├── qcompressedfile.h │ │ │ │ │ ├── qmt_global.h │ │ │ │ │ ├── qmtassert.h │ │ │ │ │ └── uid.h │ │ │ │ ├── model/ │ │ │ │ │ ├── massociation.cpp │ │ │ │ │ ├── massociation.h │ │ │ │ │ ├── mcanvasdiagram.cpp │ │ │ │ │ ├── mcanvasdiagram.h │ │ │ │ │ ├── mclass.cpp │ │ │ │ │ ├── mclass.h │ │ │ │ │ ├── mclassmember.cpp │ │ │ │ │ ├── mclassmember.h │ │ │ │ │ ├── mcomponent.cpp │ │ │ │ │ ├── mcomponent.h │ │ │ │ │ ├── mconnection.cpp │ │ │ │ │ ├── mconnection.h │ │ │ │ │ ├── mconstvisitor.h │ │ │ │ │ ├── mdependency.cpp │ │ │ │ │ ├── mdependency.h │ │ │ │ │ ├── mdiagram.cpp │ │ │ │ │ ├── mdiagram.h │ │ │ │ │ ├── melement.cpp │ │ │ │ │ ├── melement.h │ │ │ │ │ ├── minheritance.cpp │ │ │ │ │ ├── minheritance.h │ │ │ │ │ ├── mitem.cpp │ │ │ │ │ ├── mitem.h │ │ │ │ │ ├── mobject.cpp │ │ │ │ │ ├── mobject.h │ │ │ │ │ ├── mpackage.cpp │ │ │ │ │ ├── mpackage.h │ │ │ │ │ ├── mrelation.cpp │ │ │ │ │ ├── mrelation.h │ │ │ │ │ ├── msourceexpansion.cpp │ │ │ │ │ ├── msourceexpansion.h │ │ │ │ │ └── mvisitor.h │ │ │ │ ├── model_controller/ │ │ │ │ │ ├── mchildrenvisitor.cpp │ │ │ │ │ ├── mchildrenvisitor.h │ │ │ │ │ ├── mclonevisitor.cpp │ │ │ │ │ ├── mclonevisitor.h │ │ │ │ │ ├── mcontainer.h │ │ │ │ │ ├── mflatassignmentvisitor.cpp │ │ │ │ │ ├── mflatassignmentvisitor.h │ │ │ │ │ ├── modelcontroller.cpp │ │ │ │ │ ├── modelcontroller.h │ │ │ │ │ ├── mreferences.h │ │ │ │ │ ├── mselection.h │ │ │ │ │ ├── mvoidvisitor.cpp │ │ │ │ │ └── mvoidvisitor.h │ │ │ │ ├── model_ui/ │ │ │ │ │ ├── modeltreefilterdata.cpp │ │ │ │ │ ├── modeltreefilterdata.h │ │ │ │ │ ├── modeltreeviewinterface.h │ │ │ │ │ ├── sortedtreemodel.cpp │ │ │ │ │ ├── sortedtreemodel.h │ │ │ │ │ ├── stereotypescontroller.cpp │ │ │ │ │ ├── stereotypescontroller.h │ │ │ │ │ ├── treemodel.cpp │ │ │ │ │ ├── treemodel.h │ │ │ │ │ ├── treemodelmanager.cpp │ │ │ │ │ └── treemodelmanager.h │ │ │ │ ├── model_widgets_ui/ │ │ │ │ │ ├── addrelatedelementsdialog.cpp │ │ │ │ │ ├── addrelatedelementsdialog.h │ │ │ │ │ ├── classmembersedit.cpp │ │ │ │ │ ├── classmembersedit.h │ │ │ │ │ ├── modeltreefilter.cpp │ │ │ │ │ ├── modeltreefilter.h │ │ │ │ │ ├── modeltreeview.cpp │ │ │ │ │ ├── modeltreeview.h │ │ │ │ │ ├── palettebox.cpp │ │ │ │ │ ├── palettebox.h │ │ │ │ │ ├── propertiesview.cpp │ │ │ │ │ ├── propertiesview.h │ │ │ │ │ ├── propertiesviewmview.cpp │ │ │ │ │ └── propertiesviewmview.h │ │ │ │ ├── project/ │ │ │ │ │ ├── project.cpp │ │ │ │ │ └── project.h │ │ │ │ ├── project_controller/ │ │ │ │ │ ├── projectcontroller.cpp │ │ │ │ │ └── projectcontroller.h │ │ │ │ ├── resources/ │ │ │ │ │ └── resources_modelinglib.qrc │ │ │ │ ├── serializer/ │ │ │ │ │ ├── diagramserializer.cpp │ │ │ │ │ ├── diagramserializer.h │ │ │ │ │ ├── infrastructureserializer.cpp │ │ │ │ │ ├── infrastructureserializer.h │ │ │ │ │ ├── modelserializer.cpp │ │ │ │ │ ├── modelserializer.h │ │ │ │ │ ├── projectserializer.cpp │ │ │ │ │ └── projectserializer.h │ │ │ │ ├── stereotype/ │ │ │ │ │ ├── customrelation.cpp │ │ │ │ │ ├── customrelation.h │ │ │ │ │ ├── iconshape.cpp │ │ │ │ │ ├── iconshape.h │ │ │ │ │ ├── shape.h │ │ │ │ │ ├── shapepaintvisitor.cpp │ │ │ │ │ ├── shapepaintvisitor.h │ │ │ │ │ ├── shapes.cpp │ │ │ │ │ ├── shapes.h │ │ │ │ │ ├── shapevalue.cpp │ │ │ │ │ ├── shapevalue.h │ │ │ │ │ ├── shapevisitor.h │ │ │ │ │ ├── stereotypecontroller.cpp │ │ │ │ │ ├── stereotypecontroller.h │ │ │ │ │ ├── stereotypeicon.cpp │ │ │ │ │ ├── stereotypeicon.h │ │ │ │ │ ├── toolbar.cpp │ │ │ │ │ └── toolbar.h │ │ │ │ ├── style/ │ │ │ │ │ ├── defaultstyle.cpp │ │ │ │ │ ├── defaultstyle.h │ │ │ │ │ ├── defaultstyleengine.cpp │ │ │ │ │ ├── defaultstyleengine.h │ │ │ │ │ ├── objectvisuals.cpp │ │ │ │ │ ├── objectvisuals.h │ │ │ │ │ ├── relationstarterstyle.cpp │ │ │ │ │ ├── relationstarterstyle.h │ │ │ │ │ ├── relationvisuals.cpp │ │ │ │ │ ├── relationvisuals.h │ │ │ │ │ ├── style.cpp │ │ │ │ │ ├── style.h │ │ │ │ │ ├── stylecontroller.cpp │ │ │ │ │ ├── stylecontroller.h │ │ │ │ │ ├── styledobject.cpp │ │ │ │ │ ├── styledobject.h │ │ │ │ │ ├── styledrelation.cpp │ │ │ │ │ ├── styledrelation.h │ │ │ │ │ └── styleengine.h │ │ │ │ └── tasks/ │ │ │ │ ├── alignonrastervisitor.cpp │ │ │ │ ├── alignonrastervisitor.h │ │ │ │ ├── diagramscenecontroller.cpp │ │ │ │ ├── diagramscenecontroller.h │ │ │ │ ├── finddiagramvisitor.cpp │ │ │ │ ├── finddiagramvisitor.h │ │ │ │ ├── findrootdiagramvisitor.cpp │ │ │ │ ├── findrootdiagramvisitor.h │ │ │ │ ├── ielementtasks.h │ │ │ │ ├── isceneinspector.h │ │ │ │ ├── voidelementtasks.cpp │ │ │ │ └── voidelementtasks.h │ │ │ ├── qstringparser/ │ │ │ │ ├── qstringparser.cpp │ │ │ │ └── qstringparser.h │ │ │ └── qtserialization/ │ │ │ ├── inc/ │ │ │ │ └── qark/ │ │ │ │ ├── access.h │ │ │ │ ├── archivebasics.h │ │ │ │ ├── attribute.h │ │ │ │ ├── baseclass.h │ │ │ │ ├── flag.h │ │ │ │ ├── friend_access.h │ │ │ │ ├── impl/ │ │ │ │ │ ├── loadingrefmap.h │ │ │ │ │ ├── objectid.h │ │ │ │ │ └── savingrefmap.h │ │ │ │ ├── parameters.h │ │ │ │ ├── qxmlinarchive.h │ │ │ │ ├── qxmloutarchive.h │ │ │ │ ├── reference.h │ │ │ │ ├── serialize.h │ │ │ │ ├── serialize_basic.h │ │ │ │ ├── serialize_container.h │ │ │ │ ├── serialize_enum.h │ │ │ │ ├── serialize_pointer.h │ │ │ │ ├── tag.h │ │ │ │ └── typeregistry.h │ │ │ └── src/ │ │ │ ├── flag.cpp │ │ │ └── savingrefmap.cpp │ │ ├── nanotrace/ │ │ │ ├── CMakeLists.txt │ │ │ ├── nanotrace.cpp │ │ │ ├── nanotrace.h │ │ │ ├── nanotrace.qbs │ │ │ ├── nanotraceglobals.h │ │ │ ├── nanotracehr.cpp │ │ │ ├── nanotracehr.h │ │ │ ├── nanotracehrfwd.h │ │ │ ├── python/ │ │ │ │ ├── assets/ │ │ │ │ │ └── stylesheet.css │ │ │ │ ├── figures.py │ │ │ │ ├── nanotrace.py │ │ │ │ └── reader.py │ │ │ ├── staticstring.h │ │ │ ├── tracefile.cpp │ │ │ └── tracefile.h │ │ ├── qmldebug/ │ │ │ ├── CMakeLists.txt │ │ │ ├── baseenginedebugclient.cpp │ │ │ ├── baseenginedebugclient.h │ │ │ ├── basetoolsclient.cpp │ │ │ ├── basetoolsclient.h │ │ │ ├── qdebugmessageclient.cpp │ │ │ ├── qdebugmessageclient.h │ │ │ ├── qmldebug.qbs │ │ │ ├── qmldebug_global.h │ │ │ ├── qmldebugclient.cpp │ │ │ ├── qmldebugclient.h │ │ │ ├── qmldebugconnection.cpp │ │ │ ├── qmldebugconnection.h │ │ │ ├── qmldebugconnectionmanager.cpp │ │ │ ├── qmldebugconnectionmanager.h │ │ │ ├── qmldebugconstants.h │ │ │ ├── qmldebugtr.h │ │ │ ├── qmlenginecontrolclient.cpp │ │ │ ├── qmlenginecontrolclient.h │ │ │ ├── qmlenginedebugclient.h │ │ │ ├── qmlevent.cpp │ │ │ ├── qmlevent.h │ │ │ ├── qmleventlocation.cpp │ │ │ ├── qmleventlocation.h │ │ │ ├── qmleventtype.cpp │ │ │ ├── qmleventtype.h │ │ │ ├── qmlprofilereventtypes.h │ │ │ ├── qmlprofilertraceclient.cpp │ │ │ ├── qmlprofilertraceclient.h │ │ │ ├── qmltoolsclient.cpp │ │ │ ├── qmltoolsclient.h │ │ │ ├── qmltypedevent.cpp │ │ │ ├── qmltypedevent.h │ │ │ ├── qpacketprotocol.cpp │ │ │ ├── qpacketprotocol.h │ │ │ ├── quickeventreplayclient.cpp │ │ │ └── quickeventreplayclient.h │ │ ├── qmleditorwidgets/ │ │ │ ├── CMakeLists.txt │ │ │ ├── colorbox.cpp │ │ │ ├── colorbox.h │ │ │ ├── colorbutton.cpp │ │ │ ├── colorbutton.h │ │ │ ├── contextpanetextwidget.cpp │ │ │ ├── contextpanetextwidget.h │ │ │ ├── contextpanewidget.cpp │ │ │ ├── contextpanewidget.h │ │ │ ├── contextpanewidgetimage.cpp │ │ │ ├── contextpanewidgetimage.h │ │ │ ├── contextpanewidgetrectangle.cpp │ │ │ ├── contextpanewidgetrectangle.h │ │ │ ├── customcolordialog.cpp │ │ │ ├── customcolordialog.h │ │ │ ├── easingpane/ │ │ │ │ ├── easingcontextpane.cpp │ │ │ │ ├── easingcontextpane.h │ │ │ │ ├── easinggraph.cpp │ │ │ │ ├── easinggraph.h │ │ │ │ └── easingpane.qrc │ │ │ ├── filewidget.cpp │ │ │ ├── filewidget.h │ │ │ ├── fontsizespinbox.cpp │ │ │ ├── fontsizespinbox.h │ │ │ ├── gradientline.cpp │ │ │ ├── gradientline.h │ │ │ ├── huecontrol.cpp │ │ │ ├── huecontrol.h │ │ │ ├── qmleditorwidgets.qbs │ │ │ ├── qmleditorwidgets_global.h │ │ │ ├── qmleditorwidgetstr.h │ │ │ └── resources_qmleditorwidgets.qrc │ │ ├── qmljs/ │ │ │ ├── CMakeLists.txt │ │ │ ├── jsoncheck.cpp │ │ │ ├── jsoncheck.h │ │ │ ├── parser/ │ │ │ │ ├── changeLicense.py │ │ │ │ ├── cmd.sed │ │ │ │ ├── gen-parser.sh │ │ │ │ ├── grammar.patch │ │ │ │ ├── parser.patch │ │ │ │ ├── qmldirparser.cpp │ │ │ │ ├── qmldirparser_p.h │ │ │ │ ├── qmljs.g │ │ │ │ ├── qmljsast.cpp │ │ │ │ ├── qmljsast_p.h │ │ │ │ ├── qmljsastfwd_p.h │ │ │ │ ├── qmljsastvisitor.cpp │ │ │ │ ├── qmljsastvisitor_p.h │ │ │ │ ├── qmljsdiagnosticmessage_p.h │ │ │ │ ├── qmljsengine_p.h │ │ │ │ ├── qmljsglobal_p.h │ │ │ │ ├── qmljsgrammar.cpp │ │ │ │ ├── qmljsgrammar_p.h │ │ │ │ ├── qmljskeywords_p.h │ │ │ │ ├── qmljslexer.cpp │ │ │ │ ├── qmljslexer_p.h │ │ │ │ ├── qmljsmemorypool_p.h │ │ │ │ ├── qmljsparser.cpp │ │ │ │ ├── qmljsparser_p.h │ │ │ │ └── qmljssourcelocation_p.h │ │ │ ├── persistenttrie.cpp │ │ │ ├── persistenttrie.h │ │ │ ├── qmljs.qbs │ │ │ ├── qmljs_global.h │ │ │ ├── qmljsbind.cpp │ │ │ ├── qmljsbind.h │ │ │ ├── qmljsbundle.cpp │ │ │ ├── qmljsbundle.h │ │ │ ├── qmljscheck.cpp │ │ │ ├── qmljscheck.h │ │ │ ├── qmljscodeformatter.cpp │ │ │ ├── qmljscodeformatter.h │ │ │ ├── qmljscompletioncontextfinder.cpp │ │ │ ├── qmljscompletioncontextfinder.h │ │ │ ├── qmljsconstants.h │ │ │ ├── qmljscontext.cpp │ │ │ ├── qmljscontext.h │ │ │ ├── qmljsdialect.cpp │ │ │ ├── qmljsdialect.h │ │ │ ├── qmljsdocument.cpp │ │ │ ├── qmljsdocument.h │ │ │ ├── qmljsevaluate.cpp │ │ │ ├── qmljsevaluate.h │ │ │ ├── qmljsfindexportedcpptypes.cpp │ │ │ ├── qmljsfindexportedcpptypes.h │ │ │ ├── qmljsicons.cpp │ │ │ ├── qmljsicons.h │ │ │ ├── qmljsimportdependencies.cpp │ │ │ ├── qmljsimportdependencies.h │ │ │ ├── qmljsinterpreter.cpp │ │ │ ├── qmljsinterpreter.h │ │ │ ├── qmljslineinfo.cpp │ │ │ ├── qmljslineinfo.h │ │ │ ├── qmljslink.cpp │ │ │ ├── qmljslink.h │ │ │ ├── qmljsmodelmanagerinterface.cpp │ │ │ ├── qmljsmodelmanagerinterface.h │ │ │ ├── qmljsplugindumper.cpp │ │ │ ├── qmljsplugindumper.h │ │ │ ├── qmljspropertyreader.cpp │ │ │ ├── qmljspropertyreader.h │ │ │ ├── qmljsreformatter.cpp │ │ │ ├── qmljsreformatter.h │ │ │ ├── qmljsrewriter.cpp │ │ │ ├── qmljsrewriter.h │ │ │ ├── qmljsscanner.cpp │ │ │ ├── qmljsscanner.h │ │ │ ├── qmljsscopeastpath.cpp │ │ │ ├── qmljsscopeastpath.h │ │ │ ├── qmljsscopebuilder.cpp │ │ │ ├── qmljsscopebuilder.h │ │ │ ├── qmljsscopechain.cpp │ │ │ ├── qmljsscopechain.h │ │ │ ├── qmljssimplereader.cpp │ │ │ ├── qmljssimplereader.h │ │ │ ├── qmljsstaticanalysismessage.cpp │ │ │ ├── qmljsstaticanalysismessage.h │ │ │ ├── qmljstr.h │ │ │ ├── qmljstypedescriptionreader.cpp │ │ │ ├── qmljstypedescriptionreader.h │ │ │ ├── qmljsutils.cpp │ │ │ ├── qmljsutils.h │ │ │ ├── qmljsvalueowner.cpp │ │ │ ├── qmljsvalueowner.h │ │ │ └── qmljsviewercontext.h │ │ ├── qmlpuppetcommunication/ │ │ │ ├── CMakeLists.txt │ │ │ ├── QmlPuppetCommunication.cmake │ │ │ ├── commands/ │ │ │ │ ├── captureddatacommand.h │ │ │ │ ├── changeauxiliarycommand.cpp │ │ │ │ ├── changeauxiliarycommand.h │ │ │ │ ├── changebindingscommand.cpp │ │ │ │ ├── changebindingscommand.h │ │ │ │ ├── changefileurlcommand.cpp │ │ │ │ ├── changefileurlcommand.h │ │ │ │ ├── changeidscommand.cpp │ │ │ │ ├── changeidscommand.h │ │ │ │ ├── changelanguagecommand.cpp │ │ │ │ ├── changelanguagecommand.h │ │ │ │ ├── changenodesourcecommand.cpp │ │ │ │ ├── changenodesourcecommand.h │ │ │ │ ├── changepreviewimagesizecommand.cpp │ │ │ │ ├── changepreviewimagesizecommand.h │ │ │ │ ├── changeselectioncommand.cpp │ │ │ │ ├── changeselectioncommand.h │ │ │ │ ├── changestatecommand.cpp │ │ │ │ ├── changestatecommand.h │ │ │ │ ├── changevaluescommand.cpp │ │ │ │ ├── changevaluescommand.h │ │ │ │ ├── childrenchangedcommand.cpp │ │ │ │ ├── childrenchangedcommand.h │ │ │ │ ├── clearscenecommand.cpp │ │ │ │ ├── clearscenecommand.h │ │ │ │ ├── completecomponentcommand.cpp │ │ │ │ ├── completecomponentcommand.h │ │ │ │ ├── componentcompletedcommand.cpp │ │ │ │ ├── componentcompletedcommand.h │ │ │ │ ├── createinstancescommand.cpp │ │ │ │ ├── createinstancescommand.h │ │ │ │ ├── createscenecommand.cpp │ │ │ │ ├── createscenecommand.h │ │ │ │ ├── debugoutputcommand.cpp │ │ │ │ ├── debugoutputcommand.h │ │ │ │ ├── endpuppetcommand.cpp │ │ │ │ ├── endpuppetcommand.h │ │ │ │ ├── informationchangedcommand.cpp │ │ │ │ ├── informationchangedcommand.h │ │ │ │ ├── inputeventcommand.cpp │ │ │ │ ├── inputeventcommand.h │ │ │ │ ├── nanotracecommand.cpp │ │ │ │ ├── nanotracecommand.h │ │ │ │ ├── pixmapchangedcommand.cpp │ │ │ │ ├── pixmapchangedcommand.h │ │ │ │ ├── puppetalivecommand.cpp │ │ │ │ ├── puppetalivecommand.h │ │ │ │ ├── puppettocreatorcommand.cpp │ │ │ │ ├── puppettocreatorcommand.h │ │ │ │ ├── removeinstancescommand.cpp │ │ │ │ ├── removeinstancescommand.h │ │ │ │ ├── removepropertiescommand.cpp │ │ │ │ ├── removepropertiescommand.h │ │ │ │ ├── removesharedmemorycommand.cpp │ │ │ │ ├── removesharedmemorycommand.h │ │ │ │ ├── reparentinstancescommand.cpp │ │ │ │ ├── reparentinstancescommand.h │ │ │ │ ├── requestmodelnodepreviewimagecommand.cpp │ │ │ │ ├── requestmodelnodepreviewimagecommand.h │ │ │ │ ├── scenecreatedcommand.h │ │ │ │ ├── statepreviewimagechangedcommand.cpp │ │ │ │ ├── statepreviewimagechangedcommand.h │ │ │ │ ├── synchronizecommand.h │ │ │ │ ├── tokencommand.cpp │ │ │ │ ├── tokencommand.h │ │ │ │ ├── update3dviewstatecommand.cpp │ │ │ │ ├── update3dviewstatecommand.h │ │ │ │ ├── valueschangedcommand.cpp │ │ │ │ ├── valueschangedcommand.h │ │ │ │ ├── view3dactioncommand.cpp │ │ │ │ └── view3dactioncommand.h │ │ │ ├── container/ │ │ │ │ ├── addimportcontainer.cpp │ │ │ │ ├── addimportcontainer.h │ │ │ │ ├── idcontainer.cpp │ │ │ │ ├── idcontainer.h │ │ │ │ ├── imagecontainer.cpp │ │ │ │ ├── imagecontainer.h │ │ │ │ ├── informationcontainer.cpp │ │ │ │ ├── informationcontainer.h │ │ │ │ ├── instancecontainer.cpp │ │ │ │ ├── instancecontainer.h │ │ │ │ ├── mockuptypecontainer.cpp │ │ │ │ ├── mockuptypecontainer.h │ │ │ │ ├── propertyabstractcontainer.cpp │ │ │ │ ├── propertyabstractcontainer.h │ │ │ │ ├── propertybindingcontainer.cpp │ │ │ │ ├── propertybindingcontainer.h │ │ │ │ ├── propertyvaluecontainer.cpp │ │ │ │ ├── propertyvaluecontainer.h │ │ │ │ ├── reparentcontainer.cpp │ │ │ │ ├── reparentcontainer.h │ │ │ │ ├── sharedmemory.h │ │ │ │ ├── sharedmemory_qt.cpp │ │ │ │ └── sharedmemory_unix.cpp │ │ │ ├── interfaces/ │ │ │ │ ├── commondefines.h │ │ │ │ ├── nodeinstanceclientinterface.h │ │ │ │ ├── nodeinstanceglobal.h │ │ │ │ ├── nodeinstanceserverinterface.cpp │ │ │ │ └── nodeinstanceserverinterface.h │ │ │ └── types/ │ │ │ └── enumeration.h │ │ ├── qtcreatorcdbext/ │ │ │ ├── CMakeLists.txt │ │ │ ├── common.cpp │ │ │ ├── common.h │ │ │ ├── containers.cpp │ │ │ ├── containers.h │ │ │ ├── eventcallback.cpp │ │ │ ├── eventcallback.h │ │ │ ├── extensioncontext.cpp │ │ │ ├── extensioncontext.h │ │ │ ├── gdbmihelpers.cpp │ │ │ ├── gdbmihelpers.h │ │ │ ├── iinterfacepointer.h │ │ │ ├── knowntype.h │ │ │ ├── outputcallback.cpp │ │ │ ├── outputcallback.h │ │ │ ├── pycdbextmodule.cpp │ │ │ ├── pycdbextmodule.h │ │ │ ├── pyfield.cpp │ │ │ ├── pyfield.h │ │ │ ├── pystdoutredirect.cpp │ │ │ ├── pystdoutredirect.h │ │ │ ├── pytype.cpp │ │ │ ├── pytype.h │ │ │ ├── pyvalue.cpp │ │ │ ├── pyvalue.h │ │ │ ├── qtcreatorcdbext.def │ │ │ ├── qtcreatorcdbext.qbs │ │ │ ├── qtcreatorcdbextension.cpp │ │ │ ├── stringutils.cpp │ │ │ ├── stringutils.h │ │ │ ├── symbolgroup.cpp │ │ │ ├── symbolgroup.h │ │ │ ├── symbolgroupnode.cpp │ │ │ ├── symbolgroupnode.h │ │ │ ├── symbolgroupvalue.cpp │ │ │ ├── symbolgroupvalue.h │ │ │ ├── test32.bat │ │ │ └── test64.bat │ │ ├── solutions/ │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── solutions.qbs │ │ │ ├── spinner/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── spinner.cpp │ │ │ │ ├── spinner.h │ │ │ │ ├── spinner.qbs │ │ │ │ ├── spinner.qrc │ │ │ │ └── spinner_global.h │ │ │ └── terminal/ │ │ │ ├── CMakeLists.txt │ │ │ ├── celliterator.cpp │ │ │ ├── celliterator.h │ │ │ ├── glyphcache.cpp │ │ │ ├── glyphcache.h │ │ │ ├── keys.cpp │ │ │ ├── keys.h │ │ │ ├── scrollback.cpp │ │ │ ├── scrollback.h │ │ │ ├── surfaceintegration.h │ │ │ ├── terminal.qbs │ │ │ ├── terminal.qrc │ │ │ ├── terminal_global.h │ │ │ ├── terminalsurface.cpp │ │ │ ├── terminalsurface.h │ │ │ ├── terminalview.cpp │ │ │ └── terminalview.h │ │ ├── sqlite/ │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── constraints.h │ │ │ ├── createtablesqlstatementbuilder.h │ │ │ ├── lastchangedrowid.h │ │ │ ├── sourcelocation.h │ │ │ ├── sqlite.qbs │ │ │ ├── sqlite3_fwd.h │ │ │ ├── sqlitealgorithms.h │ │ │ ├── sqlitebasestatement.cpp │ │ │ ├── sqlitebasestatement.h │ │ │ ├── sqliteblob.h │ │ │ ├── sqlitecolumn.h │ │ │ ├── sqlitedatabase.cpp │ │ │ ├── sqlitedatabase.h │ │ │ ├── sqlitedatabasebackend.cpp │ │ │ ├── sqlitedatabasebackend.h │ │ │ ├── sqlitedatabaseinterface.h │ │ │ ├── sqliteexception.cpp │ │ │ ├── sqliteexception.h │ │ │ ├── sqlitefunctionregistry.cpp │ │ │ ├── sqlitefunctionregistry.h │ │ │ ├── sqliteglobal.cpp │ │ │ ├── sqliteglobal.h │ │ │ ├── sqliteids.h │ │ │ ├── sqliteindex.h │ │ │ ├── sqlitelibraryinitializer.cpp │ │ │ ├── sqlitelibraryinitializer.h │ │ │ ├── sqliteprogresshandler.h │ │ │ ├── sqlitereadstatement.h │ │ │ ├── sqlitereadwritestatement.h │ │ │ ├── sqlitesessionchangeset.cpp │ │ │ ├── sqlitesessionchangeset.h │ │ │ ├── sqlitesessions.cpp │ │ │ ├── sqlitesessions.h │ │ │ ├── sqlitetable.h │ │ │ ├── sqlitetimestamp.h │ │ │ ├── sqlitetracing.cpp │ │ │ ├── sqlitetracing.h │ │ │ ├── sqlitetransaction.h │ │ │ ├── sqlitevalue.h │ │ │ ├── sqlitewritestatement.h │ │ │ ├── sqlstatementbuilder.cpp │ │ │ ├── sqlstatementbuilder.h │ │ │ ├── sqlstatementbuilderexception.h │ │ │ └── tableconstraints.h │ │ ├── tracing/ │ │ │ ├── CMakeLists.txt │ │ │ ├── README │ │ │ ├── flamegraph.cpp │ │ │ ├── flamegraph.h │ │ │ ├── flamegraphattached.h │ │ │ ├── qml/ │ │ │ │ ├── ButtonsBar.qml │ │ │ │ ├── CategoryLabel.qml │ │ │ │ ├── Detail.qml │ │ │ │ ├── FlameGraphDelegate.qml │ │ │ │ ├── FlameGraphView.qml │ │ │ │ ├── ImageToolButton.qml │ │ │ │ ├── MainView.qml │ │ │ │ ├── Overview.qml │ │ │ │ ├── RangeDetails.qml │ │ │ │ ├── RangeMover.qml │ │ │ │ ├── RowLabel.qml │ │ │ │ ├── SelectionRange.qml │ │ │ │ ├── SelectionRangeDetails.qml │ │ │ │ ├── TimeDisplay.qml │ │ │ │ ├── TimeMarks.qml │ │ │ │ ├── TimelineContent.qml │ │ │ │ ├── TimelineLabels.qml │ │ │ │ ├── TimelineRulers.qml │ │ │ │ ├── TimelineText.qml │ │ │ │ ├── notes_qt6.frag │ │ │ │ ├── notes_qt6.vert │ │ │ │ ├── timelineitems_qt6.frag │ │ │ │ ├── timelineitems_qt6.vert │ │ │ │ └── tracing.qrc │ │ │ ├── safecastable.h │ │ │ ├── timelineabstractrenderer.cpp │ │ │ ├── timelineabstractrenderer.h │ │ │ ├── timelineformattime.cpp │ │ │ ├── timelineformattime.h │ │ │ ├── timelineitemsrenderpass.cpp │ │ │ ├── timelineitemsrenderpass.h │ │ │ ├── timelinemodel.cpp │ │ │ ├── timelinemodel.h │ │ │ ├── timelinemodel_p.h │ │ │ ├── timelinemodelaggregator.cpp │ │ │ ├── timelinemodelaggregator.h │ │ │ ├── timelinenotesmodel.cpp │ │ │ ├── timelinenotesmodel.h │ │ │ ├── timelinenotesrenderpass.cpp │ │ │ ├── timelinenotesrenderpass.h │ │ │ ├── timelineoverviewrenderer.cpp │ │ │ ├── timelineoverviewrenderer.h │ │ │ ├── timelinerenderer.cpp │ │ │ ├── timelinerenderer.h │ │ │ ├── timelinerenderpass.cpp │ │ │ ├── timelinerenderpass.h │ │ │ ├── timelinerenderstate.cpp │ │ │ ├── timelinerenderstate.h │ │ │ ├── timelineselectionrenderpass.cpp │ │ │ ├── timelineselectionrenderpass.h │ │ │ ├── timelinetheme.cpp │ │ │ ├── timelinetheme.h │ │ │ ├── timelinetracefile.cpp │ │ │ ├── timelinetracefile.h │ │ │ ├── timelinetracemanager.cpp │ │ │ ├── timelinetracemanager.h │ │ │ ├── timelinezoomcontrol.cpp │ │ │ ├── timelinezoomcontrol.h │ │ │ ├── traceevent.h │ │ │ ├── traceeventtype.h │ │ │ ├── tracestashfile.h │ │ │ ├── tracing.qbs │ │ │ ├── tracing_global.h │ │ │ └── tracingtr.h │ │ └── utils/ │ │ ├── CMakeLists.txt │ │ ├── action.cpp │ │ ├── action.h │ │ ├── algorithm.h │ │ ├── ansiescapecodehandler.cpp │ │ ├── ansiescapecodehandler.h │ │ ├── appinfo.cpp │ │ ├── appinfo.h │ │ ├── appmainwindow.cpp │ │ ├── appmainwindow.h │ │ ├── array.h │ │ ├── aspects.cpp │ │ ├── aspects.h │ │ ├── async.cpp │ │ ├── async.h │ │ ├── basetreeview.cpp │ │ ├── basetreeview.h │ │ ├── benchmarker.cpp │ │ ├── benchmarker.h │ │ ├── buildablehelperlibrary.cpp │ │ ├── buildablehelperlibrary.h │ │ ├── builderutils.h │ │ ├── camelcasecursor.cpp │ │ ├── camelcasecursor.h │ │ ├── categorysortfiltermodel.cpp │ │ ├── categorysortfiltermodel.h │ │ ├── changeset.cpp │ │ ├── changeset.h │ │ ├── checkablemessagebox.cpp │ │ ├── checkablemessagebox.h │ │ ├── clangutils.cpp │ │ ├── clangutils.h │ │ ├── classnamevalidatinglineedit.cpp │ │ ├── classnamevalidatinglineedit.h │ │ ├── co_result.h │ │ ├── codegeneration.cpp │ │ ├── codegeneration.h │ │ ├── commandline.cpp │ │ ├── commandline.h │ │ ├── completinglineedit.cpp │ │ ├── completinglineedit.h │ │ ├── completingtextedit.cpp │ │ ├── completingtextedit.h │ │ ├── covariantcallback.h │ │ ├── cpplanguage_details.h │ │ ├── crashreporting.cpp │ │ ├── crashreporting.h │ │ ├── crumblepath.cpp │ │ ├── crumblepath.h │ │ ├── datafromprocess.cpp │ │ ├── datafromprocess.h │ │ ├── delegates.cpp │ │ ├── delegates.h │ │ ├── detailsbutton.cpp │ │ ├── detailsbutton.h │ │ ├── detailswidget.cpp │ │ ├── detailswidget.h │ │ ├── devicefileaccess.cpp │ │ ├── devicefileaccess.h │ │ ├── differ.cpp │ │ ├── differ.h │ │ ├── displayname.cpp │ │ ├── displayname.h │ │ ├── documenttabbar.cpp │ │ ├── documenttabbar.h │ │ ├── dropsupport.cpp │ │ ├── dropsupport.h │ │ ├── elfreader.cpp │ │ ├── elfreader.h │ │ ├── elidinglabel.cpp │ │ ├── elidinglabel.h │ │ ├── environment.cpp │ │ ├── environment.h │ │ ├── environmentdialog.cpp │ │ ├── environmentdialog.h │ │ ├── environmentfwd.h │ │ ├── environmentmodel.cpp │ │ ├── environmentmodel.h │ │ ├── execmenu.cpp │ │ ├── execmenu.h │ │ ├── expected.h │ │ ├── externalterminalprocessimpl.cpp │ │ ├── externalterminalprocessimpl.h │ │ ├── fadingindicator.cpp │ │ ├── fadingindicator.h │ │ ├── faketooltip.cpp │ │ ├── faketooltip.h │ │ ├── fancyiconbutton.cpp │ │ ├── fancyiconbutton.h │ │ ├── fancylineedit.cpp │ │ ├── fancylineedit.h │ │ ├── fancymainwindow.cpp │ │ ├── fancymainwindow.h │ │ ├── filecrumblabel.cpp │ │ ├── filecrumblabel.h │ │ ├── fileinprojectfinder.cpp │ │ ├── fileinprojectfinder.h │ │ ├── filenamevalidatinglineedit.cpp │ │ ├── filenamevalidatinglineedit.h │ │ ├── filepath.cpp │ │ ├── filepath.h │ │ ├── filepathinfo.h │ │ ├── filesearch.cpp │ │ ├── filesearch.h │ │ ├── filestreamer.cpp │ │ ├── filestreamer.h │ │ ├── filestreamermanager.cpp │ │ ├── filestreamermanager.h │ │ ├── filesystemwatcher.cpp │ │ ├── filesystemwatcher.h │ │ ├── fileutils.cpp │ │ ├── fileutils.h │ │ ├── fileutils_mac.h │ │ ├── fileutils_mac.mm │ │ ├── filewizardpage.cpp │ │ ├── filewizardpage.h │ │ ├── fsengine/ │ │ │ ├── diriterator.h │ │ │ ├── fileiconprovider.cpp │ │ │ ├── fileiconprovider.h │ │ │ ├── fileiteratordevicesappender.h │ │ │ ├── filepathinfocache.h │ │ │ ├── fixedlistfsengine.h │ │ │ ├── fsengine.cpp │ │ │ ├── fsengine.h │ │ │ ├── fsenginehandler.cpp │ │ │ └── fsenginehandler.h │ │ ├── futuresynchronizer.cpp │ │ ├── futuresynchronizer.h │ │ ├── fuzzymatcher.cpp │ │ ├── fuzzymatcher.h │ │ ├── genericconstants.h │ │ ├── globalfilechangeblocker.cpp │ │ ├── globalfilechangeblocker.h │ │ ├── globaltasktree.cpp │ │ ├── globaltasktree.h │ │ ├── groupedmodel.cpp │ │ ├── groupedmodel.h │ │ ├── guard.cpp │ │ ├── guard.h │ │ ├── guardedcallback.h │ │ ├── guiutils.cpp │ │ ├── guiutils.h │ │ ├── headerviewstretcher.cpp │ │ ├── headerviewstretcher.h │ │ ├── highlightingitemdelegate.cpp │ │ ├── highlightingitemdelegate.h │ │ ├── historycompleter.cpp │ │ ├── historycompleter.h │ │ ├── hostosinfo.cpp │ │ ├── hostosinfo.h │ │ ├── htmldocextractor.cpp │ │ ├── htmldocextractor.h │ │ ├── icon.cpp │ │ ├── icon.h │ │ ├── icondisplay.cpp │ │ ├── icondisplay.h │ │ ├── id.cpp │ │ ├── id.h │ │ ├── indexedcontainerproxyconstiterator.h │ │ ├── infobar.cpp │ │ ├── infobar.h │ │ ├── infolabel.cpp │ │ ├── infolabel.h │ │ ├── itemviews.cpp │ │ ├── itemviews.h │ │ ├── jsontreeitem.cpp │ │ ├── jsontreeitem.h │ │ ├── layoutbuilder.cpp │ │ ├── layoutbuilder.h │ │ ├── lazy.h │ │ ├── link.cpp │ │ ├── link.h │ │ ├── listmodel.h │ │ ├── listutils.h │ │ ├── lua.cpp │ │ ├── lua.h │ │ ├── macroexpander.cpp │ │ ├── macroexpander.h │ │ ├── markdownbrowser.cpp │ │ ├── markdownbrowser.h │ │ ├── mathutils.cpp │ │ ├── mathutils.h │ │ ├── mimeconstants.h │ │ ├── mimetypes2/ │ │ │ ├── mimedatabase.cpp │ │ │ ├── mimedatabase.h │ │ │ ├── mimedatabase_p.h │ │ │ ├── mimeglobpattern.cpp │ │ │ ├── mimeglobpattern_p.h │ │ │ ├── mimemagicrule.cpp │ │ │ ├── mimemagicrule_p.h │ │ │ ├── mimemagicrulematcher.cpp │ │ │ ├── mimemagicrulematcher_p.h │ │ │ ├── mimeprovider.cpp │ │ │ ├── mimeprovider_p.h │ │ │ ├── mimetype.cpp │ │ │ ├── mimetype.h │ │ │ ├── mimetype_p.h │ │ │ ├── mimetypeparser.cpp │ │ │ ├── mimetypeparser_p.h │ │ │ └── mimeutils.cpp │ │ ├── mimeutils.h │ │ ├── minimizableinfobars.cpp │ │ ├── minimizableinfobars.h │ │ ├── movie.cpp │ │ ├── movie.h │ │ ├── multitextcursor.cpp │ │ ├── multitextcursor.h │ │ ├── namevaluedictionary.cpp │ │ ├── namevaluedictionary.h │ │ ├── namevalueitem.cpp │ │ ├── namevalueitem.h │ │ ├── namevaluesdialog.cpp │ │ ├── namevaluesdialog.h │ │ ├── namevaluevalidator.cpp │ │ ├── namevaluevalidator.h │ │ ├── navigationtreeview.cpp │ │ ├── navigationtreeview.h │ │ ├── networkaccessmanager.cpp │ │ ├── networkaccessmanager.h │ │ ├── optionpushbutton.cpp │ │ ├── optionpushbutton.h │ │ ├── osspecificaspects.cpp │ │ ├── osspecificaspects.h │ │ ├── outputformat.h │ │ ├── outputformatter.cpp │ │ ├── outputformatter.h │ │ ├── overlaywidget.cpp │ │ ├── overlaywidget.h │ │ ├── overloaded.h │ │ ├── overridecursor.cpp │ │ ├── overridecursor.h │ │ ├── passworddialog.cpp │ │ ├── passworddialog.h │ │ ├── pathchooser.cpp │ │ ├── pathchooser.h │ │ ├── pathchooser.mm │ │ ├── pathlisteditor.cpp │ │ ├── pathlisteditor.h │ │ ├── patternvalidator.h │ │ ├── persistentsettings.cpp │ │ ├── persistentsettings.h │ │ ├── plaintextedit/ │ │ │ ├── inputcontrol.cpp │ │ │ ├── inputcontrol.h │ │ │ ├── plaintextedit.cpp │ │ │ ├── plaintextedit.h │ │ │ ├── plaintexteditaccessibility.cpp │ │ │ ├── plaintexteditaccessibility.h │ │ │ ├── texteditorlayout.cpp │ │ │ ├── texteditorlayout.h │ │ │ ├── widgettextcontrol.cpp │ │ │ └── widgettextcontrol.h │ │ ├── pointeralgorithm.h │ │ ├── port.cpp │ │ ├── port.h │ │ ├── portlist.cpp │ │ ├── portlist.h │ │ ├── predicates.h │ │ ├── process_ctrlc_stub.cpp │ │ ├── process_ctrlc_stub.qbs │ │ ├── processenums.h │ │ ├── processhandle.cpp │ │ ├── processhandle.h │ │ ├── processhandle_mac.mm │ │ ├── processhelper.cpp │ │ ├── processhelper.h │ │ ├── processinfo.cpp │ │ ├── processinfo.h │ │ ├── processinterface.cpp │ │ ├── processinterface.h │ │ ├── processreaper.cpp │ │ ├── processreaper.h │ │ ├── progressdialog.cpp │ │ ├── progressdialog.h │ │ ├── progressindicator.cpp │ │ ├── progressindicator.h │ │ ├── projectintropage.cpp │ │ ├── projectintropage.h │ │ ├── proxyaction.cpp │ │ ├── proxyaction.h │ │ ├── qrcparser.cpp │ │ ├── qrcparser.h │ │ ├── qtcassert.cpp │ │ ├── qtcassert.h │ │ ├── qtcolorbutton.cpp │ │ ├── qtcolorbutton.h │ │ ├── qtcprocess.cpp │ │ ├── qtcprocess.h │ │ ├── qtcsettings.cpp │ │ ├── qtcsettings.h │ │ ├── qtcsettings_p.h │ │ ├── qtcwidgets.cpp │ │ ├── qtcwidgets.h │ │ ├── qtdesignsystemstyle.cpp │ │ ├── qtdesignsystemstyle.h │ │ ├── ranges.h │ │ ├── reloadpromptutils.cpp │ │ ├── reloadpromptutils.h │ │ ├── removefiledialog.cpp │ │ ├── removefiledialog.h │ │ ├── result.cpp │ │ ├── result.h │ │ ├── savefile.cpp │ │ ├── savefile.h │ │ ├── scopedswap.h │ │ ├── scopedtimer.cpp │ │ ├── scopedtimer.h │ │ ├── searchresultitem.cpp │ │ ├── searchresultitem.h │ │ ├── set_algorithm.h │ │ ├── settingsaccessor.cpp │ │ ├── settingsaccessor.h │ │ ├── settingsdatabase.cpp │ │ ├── settingsdatabase.h │ │ ├── shutdownguard.cpp │ │ ├── shutdownguard.h │ │ ├── sizedarray.h │ │ ├── smallstring.h │ │ ├── smallstringfwd.h │ │ ├── smallstringio.h │ │ ├── smallstringiterator.h │ │ ├── smallstringlayout.h │ │ ├── smallstringliteral.h │ │ ├── smallstringmemory.h │ │ ├── smallstringvector.h │ │ ├── smallstringview.h │ │ ├── sortfiltermodel.h │ │ ├── span.h │ │ ├── statuslabel.cpp │ │ ├── statuslabel.h │ │ ├── store.cpp │ │ ├── store.h │ │ ├── storekey.h │ │ ├── stringtable.cpp │ │ ├── stringtable.h │ │ ├── stringutils.cpp │ │ ├── stringutils.h │ │ ├── styleanimator.cpp │ │ ├── styleanimator.h │ │ ├── styledbar.cpp │ │ ├── styledbar.h │ │ ├── stylehelper.cpp │ │ ├── stylehelper.h │ │ ├── summarywidget.cpp │ │ ├── summarywidget.h │ │ ├── synchronizedvalue.h │ │ ├── templateengine.cpp │ │ ├── templateengine.h │ │ ├── temporarydirectory.cpp │ │ ├── temporarydirectory.h │ │ ├── temporaryfile.cpp │ │ ├── temporaryfile.h │ │ ├── terminalcommand.cpp │ │ ├── terminalcommand.h │ │ ├── terminalhooks.cpp │ │ ├── terminalhooks.h │ │ ├── terminalinterface.cpp │ │ ├── terminalinterface.h │ │ ├── textcodec.cpp │ │ ├── textcodec.h │ │ ├── textfieldcheckbox.cpp │ │ ├── textfieldcheckbox.h │ │ ├── textfieldcombobox.cpp │ │ ├── textfieldcombobox.h │ │ ├── textfileformat.cpp │ │ ├── textfileformat.h │ │ ├── textutils.cpp │ │ ├── textutils.h │ │ ├── theme/ │ │ │ ├── theme.cpp │ │ │ ├── theme.h │ │ │ ├── theme_mac.h │ │ │ ├── theme_mac.mm │ │ │ └── theme_p.h │ │ ├── tooltip/ │ │ │ ├── effects.h │ │ │ ├── tips.cpp │ │ │ ├── tips.h │ │ │ ├── tooltip.cpp │ │ │ └── tooltip.h │ │ ├── touchbar/ │ │ │ ├── touchbar.cpp │ │ │ ├── touchbar.h │ │ │ ├── touchbar_appdelegate_mac.mm │ │ │ ├── touchbar_appdelegate_mac_p.h │ │ │ ├── touchbar_mac.mm │ │ │ └── touchbar_mac_p.h │ │ ├── transientscroll.cpp │ │ ├── transientscroll.h │ │ ├── treemodel.cpp │ │ ├── treemodel.h │ │ ├── treeviewcombobox.cpp │ │ ├── treeviewcombobox.h │ │ ├── unarchiver.cpp │ │ ├── unarchiver.h │ │ ├── uncommentselection.cpp │ │ ├── uncommentselection.h │ │ ├── uniqueobjectptr.h │ │ ├── url.cpp │ │ ├── url.h │ │ ├── utility.h │ │ ├── utils.qbs │ │ ├── utils.qdoc │ │ ├── utils.qrc │ │ ├── utils_global.h │ │ ├── utilsicons.cpp │ │ ├── utilsicons.h │ │ ├── utilstr.h │ │ ├── utiltypes.h │ │ ├── variablechooser.cpp │ │ ├── variablechooser.h │ │ ├── winutils.cpp │ │ ├── winutils.h │ │ ├── wizard.cpp │ │ ├── wizard.h │ │ ├── wizardpage.cpp │ │ └── wizardpage.h │ ├── plugins/ │ │ ├── CMakeLists.txt │ │ ├── acpclient/ │ │ │ ├── AcpClient.json.in │ │ │ ├── CMakeLists.txt │ │ │ ├── acpchatcontroller.cpp │ │ │ ├── acpchatcontroller.h │ │ │ ├── acpchattab.cpp │ │ │ ├── acpchattab.h │ │ │ ├── acpchatwidget.cpp │ │ │ ├── acpchatwidget.h │ │ │ ├── acpclient.qbs │ │ │ ├── acpclientconstants.h │ │ │ ├── acpclientobject.cpp │ │ │ ├── acpclientobject.h │ │ │ ├── acpclientplugin.cpp │ │ │ ├── acpclienttr.h │ │ │ ├── acpfilesystemhandler.cpp │ │ │ ├── acpfilesystemhandler.h │ │ │ ├── acpinspector.cpp │ │ │ ├── acpinspector.h │ │ │ ├── acpmessageview.cpp │ │ │ ├── acpmessageview.h │ │ │ ├── acppermissionhandler.cpp │ │ │ ├── acppermissionhandler.h │ │ │ ├── acpsettings.cpp │ │ │ ├── acpsettings.h │ │ │ ├── acpstdiotransport.cpp │ │ │ ├── acpstdiotransport.h │ │ │ ├── acpterminalhandler.cpp │ │ │ ├── acpterminalhandler.h │ │ │ ├── acptransport.cpp │ │ │ ├── acptransport.h │ │ │ ├── chatinputedit.cpp │ │ │ ├── chatinputedit.h │ │ │ ├── chatpanel.cpp │ │ │ ├── chatpanel.h │ │ │ ├── collapsibleframe.h │ │ │ ├── toolcalldetailwidget.cpp │ │ │ └── toolcalldetailwidget.h │ │ ├── android/ │ │ │ ├── Android.json.in │ │ │ ├── CMakeLists.txt │ │ │ ├── LICENSE.md │ │ │ ├── android.qbs │ │ │ ├── android_tst.qrc │ │ │ ├── androidbuildapkstep.cpp │ │ │ ├── androidbuildapkstep.h │ │ │ ├── androidconfigurations.cpp │ │ │ ├── androidconfigurations.h │ │ │ ├── androidconstants.h │ │ │ ├── androiddebugsupport.cpp │ │ │ ├── androiddebugsupport.h │ │ │ ├── androiddeployqtstep.cpp │ │ │ ├── androiddeployqtstep.h │ │ │ ├── androiddevice.cpp │ │ │ ├── androiddevice.h │ │ │ ├── androiddeviceinfo.cpp │ │ │ ├── androiddeviceinfo.h │ │ │ ├── androidmanifesteditor.cpp │ │ │ ├── androidmanifesteditor.h │ │ │ ├── androidmanifestutils.cpp │ │ │ ├── androidmanifestutils.h │ │ │ ├── androidpackageinstallationstep.cpp │ │ │ ├── androidpackageinstallationstep.h │ │ │ ├── androidplugin.cpp │ │ │ ├── androidqmltoolingsupport.cpp │ │ │ ├── androidqmltoolingsupport.h │ │ │ ├── androidqtversion.cpp │ │ │ ├── androidqtversion.h │ │ │ ├── androidrunconfiguration.cpp │ │ │ ├── androidrunconfiguration.h │ │ │ ├── androidrunner.cpp │ │ │ ├── androidrunner.h │ │ │ ├── androidrunnerworker.cpp │ │ │ ├── androidrunnerworker.h │ │ │ ├── androidsdkdownloader.cpp │ │ │ ├── androidsdkdownloader.h │ │ │ ├── androidsdkmanager.cpp │ │ │ ├── androidsdkmanager.h │ │ │ ├── androidsdkmanager_test.cpp │ │ │ ├── androidsdkmanager_test.h │ │ │ ├── androidsdkmanagerdialog.cpp │ │ │ ├── androidsdkmanagerdialog.h │ │ │ ├── androidsdkpackage.cpp │ │ │ ├── androidsdkpackage.h │ │ │ ├── androidsettingswidget.cpp │ │ │ ├── androidsettingswidget.h │ │ │ ├── androidtoolchain.cpp │ │ │ ├── androidtoolchain.h │ │ │ ├── androidtoolmenu.cpp │ │ │ ├── androidtoolmenu.h │ │ │ ├── androidtr.h │ │ │ ├── androidutils.cpp │ │ │ ├── androidutils.h │ │ │ ├── avdcreatordialog.cpp │ │ │ ├── avdcreatordialog.h │ │ │ ├── avdmanageroutputparser.cpp │ │ │ ├── avdmanageroutputparser.h │ │ │ ├── iconcontainerwidget.cpp │ │ │ ├── iconcontainerwidget.h │ │ │ ├── javaeditor.cpp │ │ │ ├── javaeditor.h │ │ │ ├── javalanguageserver.cpp │ │ │ ├── javalanguageserver.h │ │ │ ├── javaparser.cpp │ │ │ ├── javaparser.h │ │ │ ├── keystorecertificatedialog.cpp │ │ │ ├── keystorecertificatedialog.h │ │ │ ├── manifestwizard.cpp │ │ │ ├── manifestwizard.h │ │ │ ├── permissionscontainerwidget.cpp │ │ │ ├── permissionscontainerwidget.h │ │ │ ├── plugindescription.md │ │ │ ├── sdkmanageroutputparser.cpp │ │ │ ├── sdkmanageroutputparser.h │ │ │ ├── sdkmanageroutputparser_test.cpp │ │ │ ├── sdkmanageroutputparser_test.h │ │ │ ├── splashscreencontainerwidget.cpp │ │ │ └── splashscreencontainerwidget.h │ │ ├── ant/ │ │ │ ├── Ant.json.in │ │ │ ├── CMakeLists.txt │ │ │ ├── ant.qbs │ │ │ ├── antplugin.cpp │ │ │ ├── antproject.cpp │ │ │ └── antproject.h │ │ ├── appstatisticsmonitor/ │ │ │ ├── AppStatisticsMonitor.json.in │ │ │ ├── CMakeLists.txt │ │ │ ├── appstatisticsmonitor.qbs │ │ │ ├── appstatisticsmonitorplugin.cpp │ │ │ ├── appstatisticsmonitortr.h │ │ │ ├── chart.cpp │ │ │ ├── chart.h │ │ │ ├── idataprovider.cpp │ │ │ ├── idataprovider.h │ │ │ ├── manager.cpp │ │ │ └── manager.h │ │ ├── autotest/ │ │ │ ├── AutoTest.json.in │ │ │ ├── CMakeLists.txt │ │ │ ├── autotest.qbs │ │ │ ├── autotest_global.h │ │ │ ├── autotestconstants.h │ │ │ ├── autotesticons.h │ │ │ ├── autotestplugin.cpp │ │ │ ├── autotestplugin.h │ │ │ ├── autotesttr.h │ │ │ ├── autotestunittests.cpp │ │ │ ├── autotestunittests.h │ │ │ ├── boost/ │ │ │ │ ├── boostcodeparser.cpp │ │ │ │ ├── boostcodeparser.h │ │ │ │ ├── boosttestconfiguration.cpp │ │ │ │ ├── boosttestconfiguration.h │ │ │ │ ├── boosttestconstants.h │ │ │ │ ├── boosttestframework.cpp │ │ │ │ ├── boosttestframework.h │ │ │ │ ├── boosttestoutputreader.cpp │ │ │ │ ├── boosttestoutputreader.h │ │ │ │ ├── boosttestparser.cpp │ │ │ │ ├── boosttestparser.h │ │ │ │ ├── boosttestresult.cpp │ │ │ │ ├── boosttestresult.h │ │ │ │ ├── boosttesttreeitem.cpp │ │ │ │ └── boosttesttreeitem.h │ │ │ ├── catch/ │ │ │ │ ├── catchcodeparser.cpp │ │ │ │ ├── catchcodeparser.h │ │ │ │ ├── catchconfiguration.cpp │ │ │ │ ├── catchconfiguration.h │ │ │ │ ├── catchoutputreader.cpp │ │ │ │ ├── catchoutputreader.h │ │ │ │ ├── catchresult.cpp │ │ │ │ ├── catchresult.h │ │ │ │ ├── catchtestframework.cpp │ │ │ │ ├── catchtestframework.h │ │ │ │ ├── catchtestparser.cpp │ │ │ │ ├── catchtestparser.h │ │ │ │ ├── catchtreeitem.cpp │ │ │ │ └── catchtreeitem.h │ │ │ ├── ctest/ │ │ │ │ ├── ctestconfiguration.cpp │ │ │ │ ├── ctestconfiguration.h │ │ │ │ ├── ctestoutputreader.cpp │ │ │ │ ├── ctestoutputreader.h │ │ │ │ ├── ctesttool.cpp │ │ │ │ ├── ctesttool.h │ │ │ │ ├── ctesttreeitem.cpp │ │ │ │ └── ctesttreeitem.h │ │ │ ├── gtest/ │ │ │ │ ├── gtest_utils.cpp │ │ │ │ ├── gtest_utils.h │ │ │ │ ├── gtestconfiguration.cpp │ │ │ │ ├── gtestconfiguration.h │ │ │ │ ├── gtestconstants.h │ │ │ │ ├── gtestframework.cpp │ │ │ │ ├── gtestframework.h │ │ │ │ ├── gtestoutputreader.cpp │ │ │ │ ├── gtestoutputreader.h │ │ │ │ ├── gtestparser.cpp │ │ │ │ ├── gtestparser.h │ │ │ │ ├── gtestresult.cpp │ │ │ │ ├── gtestresult.h │ │ │ │ ├── gtesttreeitem.cpp │ │ │ │ ├── gtesttreeitem.h │ │ │ │ ├── gtestvisitors.cpp │ │ │ │ └── gtestvisitors.h │ │ │ ├── itemdatacache.h │ │ │ ├── itestframework.cpp │ │ │ ├── itestframework.h │ │ │ ├── itestparser.cpp │ │ │ ├── itestparser.h │ │ │ ├── projectsettingswidget.cpp │ │ │ ├── projectsettingswidget.h │ │ │ ├── qtest/ │ │ │ │ ├── datataglocatorfilter.cpp │ │ │ │ ├── datataglocatorfilter.h │ │ │ │ ├── qttest_utils.cpp │ │ │ │ ├── qttest_utils.h │ │ │ │ ├── qttestconfiguration.cpp │ │ │ │ ├── qttestconfiguration.h │ │ │ │ ├── qttestconstants.h │ │ │ │ ├── qttestframework.cpp │ │ │ │ ├── qttestframework.h │ │ │ │ ├── qttestoutputreader.cpp │ │ │ │ ├── qttestoutputreader.h │ │ │ │ ├── qttestparser.cpp │ │ │ │ ├── qttestparser.h │ │ │ │ ├── qttestresult.cpp │ │ │ │ ├── qttestresult.h │ │ │ │ ├── qttesttreeitem.cpp │ │ │ │ ├── qttesttreeitem.h │ │ │ │ ├── qttestvisitors.cpp │ │ │ │ └── qttestvisitors.h │ │ │ ├── quick/ │ │ │ │ ├── quicktest_utils.cpp │ │ │ │ ├── quicktest_utils.h │ │ │ │ ├── quicktestconfiguration.cpp │ │ │ │ ├── quicktestconfiguration.h │ │ │ │ ├── quicktestframework.cpp │ │ │ │ ├── quicktestframework.h │ │ │ │ ├── quicktestparser.cpp │ │ │ │ ├── quicktestparser.h │ │ │ │ ├── quicktesttreeitem.cpp │ │ │ │ ├── quicktesttreeitem.h │ │ │ │ ├── quicktestvisitors.cpp │ │ │ │ └── quicktestvisitors.h │ │ │ ├── testcodeparser.cpp │ │ │ ├── testcodeparser.h │ │ │ ├── testconfiguration.cpp │ │ │ ├── testconfiguration.h │ │ │ ├── testeditormark.cpp │ │ │ ├── testeditormark.h │ │ │ ├── testframeworkmanager.cpp │ │ │ ├── testframeworkmanager.h │ │ │ ├── testnavigationwidget.cpp │ │ │ ├── testnavigationwidget.h │ │ │ ├── testoutputreader.cpp │ │ │ ├── testoutputreader.h │ │ │ ├── testprojectsettings.cpp │ │ │ ├── testprojectsettings.h │ │ │ ├── testresult.cpp │ │ │ ├── testresult.h │ │ │ ├── testresultdelegate.cpp │ │ │ ├── testresultdelegate.h │ │ │ ├── testresultmodel.cpp │ │ │ ├── testresultmodel.h │ │ │ ├── testresultspane.cpp │ │ │ ├── testresultspane.h │ │ │ ├── testrunconfiguration.h │ │ │ ├── testrunner.cpp │ │ │ ├── testrunner.h │ │ │ ├── testsettings.cpp │ │ │ ├── testsettings.h │ │ │ ├── testtreeitem.cpp │ │ │ ├── testtreeitem.h │ │ │ ├── testtreeitemdelegate.cpp │ │ │ ├── testtreeitemdelegate.h │ │ │ ├── testtreemodel.cpp │ │ │ ├── testtreemodel.h │ │ │ ├── testtreeview.cpp │ │ │ ├── testtreeview.h │ │ │ └── unit_test/ │ │ │ ├── mixed_atp/ │ │ │ │ ├── mixed_atp.pro │ │ │ │ ├── mixed_atp.qbs │ │ │ │ ├── src/ │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── src.pro │ │ │ │ │ └── src.qbs │ │ │ │ └── tests/ │ │ │ │ ├── auto/ │ │ │ │ │ ├── auto.pro │ │ │ │ │ ├── auto.qbs │ │ │ │ │ ├── bench/ │ │ │ │ │ │ ├── bench.pro │ │ │ │ │ │ ├── bench.qbs │ │ │ │ │ │ └── tst_benchtest.cpp │ │ │ │ │ ├── derived/ │ │ │ │ │ │ ├── derived.pro │ │ │ │ │ │ ├── derived.qbs │ │ │ │ │ │ ├── origin.cpp │ │ │ │ │ │ ├── origin.h │ │ │ │ │ │ └── tst_derivedtest.cpp │ │ │ │ │ ├── dummy/ │ │ │ │ │ │ ├── dummy.pro │ │ │ │ │ │ ├── dummy.qbs │ │ │ │ │ │ ├── tst_foo.cpp │ │ │ │ │ │ └── tst_foo.h │ │ │ │ │ ├── gui/ │ │ │ │ │ │ ├── gui.pro │ │ │ │ │ │ ├── gui.qbs │ │ │ │ │ │ └── tst_guitest.cpp │ │ │ │ │ ├── quickauto/ │ │ │ │ │ │ ├── TestDummy.qml │ │ │ │ │ │ ├── bar/ │ │ │ │ │ │ │ └── tst_foo.qml │ │ │ │ │ │ ├── main.cpp │ │ │ │ │ │ ├── notlisted/ │ │ │ │ │ │ │ └── tst_bla.qml │ │ │ │ │ │ ├── quickauto.pro │ │ │ │ │ │ ├── quickauto.qbs │ │ │ │ │ │ ├── tst_test1.qml │ │ │ │ │ │ ├── tst_test2.qml │ │ │ │ │ │ └── tst_test3.qml │ │ │ │ │ ├── quickauto2/ │ │ │ │ │ │ ├── main.cpp │ │ │ │ │ │ ├── quickauto2.pro │ │ │ │ │ │ ├── quickauto2.qbs │ │ │ │ │ │ ├── tst_test1.qml │ │ │ │ │ │ └── tst_test2.qml │ │ │ │ │ └── quickauto3/ │ │ │ │ │ ├── Bar.qml │ │ │ │ │ ├── Foo.qml │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── quickauto3.pro │ │ │ │ │ ├── quickauto3.qbs │ │ │ │ │ ├── tst_test1.qml │ │ │ │ │ └── tst_test2.qml │ │ │ │ ├── tests.pro │ │ │ │ └── tests.qbs │ │ │ ├── plain/ │ │ │ │ ├── plain.pro │ │ │ │ ├── plain.qbs │ │ │ │ └── test_plain/ │ │ │ │ ├── test_plain.pro │ │ │ │ ├── test_plain.qbs │ │ │ │ ├── tst_simple.cpp │ │ │ │ └── tst_simple.h │ │ │ ├── simple_boost/ │ │ │ │ ├── simple_boost.pro │ │ │ │ ├── simple_boost.qbs │ │ │ │ ├── src/ │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── src.pro │ │ │ │ │ └── src.qbs │ │ │ │ └── tests/ │ │ │ │ ├── deco/ │ │ │ │ │ ├── deco.pro │ │ │ │ │ ├── deco.qbs │ │ │ │ │ ├── enab.h │ │ │ │ │ └── main.cpp │ │ │ │ ├── fix/ │ │ │ │ │ ├── fix.cpp │ │ │ │ │ ├── fix.pro │ │ │ │ │ └── fix.qbs │ │ │ │ ├── params/ │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── params.pro │ │ │ │ │ └── params.qbs │ │ │ │ ├── tests.pro │ │ │ │ └── tests.qbs │ │ │ └── simple_gt/ │ │ │ ├── simple_gt.pro │ │ │ ├── simple_gt.qbs │ │ │ ├── src/ │ │ │ │ ├── main.cpp │ │ │ │ ├── src.pro │ │ │ │ └── src.qbs │ │ │ └── tests/ │ │ │ ├── common/ │ │ │ │ └── functions.js │ │ │ ├── gt1/ │ │ │ │ ├── further.cpp │ │ │ │ ├── gt1.pro │ │ │ │ ├── gt1.qbs │ │ │ │ └── main.cpp │ │ │ ├── gt2/ │ │ │ │ ├── gt2.pro │ │ │ │ ├── gt2.qbs │ │ │ │ ├── main.cpp │ │ │ │ └── queuetest.h │ │ │ ├── gt3/ │ │ │ │ ├── dummytest.h │ │ │ │ ├── gt3.pro │ │ │ │ ├── gt3.qbs │ │ │ │ └── main.cpp │ │ │ ├── gtest_dependency.pri │ │ │ ├── tests.pro │ │ │ └── tests.qbs │ │ ├── autotoolsprojectmanager/ │ │ │ ├── AutotoolsProjectManager.json.in │ │ │ ├── CMakeLists.txt │ │ │ ├── autogenstep.cpp │ │ │ ├── autogenstep.h │ │ │ ├── autoreconfstep.cpp │ │ │ ├── autoreconfstep.h │ │ │ ├── autotoolsbuildconfiguration.cpp │ │ │ ├── autotoolsbuildconfiguration.h │ │ │ ├── autotoolsprojectconstants.h │ │ │ ├── autotoolsprojectmanager.qbs │ │ │ ├── autotoolsprojectmanagertr.h │ │ │ ├── autotoolsprojectplugin.cpp │ │ │ ├── configurestep.cpp │ │ │ ├── configurestep.h │ │ │ ├── makefileparser.cpp │ │ │ ├── makefileparser.h │ │ │ ├── makestep.cpp │ │ │ └── makestep.h │ │ ├── axivion/ │ │ │ ├── Axivion.json.in │ │ │ ├── AxivionDescription.md │ │ │ ├── CMakeLists.txt │ │ │ ├── axivion.qbs │ │ │ ├── axivionperspective.cpp │ │ │ ├── axivionperspective.h │ │ │ ├── axivionplugin.cpp │ │ │ ├── axivionplugin.h │ │ │ ├── axivionsettings.cpp │ │ │ ├── axivionsettings.h │ │ │ ├── axiviontextmarks.cpp │ │ │ ├── axiviontextmarks.h │ │ │ ├── axiviontr.h │ │ │ ├── axivionutils.cpp │ │ │ ├── axivionutils.h │ │ │ ├── dashboard/ │ │ │ │ ├── concat.cpp │ │ │ │ ├── concat.h │ │ │ │ ├── dto.cpp │ │ │ │ ├── dto.h │ │ │ │ ├── error.cpp │ │ │ │ └── error.h │ │ │ ├── dynamiclistmodel.cpp │ │ │ ├── dynamiclistmodel.h │ │ │ ├── issueheaderview.cpp │ │ │ ├── issueheaderview.h │ │ │ ├── localbuild.cpp │ │ │ ├── localbuild.h │ │ │ ├── pluginarserver.cpp │ │ │ ├── pluginarserver.h │ │ │ ├── singlefileanalysis.cpp │ │ │ └── singlefileanalysis.h │ │ ├── baremetal/ │ │ │ ├── BareMetal.json.in │ │ │ ├── CMakeLists.txt │ │ │ ├── baremetal.qbs │ │ │ ├── baremetal.qrc │ │ │ ├── baremetalconstants.h │ │ │ ├── baremetaldebugsupport.cpp │ │ │ ├── baremetaldebugsupport.h │ │ │ ├── baremetaldevice.cpp │ │ │ ├── baremetaldevice.h │ │ │ ├── baremetalplugin.cpp │ │ │ ├── baremetalrunconfiguration.cpp │ │ │ ├── baremetalrunconfiguration.h │ │ │ ├── baremetaltr.h │ │ │ ├── debugserverproviderchooser.cpp │ │ │ ├── debugserverproviderchooser.h │ │ │ ├── debugserverprovidermanager.cpp │ │ │ ├── debugserverprovidermanager.h │ │ │ ├── debugserverproviderssettingspage.cpp │ │ │ ├── debugserverproviderssettingspage.h │ │ │ ├── debugservers/ │ │ │ │ ├── gdb/ │ │ │ │ │ ├── eblinkgdbserverprovider.cpp │ │ │ │ │ ├── eblinkgdbserverprovider.h │ │ │ │ │ ├── gdbserverprovider.cpp │ │ │ │ │ ├── gdbserverprovider.h │ │ │ │ │ ├── genericgdbserverprovider.cpp │ │ │ │ │ ├── genericgdbserverprovider.h │ │ │ │ │ ├── jlinkgdbserverprovider.cpp │ │ │ │ │ ├── jlinkgdbserverprovider.h │ │ │ │ │ ├── openocdgdbserverprovider.cpp │ │ │ │ │ ├── openocdgdbserverprovider.h │ │ │ │ │ ├── stlinkutilgdbserverprovider.cpp │ │ │ │ │ └── stlinkutilgdbserverprovider.h │ │ │ │ └── uvsc/ │ │ │ │ ├── jlinkuvscserverprovider.cpp │ │ │ │ ├── jlinkuvscserverprovider.h │ │ │ │ ├── simulatoruvscserverprovider.cpp │ │ │ │ ├── simulatoruvscserverprovider.h │ │ │ │ ├── stlinkuvscserverprovider.cpp │ │ │ │ ├── stlinkuvscserverprovider.h │ │ │ │ ├── uvproject.cpp │ │ │ │ ├── uvproject.h │ │ │ │ ├── uvprojectwriter.cpp │ │ │ │ ├── uvprojectwriter.h │ │ │ │ ├── uvscserverprovider.cpp │ │ │ │ ├── uvscserverprovider.h │ │ │ │ ├── uvtargetdevicemodel.cpp │ │ │ │ ├── uvtargetdevicemodel.h │ │ │ │ ├── uvtargetdeviceselection.cpp │ │ │ │ ├── uvtargetdeviceselection.h │ │ │ │ ├── uvtargetdeviceviewer.cpp │ │ │ │ ├── uvtargetdeviceviewer.h │ │ │ │ ├── uvtargetdrivermodel.cpp │ │ │ │ ├── uvtargetdrivermodel.h │ │ │ │ ├── uvtargetdriverselection.cpp │ │ │ │ ├── uvtargetdriverselection.h │ │ │ │ ├── uvtargetdriverviewer.cpp │ │ │ │ ├── uvtargetdriverviewer.h │ │ │ │ ├── xmlnodevisitor.h │ │ │ │ ├── xmlproject.cpp │ │ │ │ ├── xmlproject.h │ │ │ │ ├── xmlprojectwriter.cpp │ │ │ │ ├── xmlprojectwriter.h │ │ │ │ ├── xmlproperty.cpp │ │ │ │ ├── xmlproperty.h │ │ │ │ ├── xmlpropertygroup.cpp │ │ │ │ └── xmlpropertygroup.h │ │ │ ├── iarewparser.cpp │ │ │ ├── iarewparser.h │ │ │ ├── iarewtoolchain.cpp │ │ │ ├── iarewtoolchain.h │ │ │ ├── idebugserverprovider.cpp │ │ │ ├── idebugserverprovider.h │ │ │ ├── keilparser.cpp │ │ │ ├── keilparser.h │ │ │ ├── keiltoolchain.cpp │ │ │ ├── keiltoolchain.h │ │ │ ├── sdccparser.cpp │ │ │ ├── sdccparser.h │ │ │ ├── sdcctoolchain.cpp │ │ │ └── sdcctoolchain.h │ │ ├── bazaar/ │ │ │ ├── Bazaar.json.in │ │ │ ├── CMakeLists.txt │ │ │ ├── annotationhighlighter.cpp │ │ │ ├── annotationhighlighter.h │ │ │ ├── bazaar.qbs │ │ │ ├── bazaarclient.cpp │ │ │ ├── bazaarclient.h │ │ │ ├── bazaarcommitwidget.cpp │ │ │ ├── bazaarcommitwidget.h │ │ │ ├── bazaareditor.cpp │ │ │ ├── bazaareditor.h │ │ │ ├── bazaarplugin.cpp │ │ │ ├── bazaarsettings.cpp │ │ │ ├── bazaarsettings.h │ │ │ ├── bazaartr.h │ │ │ ├── branchinfo.cpp │ │ │ ├── branchinfo.h │ │ │ ├── commiteditor.cpp │ │ │ ├── commiteditor.h │ │ │ ├── constants.h │ │ │ ├── pullorpushdialog.cpp │ │ │ └── pullorpushdialog.h │ │ ├── beautifier/ │ │ │ ├── Beautifier.json.in │ │ │ ├── CMakeLists.txt │ │ │ ├── artisticstyle/ │ │ │ │ ├── artisticstyle.cpp │ │ │ │ └── artisticstyle.h │ │ │ ├── beautifier.qbs │ │ │ ├── beautifier.qrc │ │ │ ├── beautifierconstants.h │ │ │ ├── beautifierplugin.cpp │ │ │ ├── beautifiertool.cpp │ │ │ ├── beautifiertool.h │ │ │ ├── beautifiertr.h │ │ │ ├── clangformat/ │ │ │ │ ├── clangformat.cpp │ │ │ │ └── clangformat.h │ │ │ ├── configurationdialog.cpp │ │ │ ├── configurationdialog.h │ │ │ ├── configurationeditor.cpp │ │ │ ├── configurationeditor.h │ │ │ ├── configurationpanel.cpp │ │ │ ├── configurationpanel.h │ │ │ ├── generalsettings.cpp │ │ │ ├── generalsettings.h │ │ │ └── uncrustify/ │ │ │ ├── uncrustify.cpp │ │ │ └── uncrustify.h │ │ ├── bineditor/ │ │ │ ├── BinEditor.json.in │ │ │ ├── CMakeLists.txt │ │ │ ├── bineditor.qbs │ │ │ ├── bineditor_global.h │ │ │ ├── bineditorplugin.cpp │ │ │ ├── bineditorservice.h │ │ │ ├── bineditortr.h │ │ │ ├── markup.cpp │ │ │ └── markup.h │ │ ├── boot2qt/ │ │ │ ├── Boot2Qt.json.in │ │ │ ├── CMakeLists.txt │ │ │ ├── boot2qt.qbs │ │ │ ├── device-detection/ │ │ │ │ ├── devicedetector.cpp │ │ │ │ ├── devicedetector.h │ │ │ │ ├── hostmessages.cpp │ │ │ │ ├── hostmessages.h │ │ │ │ ├── qdbdevicetracker.cpp │ │ │ │ ├── qdbdevicetracker.h │ │ │ │ ├── qdbmessagetracker.cpp │ │ │ │ ├── qdbmessagetracker.h │ │ │ │ ├── qdbwatcher.cpp │ │ │ │ └── qdbwatcher.h │ │ │ ├── qdb_global.h │ │ │ ├── qdbconstants.h │ │ │ ├── qdbdevice.cpp │ │ │ ├── qdbdevice.h │ │ │ ├── qdbdevicedebugsupport.cpp │ │ │ ├── qdbdevicedebugsupport.h │ │ │ ├── qdbmakedefaultappstep.cpp │ │ │ ├── qdbmakedefaultappstep.h │ │ │ ├── qdbplugin.cpp │ │ │ ├── qdbqtversion.cpp │ │ │ ├── qdbqtversion.h │ │ │ ├── qdbrunconfiguration.cpp │ │ │ ├── qdbrunconfiguration.h │ │ │ ├── qdbstopapplicationstep.cpp │ │ │ ├── qdbstopapplicationstep.h │ │ │ ├── qdbtr.h │ │ │ ├── qdbutils.cpp │ │ │ └── qdbutils.h │ │ ├── cargo/ │ │ │ ├── CMakeLists.txt │ │ │ ├── Cargo.json.in │ │ │ ├── cargo.qbs │ │ │ ├── cargoplugin.cpp │ │ │ ├── cargoproject.cpp │ │ │ └── cargoproject.h │ │ ├── clangcodemodel/ │ │ │ ├── CMakeLists.txt │ │ │ ├── ClangCodeModel.json.in │ │ │ ├── README │ │ │ ├── clangactivationsequencecontextprocessor.cpp │ │ │ ├── clangactivationsequencecontextprocessor.h │ │ │ ├── clangactivationsequenceprocessor.cpp │ │ │ ├── clangactivationsequenceprocessor.h │ │ │ ├── clangcodemodel.qbs │ │ │ ├── clangcodemodelplugin.cpp │ │ │ ├── clangcodemodeltr.h │ │ │ ├── clangcompletioncontextanalyzer.cpp │ │ │ ├── clangcompletioncontextanalyzer.h │ │ │ ├── clangconstants.h │ │ │ ├── clangdast.cpp │ │ │ ├── clangdast.h │ │ │ ├── clangdclient.cpp │ │ │ ├── clangdclient.h │ │ │ ├── clangdcompletion.cpp │ │ │ ├── clangdcompletion.h │ │ │ ├── clangdfindreferences.cpp │ │ │ ├── clangdfindreferences.h │ │ │ ├── clangdfollowsymbol.cpp │ │ │ ├── clangdfollowsymbol.h │ │ │ ├── clangdiagnostictooltipwidget.cpp │ │ │ ├── clangdiagnostictooltipwidget.h │ │ │ ├── clangdlocatorfilters.cpp │ │ │ ├── clangdlocatorfilters.h │ │ │ ├── clangdmemoryusagewidget.cpp │ │ │ ├── clangdmemoryusagewidget.h │ │ │ ├── clangdqpropertyhighlighter.cpp │ │ │ ├── clangdqpropertyhighlighter.h │ │ │ ├── clangdquickfixes.cpp │ │ │ ├── clangdquickfixes.h │ │ │ ├── clangdsemantichighlighting.cpp │ │ │ ├── clangdsemantichighlighting.h │ │ │ ├── clangdswitchdecldef.cpp │ │ │ ├── clangdswitchdecldef.h │ │ │ ├── clangeditordocumentprocessor.cpp │ │ │ ├── clangeditordocumentprocessor.h │ │ │ ├── clangfixitoperation.cpp │ │ │ ├── clangfixitoperation.h │ │ │ ├── clangmodelmanagersupport.cpp │ │ │ ├── clangmodelmanagersupport.h │ │ │ ├── clangpreprocessorassistproposalitem.cpp │ │ │ ├── clangpreprocessorassistproposalitem.h │ │ │ ├── clangtextmark.cpp │ │ │ ├── clangtextmark.h │ │ │ ├── clangutils.cpp │ │ │ ├── clangutils.h │ │ │ ├── moc/ │ │ │ │ ├── keywords.cpp │ │ │ │ ├── parser.cpp │ │ │ │ ├── parser.h │ │ │ │ ├── ppkeywords.cpp │ │ │ │ ├── preprocessor.cpp │ │ │ │ ├── preprocessor.h │ │ │ │ ├── symbols.h │ │ │ │ ├── token.cpp │ │ │ │ ├── token.h │ │ │ │ └── utils.h │ │ │ ├── tasktimers.cpp │ │ │ ├── tasktimers.h │ │ │ └── test/ │ │ │ ├── .gitattributes │ │ │ ├── activationsequenceprocessortest.cpp │ │ │ ├── activationsequenceprocessortest.h │ │ │ ├── clangdtests.cpp │ │ │ ├── clangdtests.h │ │ │ ├── clangfixittest.cpp │ │ │ ├── clangfixittest.h │ │ │ └── data/ │ │ │ ├── clangtestdata.qrc │ │ │ ├── completion/ │ │ │ │ ├── classAndConstructorCompletion.cpp │ │ │ │ ├── completion.pro │ │ │ │ ├── completionWithProject.cpp │ │ │ │ ├── constructorCompletion.cpp │ │ │ │ ├── dotToArrowCorrection.cpp │ │ │ │ ├── exampleIncludeDir/ │ │ │ │ │ ├── file.h │ │ │ │ │ ├── mylib/ │ │ │ │ │ │ └── mylib.h │ │ │ │ │ └── otherFile.h │ │ │ │ ├── functionAddress.cpp │ │ │ │ ├── functionCompletion.cpp │ │ │ │ ├── functionCompletionFiltered.cpp │ │ │ │ ├── functionCompletionFiltered2.cpp │ │ │ │ ├── globalCompletion.cpp │ │ │ │ ├── includeDirectiveCompletion.cpp │ │ │ │ ├── main.cpp │ │ │ │ ├── mainwindow.cpp │ │ │ │ ├── mainwindow.h │ │ │ │ ├── mainwindow.ui │ │ │ │ ├── memberCompletion.cpp │ │ │ │ ├── membercompletion-friend.cpp │ │ │ │ ├── membercompletion-inside.cpp │ │ │ │ ├── membercompletion-outside.cpp │ │ │ │ ├── noDotToArrowCorrectionForFloats.cpp │ │ │ │ ├── preprocessorKeywordsCompletion.cpp │ │ │ │ ├── preprocessorKeywordsCompletion2.cpp │ │ │ │ ├── preprocessorKeywordsCompletion3.cpp │ │ │ │ ├── privateFuncDefCompletion.cpp │ │ │ │ └── signalCompletion.cpp │ │ │ ├── find-usages/ │ │ │ │ ├── defs.h │ │ │ │ ├── find-usages.pro │ │ │ │ └── main.cpp │ │ │ ├── fixits/ │ │ │ │ ├── diagnostic_comparison_fixit.cpp │ │ │ │ ├── diagnostic_comparison_fixit_expected1.cpp │ │ │ │ ├── diagnostic_comparison_fixit_expected2.cpp │ │ │ │ ├── diagnostic_semicolon_fixit.cpp │ │ │ │ └── diagnostic_semicolon_fixit_expected.cpp │ │ │ ├── follow-symbol/ │ │ │ │ ├── cursor.cpp │ │ │ │ ├── cursor.h │ │ │ │ ├── follow-symbol.pro │ │ │ │ ├── header.h │ │ │ │ └── main.cpp │ │ │ ├── highlighting/ │ │ │ │ ├── highlighting.cpp │ │ │ │ ├── highlighting.pro │ │ │ │ └── highlightingmarks.h │ │ │ ├── indirect-changes/ │ │ │ │ ├── directheader.h │ │ │ │ ├── indirect-changes.pro │ │ │ │ ├── indirectheader.h │ │ │ │ ├── main.cpp │ │ │ │ └── unrelatedheader.h │ │ │ ├── local-references/ │ │ │ │ ├── local-references.pro │ │ │ │ └── references.cpp │ │ │ ├── myheader.h │ │ │ ├── mysource.cpp │ │ │ ├── objc_messages_1.mm │ │ │ ├── objc_messages_2.mm │ │ │ ├── objc_messages_3.mm │ │ │ ├── qt-widgets-app/ │ │ │ │ ├── main.cpp │ │ │ │ ├── mainwindow.cpp │ │ │ │ ├── mainwindow.h │ │ │ │ ├── mainwindow.ui │ │ │ │ └── qt-widgets-app.pro │ │ │ └── tooltips/ │ │ │ ├── main.cpp │ │ │ ├── subdir/ │ │ │ │ └── tooltipinfo.h │ │ │ ├── tooltipfromindex.cpp │ │ │ ├── tooltipfromindex.h │ │ │ ├── tooltips.cpp │ │ │ └── tooltips.pro │ │ ├── clangformat/ │ │ │ ├── CMakeLists.txt │ │ │ ├── ClangFormat.json.in │ │ │ ├── clangformat.qbs │ │ │ ├── clangformatbaseindenter.cpp │ │ │ ├── clangformatbaseindenter.h │ │ │ ├── clangformatcodestylepreferencesfactory.cpp │ │ │ ├── clangformatcodestylepreferencesfactory.h │ │ │ ├── clangformatconfigwidget.cpp │ │ │ ├── clangformatconfigwidget.h │ │ │ ├── clangformatconstants.h │ │ │ ├── clangformatfile.cpp │ │ │ ├── clangformatfile.h │ │ │ ├── clangformatglobalconfigwidget.cpp │ │ │ ├── clangformatglobalconfigwidget.h │ │ │ ├── clangformatindenter.cpp │ │ │ ├── clangformatindenter.h │ │ │ ├── clangformatplugin.cpp │ │ │ ├── clangformatsettings.cpp │ │ │ ├── clangformatsettings.h │ │ │ ├── clangformattr.h │ │ │ ├── clangformatutils.cpp │ │ │ ├── clangformatutils.h │ │ │ ├── llvmfilesystem.h │ │ │ └── tests/ │ │ │ ├── clangformat-test.cpp │ │ │ ├── clangformat-test.h │ │ │ └── data/ │ │ │ └── .clang-format │ │ ├── clangtools/ │ │ │ ├── CMakeLists.txt │ │ │ ├── ClangTools.json.in │ │ │ ├── clangfileinfo.h │ │ │ ├── clangselectablefilesdialog.cpp │ │ │ ├── clangselectablefilesdialog.h │ │ │ ├── clangtool.cpp │ │ │ ├── clangtool.h │ │ │ ├── clangtoolrunner.cpp │ │ │ ├── clangtoolrunner.h │ │ │ ├── clangtools.qbs │ │ │ ├── clangtools_global.h │ │ │ ├── clangtoolscompilationdb.cpp │ │ │ ├── clangtoolscompilationdb.h │ │ │ ├── clangtoolsconstants.h │ │ │ ├── clangtoolsdiagnostic.cpp │ │ │ ├── clangtoolsdiagnostic.h │ │ │ ├── clangtoolsdiagnosticmodel.cpp │ │ │ ├── clangtoolsdiagnosticmodel.h │ │ │ ├── clangtoolsdiagnosticview.cpp │ │ │ ├── clangtoolsdiagnosticview.h │ │ │ ├── clangtoolslogfilereader.cpp │ │ │ ├── clangtoolslogfilereader.h │ │ │ ├── clangtoolsplugin.cpp │ │ │ ├── clangtoolspreconfiguredsessiontests.cpp │ │ │ ├── clangtoolspreconfiguredsessiontests.h │ │ │ ├── clangtoolsprojectsettings.cpp │ │ │ ├── clangtoolsprojectsettings.h │ │ │ ├── clangtoolsprojectsettingswidget.cpp │ │ │ ├── clangtoolsprojectsettingswidget.h │ │ │ ├── clangtoolssettings.cpp │ │ │ ├── clangtoolssettings.h │ │ │ ├── clangtoolstr.h │ │ │ ├── clangtoolsunittests.cpp │ │ │ ├── clangtoolsunittests.h │ │ │ ├── clangtoolsunittests.qrc │ │ │ ├── clangtoolsutils.cpp │ │ │ ├── clangtoolsutils.h │ │ │ ├── diagnosticconfigswidget.cpp │ │ │ ├── diagnosticconfigswidget.h │ │ │ ├── diagnosticmark.cpp │ │ │ ├── diagnosticmark.h │ │ │ ├── documentclangtoolrunner.cpp │ │ │ ├── documentclangtoolrunner.h │ │ │ ├── documentquickfixfactory.cpp │ │ │ ├── documentquickfixfactory.h │ │ │ ├── executableinfo.cpp │ │ │ ├── executableinfo.h │ │ │ ├── filterdialog.cpp │ │ │ ├── filterdialog.h │ │ │ ├── inlinesuppresseddiagnostics.cpp │ │ │ ├── inlinesuppresseddiagnostics.h │ │ │ ├── readexporteddiagnosticstest.cpp │ │ │ ├── readexporteddiagnosticstest.h │ │ │ ├── runsettingswidget.cpp │ │ │ ├── runsettingswidget.h │ │ │ ├── unit-tests/ │ │ │ │ ├── clangtidy_clazy/ │ │ │ │ │ ├── clangtidy_clazy.pro │ │ │ │ │ ├── clazy_example.cpp │ │ │ │ │ └── tidy_example.cpp │ │ │ │ ├── exported-diagnostics/ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── clang-analyzer.dividezero.cpp │ │ │ │ │ ├── clang-analyzer.dividezero.yaml │ │ │ │ │ ├── clang-analyzer.dividezero_win.yaml │ │ │ │ │ ├── clazy.qgetenv.cpp │ │ │ │ │ ├── clazy.qgetenv.yaml │ │ │ │ │ ├── clazy.qgetenv_win.yaml │ │ │ │ │ ├── empty.yaml │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── tidy.modernize-use-nullptr.cpp │ │ │ │ │ ├── tidy.modernize-use-nullptr.yaml │ │ │ │ │ └── tidy.modernize-use-nullptr_win.yaml │ │ │ │ ├── mingw-includes/ │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── mingw-includes.pro │ │ │ │ │ └── mingw-includes.qbs │ │ │ │ ├── qt-essential-includes/ │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── qt-essential-includes.pro │ │ │ │ │ └── qt-essential-includes.qbs │ │ │ │ ├── qt-widgets-app/ │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── mainwindow.cpp │ │ │ │ │ ├── mainwindow.h │ │ │ │ │ ├── mainwindow.ui │ │ │ │ │ ├── qt-widgets-app.pro │ │ │ │ │ └── qt-widgets-app.qbs │ │ │ │ ├── simple/ │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── simple.pro │ │ │ │ │ └── simple.qbs │ │ │ │ ├── simple-library/ │ │ │ │ │ ├── simple-library.cpp │ │ │ │ │ ├── simple-library.h │ │ │ │ │ ├── simple-library.pro │ │ │ │ │ └── simple-library.qbs │ │ │ │ └── stdc++11-includes/ │ │ │ │ ├── main.cpp │ │ │ │ ├── stdc++11-includes.pro │ │ │ │ └── stdc++11-includes.qbs │ │ │ ├── virtualfilesystemoverlay.cpp │ │ │ └── virtualfilesystemoverlay.h │ │ ├── classview/ │ │ │ ├── CMakeLists.txt │ │ │ ├── ClassView.json.in │ │ │ ├── classview.qbs │ │ │ ├── classviewconstants.h │ │ │ ├── classviewmanager.cpp │ │ │ ├── classviewmanager.h │ │ │ ├── classviewnavigationwidget.cpp │ │ │ ├── classviewnavigationwidget.h │ │ │ ├── classviewnavigationwidgetfactory.cpp │ │ │ ├── classviewnavigationwidgetfactory.h │ │ │ ├── classviewparser.cpp │ │ │ ├── classviewparser.h │ │ │ ├── classviewparsertreeitem.cpp │ │ │ ├── classviewparsertreeitem.h │ │ │ ├── classviewplugin.cpp │ │ │ ├── classviewsymbolinformation.cpp │ │ │ ├── classviewsymbolinformation.h │ │ │ ├── classviewsymbollocation.cpp │ │ │ ├── classviewsymbollocation.h │ │ │ ├── classviewtr.h │ │ │ ├── classviewtreeitemmodel.cpp │ │ │ ├── classviewtreeitemmodel.h │ │ │ ├── classviewutils.cpp │ │ │ └── classviewutils.h │ │ ├── clearcase/ │ │ │ ├── CMakeLists.txt │ │ │ ├── ClearCase.json.in │ │ │ ├── activityselector.cpp │ │ │ ├── activityselector.h │ │ │ ├── annotationhighlighter.cpp │ │ │ ├── annotationhighlighter.h │ │ │ ├── checkoutdialog.cpp │ │ │ ├── checkoutdialog.h │ │ │ ├── clearcase.qbs │ │ │ ├── clearcaseconstants.h │ │ │ ├── clearcaseeditor.cpp │ │ │ ├── clearcaseeditor.h │ │ │ ├── clearcaseplugin.cpp │ │ │ ├── clearcaseplugin.h │ │ │ ├── clearcasesettings.cpp │ │ │ ├── clearcasesettings.h │ │ │ ├── clearcasesubmiteditor.cpp │ │ │ ├── clearcasesubmiteditor.h │ │ │ ├── clearcasesubmiteditorwidget.cpp │ │ │ ├── clearcasesubmiteditorwidget.h │ │ │ ├── clearcasesync.cpp │ │ │ ├── clearcasesync.h │ │ │ ├── clearcasetr.h │ │ │ ├── settingspage.cpp │ │ │ ├── settingspage.h │ │ │ ├── versionselector.cpp │ │ │ └── versionselector.h │ │ ├── cmakeprojectmanager/ │ │ │ ├── 3rdparty/ │ │ │ │ ├── cmake/ │ │ │ │ │ ├── Copyright.txt │ │ │ │ │ ├── README.md │ │ │ │ │ ├── cmListFileCache.cxx │ │ │ │ │ ├── cmListFileCache.h │ │ │ │ │ ├── cmListFileLexer.cxx │ │ │ │ │ ├── cmListFileLexer.h │ │ │ │ │ ├── cmListFileLexer.in.l │ │ │ │ │ └── cmStandardLexer.h │ │ │ │ └── rstparser/ │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.qt │ │ │ │ ├── README.rst │ │ │ │ ├── rstparser-test.cc │ │ │ │ ├── rstparser.cc │ │ │ │ └── rstparser.h │ │ │ ├── CMakeLists.txt │ │ │ ├── CMakeProjectManager.json.in │ │ │ ├── builddirparameters.cpp │ │ │ ├── builddirparameters.h │ │ │ ├── cmake_global.h │ │ │ ├── cmakeabstractprocessstep.cpp │ │ │ ├── cmakeabstractprocessstep.h │ │ │ ├── cmakeautocompleter.cpp │ │ │ ├── cmakeautocompleter.h │ │ │ ├── cmakeautogenparser.cpp │ │ │ ├── cmakeautogenparser.h │ │ │ ├── cmakebuildconfiguration.cpp │ │ │ ├── cmakebuildconfiguration.h │ │ │ ├── cmakebuildstep.cpp │ │ │ ├── cmakebuildstep.h │ │ │ ├── cmakebuildsystem.cpp │ │ │ ├── cmakebuildsystem.h │ │ │ ├── cmakebuildsystem.md │ │ │ ├── cmakebuildtarget.h │ │ │ ├── cmakeconfigitem.cpp │ │ │ ├── cmakeconfigitem.h │ │ │ ├── cmakeeditor.cpp │ │ │ ├── cmakeeditor.h │ │ │ ├── cmakefilecompletionassist.cpp │ │ │ ├── cmakefilecompletionassist.h │ │ │ ├── cmakeformatter.cpp │ │ │ ├── cmakeformatter.h │ │ │ ├── cmakeindenter.cpp │ │ │ ├── cmakeindenter.h │ │ │ ├── cmakeinstallstep.cpp │ │ │ ├── cmakeinstallstep.h │ │ │ ├── cmakekitaspect.cpp │ │ │ ├── cmakekitaspect.h │ │ │ ├── cmakelocatorfilter.cpp │ │ │ ├── cmakelocatorfilter.h │ │ │ ├── cmakeoutputparser.cpp │ │ │ ├── cmakeoutputparser.h │ │ │ ├── cmakeprocess.cpp │ │ │ ├── cmakeprocess.h │ │ │ ├── cmakeproject.cpp │ │ │ ├── cmakeproject.h │ │ │ ├── cmakeproject.qrc │ │ │ ├── cmakeprojectconstants.h │ │ │ ├── cmakeprojectimporter.cpp │ │ │ ├── cmakeprojectimporter.h │ │ │ ├── cmakeprojectmanager.cpp │ │ │ ├── cmakeprojectmanager.h │ │ │ ├── cmakeprojectmanager.qbs │ │ │ ├── cmakeprojectmanagertr.h │ │ │ ├── cmakeprojectnodes.cpp │ │ │ ├── cmakeprojectnodes.h │ │ │ ├── cmakeprojectplugin.cpp │ │ │ ├── cmakesettingspage.cpp │ │ │ ├── cmakesettingspage.h │ │ │ ├── cmakespecificsettings.cpp │ │ │ ├── cmakespecificsettings.h │ │ │ ├── cmaketool.cpp │ │ │ ├── cmaketool.h │ │ │ ├── cmaketoolmanager.cpp │ │ │ ├── cmaketoolmanager.h │ │ │ ├── cmaketoolsettingsaccessor.cpp │ │ │ ├── cmaketoolsettingsaccessor.h │ │ │ ├── configmodel.cpp │ │ │ ├── configmodel.h │ │ │ ├── configmodelitemdelegate.cpp │ │ │ ├── configmodelitemdelegate.h │ │ │ ├── fileapidataextractor.cpp │ │ │ ├── fileapidataextractor.h │ │ │ ├── fileapiparser.cpp │ │ │ ├── fileapiparser.h │ │ │ ├── fileapireader.cpp │ │ │ ├── fileapireader.h │ │ │ ├── presetsmacros.cpp │ │ │ ├── presetsmacros.h │ │ │ ├── presetsparser.cpp │ │ │ ├── presetsparser.h │ │ │ ├── projecttreehelper.cpp │ │ │ ├── projecttreehelper.h │ │ │ ├── targethelper.cpp │ │ │ ├── targethelper.h │ │ │ ├── testcases/ │ │ │ │ └── adddependencies/ │ │ │ │ ├── existing_qt5.cmake │ │ │ │ ├── existing_qt5_and_qt6.cmake │ │ │ │ ├── existing_qt5_and_qt6_expected.cmake │ │ │ │ ├── existing_qt5_expected.cmake │ │ │ │ ├── existing_qt6.cmake │ │ │ │ ├── existing_qt6_expected.cmake │ │ │ │ ├── no_qt6.cmake │ │ │ │ └── no_qt6_expected.cmake │ │ │ ├── testpresetshelper.cpp │ │ │ ├── testpresetshelper.h │ │ │ └── tests/ │ │ │ └── tst_cmake_test_presets.cpp │ │ ├── coco/ │ │ │ ├── CMakeLists.txt │ │ │ ├── Coco.json.in │ │ │ ├── buildsettings.cpp │ │ │ ├── buildsettings.h │ │ │ ├── cmakemodificationfile.cpp │ │ │ ├── cmakemodificationfile.h │ │ │ ├── coco.qbs │ │ │ ├── cocobuildstep.cpp │ │ │ ├── cocobuildstep.h │ │ │ ├── cococommon.cpp │ │ │ ├── cococommon.h │ │ │ ├── cocolanguageclient.cpp │ │ │ ├── cocolanguageclient.h │ │ │ ├── cocoplugin.cpp │ │ │ ├── cocoplugin.qrc │ │ │ ├── cocoplugin_global.h │ │ │ ├── cocopluginconstants.h │ │ │ ├── cocoprojectwidget.cpp │ │ │ ├── cocoprojectwidget.h │ │ │ ├── cocotr.h │ │ │ ├── files/ │ │ │ │ ├── cocoplugin-clang.cmake │ │ │ │ ├── cocoplugin-gcc.cmake │ │ │ │ ├── cocoplugin-visualstudio.cmake │ │ │ │ ├── cocoplugin.cmake │ │ │ │ └── cocoplugin.prf │ │ │ ├── globalsettings.cpp │ │ │ ├── globalsettings.h │ │ │ ├── modificationfile.cpp │ │ │ ├── modificationfile.h │ │ │ ├── qmakefeaturefile.cpp │ │ │ └── qmakefeaturefile.h │ │ ├── compilationdatabaseprojectmanager/ │ │ │ ├── CMakeLists.txt │ │ │ ├── CompilationDatabaseProjectManager.json.in │ │ │ ├── compilationdatabaseconstants.h │ │ │ ├── compilationdatabaseproject.cpp │ │ │ ├── compilationdatabaseproject.h │ │ │ ├── compilationdatabaseprojectmanager.qbs │ │ │ ├── compilationdatabaseprojectmanagerplugin.cpp │ │ │ ├── compilationdatabaseprojectmanagertr.h │ │ │ ├── compilationdatabasetests.cpp │ │ │ ├── compilationdatabasetests.h │ │ │ ├── compilationdatabasetests.qrc │ │ │ ├── compilationdatabaseutils.cpp │ │ │ ├── compilationdatabaseutils.h │ │ │ ├── compilationdbparser.cpp │ │ │ └── compilationdbparser.h │ │ ├── compilerexplorer/ │ │ │ ├── CMakeLists.txt │ │ │ ├── CompilerExplorer.json.in │ │ │ ├── api/ │ │ │ │ ├── compile.cpp │ │ │ │ ├── compile.h │ │ │ │ ├── compiler.cpp │ │ │ │ ├── compiler.h │ │ │ │ ├── compilerexplorerapi.h │ │ │ │ ├── config.h │ │ │ │ ├── language.cpp │ │ │ │ ├── language.h │ │ │ │ ├── library.cpp │ │ │ │ ├── library.h │ │ │ │ └── request.h │ │ │ ├── compilerexplorer.qbs │ │ │ ├── compilerexplorer.qrc │ │ │ ├── compilerexploreraspects.cpp │ │ │ ├── compilerexploreraspects.h │ │ │ ├── compilerexplorerconstants.h │ │ │ ├── compilerexplorereditor.cpp │ │ │ ├── compilerexplorereditor.h │ │ │ ├── compilerexploreroptions.cpp │ │ │ ├── compilerexploreroptions.h │ │ │ ├── compilerexplorerplugin.cpp │ │ │ ├── compilerexplorersettings.cpp │ │ │ ├── compilerexplorersettings.h │ │ │ ├── compilerexplorertr.h │ │ │ ├── logos/ │ │ │ │ └── logos.qrc │ │ │ ├── test.rest │ │ │ └── wizard/ │ │ │ ├── cpp/ │ │ │ │ ├── file.qtce │ │ │ │ └── wizard.json │ │ │ ├── python/ │ │ │ │ ├── file.qtce │ │ │ │ └── wizard.json │ │ │ └── qtcpp/ │ │ │ ├── file.qtce │ │ │ └── wizard.json │ │ ├── conan/ │ │ │ ├── CMakeLists.txt │ │ │ ├── Conan.json.in │ │ │ ├── conan.qbs │ │ │ ├── conanconstants.h │ │ │ ├── conaninstallstep.cpp │ │ │ ├── conaninstallstep.h │ │ │ ├── conanplugin.cpp │ │ │ ├── conansettings.cpp │ │ │ ├── conansettings.h │ │ │ └── conantr.h │ │ ├── copilot/ │ │ │ ├── CMakeLists.txt │ │ │ ├── Copilot.json.in │ │ │ ├── Description.md │ │ │ ├── authwidget.cpp │ │ │ ├── authwidget.h │ │ │ ├── copilot.qbs │ │ │ ├── copilot.qrc │ │ │ ├── copilotclient.cpp │ │ │ ├── copilotclient.h │ │ │ ├── copilotconstants.h │ │ │ ├── copiloticons.h │ │ │ ├── copilotplugin.cpp │ │ │ ├── copilotprojectpanel.cpp │ │ │ ├── copilotprojectpanel.h │ │ │ ├── copilotsettings.cpp │ │ │ ├── copilotsettings.h │ │ │ ├── copilottr.h │ │ │ ├── requests/ │ │ │ │ ├── checkstatus.h │ │ │ │ ├── getcompletions.h │ │ │ │ ├── seteditorinfo.h │ │ │ │ ├── signinconfirm.h │ │ │ │ ├── signininitiate.h │ │ │ │ └── signout.h │ │ │ └── tests/ │ │ │ └── proxy/ │ │ │ ├── Dockerfile │ │ │ ├── buildandrun.sh │ │ │ ├── noauth.conf │ │ │ ├── run.sh │ │ │ └── userauth.conf │ │ ├── coreplugin/ │ │ │ ├── CMakeLists.txt │ │ │ ├── Core.json.in │ │ │ ├── actionmanager/ │ │ │ │ ├── actioncontainer.cpp │ │ │ │ ├── actioncontainer.h │ │ │ │ ├── actioncontainer_p.h │ │ │ │ ├── actionmanager.cpp │ │ │ │ ├── actionmanager.h │ │ │ │ ├── actionmanager_p.h │ │ │ │ ├── command.cpp │ │ │ │ ├── command.h │ │ │ │ ├── command_p.h │ │ │ │ ├── commandmappings.cpp │ │ │ │ └── commandmappings.h │ │ │ ├── actionsfilter.cpp │ │ │ ├── actionsfilter.h │ │ │ ├── basefilewizard.cpp │ │ │ ├── basefilewizard.h │ │ │ ├── basefilewizardfactory.cpp │ │ │ ├── basefilewizardfactory.h │ │ │ ├── core.qrc │ │ │ ├── core_global.h │ │ │ ├── coreconstants.h │ │ │ ├── coreicons.cpp │ │ │ ├── coreicons.h │ │ │ ├── corejsextensions.cpp │ │ │ ├── corejsextensions.h │ │ │ ├── coreplugin.cpp │ │ │ ├── coreplugin.h │ │ │ ├── coreplugin.qbs │ │ │ ├── coreplugintr.h │ │ │ ├── credentialquery.cpp │ │ │ ├── credentialquery.h │ │ │ ├── customlanguagemodels.cpp │ │ │ ├── customlanguagemodels.h │ │ │ ├── designmode.cpp │ │ │ ├── designmode.h │ │ │ ├── dialogs/ │ │ │ │ ├── codecselector.cpp │ │ │ │ ├── codecselector.h │ │ │ │ ├── externaltoolconfig.cpp │ │ │ │ ├── externaltoolconfig.h │ │ │ │ ├── filepropertiesdialog.cpp │ │ │ │ ├── filepropertiesdialog.h │ │ │ │ ├── ioptionspage.cpp │ │ │ │ ├── ioptionspage.h │ │ │ │ ├── newdialog.cpp │ │ │ │ ├── newdialog.h │ │ │ │ ├── openwithdialog.cpp │ │ │ │ ├── openwithdialog.h │ │ │ │ ├── promptoverwritedialog.cpp │ │ │ │ ├── promptoverwritedialog.h │ │ │ │ ├── readonlyfilesdialog.cpp │ │ │ │ ├── readonlyfilesdialog.h │ │ │ │ ├── saveitemsdialog.cpp │ │ │ │ ├── saveitemsdialog.h │ │ │ │ ├── shortcutsettings.cpp │ │ │ │ └── shortcutsettings.h │ │ │ ├── diffservice.cpp │ │ │ ├── diffservice.h │ │ │ ├── documentmanager.cpp │ │ │ ├── documentmanager.h │ │ │ ├── editmode.cpp │ │ │ ├── editmode.h │ │ │ ├── editormanager/ │ │ │ │ ├── documentmodel.cpp │ │ │ │ ├── documentmodel.h │ │ │ │ ├── documentmodel_p.h │ │ │ │ ├── editorarea.cpp │ │ │ │ ├── editorarea.h │ │ │ │ ├── editormanager.cpp │ │ │ │ ├── editormanager.h │ │ │ │ ├── editormanager_p.h │ │ │ │ ├── editormanager_test.cpp │ │ │ │ ├── editorview.cpp │ │ │ │ ├── editorview.h │ │ │ │ ├── editorwindow.cpp │ │ │ │ ├── editorwindow.h │ │ │ │ ├── ieditor.cpp │ │ │ │ ├── ieditor.h │ │ │ │ ├── ieditorfactory.cpp │ │ │ │ ├── ieditorfactory.h │ │ │ │ ├── ieditorfactory_p.h │ │ │ │ ├── openeditorsview.cpp │ │ │ │ ├── openeditorsview.h │ │ │ │ ├── openeditorswindow.cpp │ │ │ │ ├── openeditorswindow.h │ │ │ │ ├── systemeditor.cpp │ │ │ │ └── systemeditor.h │ │ │ ├── editortoolbar.cpp │ │ │ ├── editortoolbar.h │ │ │ ├── envvarseparatoraspect.cpp │ │ │ ├── envvarseparatoraspect.h │ │ │ ├── externaltool.cpp │ │ │ ├── externaltool.h │ │ │ ├── externaltoolmanager.cpp │ │ │ ├── externaltoolmanager.h │ │ │ ├── fancyactionbar.cpp │ │ │ ├── fancyactionbar.h │ │ │ ├── fancyactionbar.qrc │ │ │ ├── fancytabwidget.cpp │ │ │ ├── fancytabwidget.h │ │ │ ├── featureprovider.cpp │ │ │ ├── featureprovider.h │ │ │ ├── fileutils.cpp │ │ │ ├── fileutils.h │ │ │ ├── find/ │ │ │ │ ├── basetextfind.cpp │ │ │ │ ├── basetextfind.h │ │ │ │ ├── currentdocumentfind.cpp │ │ │ │ ├── currentdocumentfind.h │ │ │ │ ├── find.qrc │ │ │ │ ├── findplugin.cpp │ │ │ │ ├── findplugin.h │ │ │ │ ├── findtoolbar.cpp │ │ │ │ ├── findtoolbar.h │ │ │ │ ├── findtoolwindow.cpp │ │ │ │ ├── findtoolwindow.h │ │ │ │ ├── highlightscrollbarcontroller.cpp │ │ │ │ ├── highlightscrollbarcontroller.h │ │ │ │ ├── ifindfilter.cpp │ │ │ │ ├── ifindfilter.h │ │ │ │ ├── ifindsupport.cpp │ │ │ │ ├── ifindsupport.h │ │ │ │ ├── itemviewfind.cpp │ │ │ │ ├── itemviewfind.h │ │ │ │ ├── minimapcontroller.cpp │ │ │ │ ├── minimapcontroller.h │ │ │ │ ├── minimapoverlay.cpp │ │ │ │ ├── minimapoverlay.h │ │ │ │ ├── optionspopup.cpp │ │ │ │ ├── optionspopup.h │ │ │ │ ├── searchresulthighlighter.cpp │ │ │ │ ├── searchresulthighlighter.h │ │ │ │ ├── searchresulttreeitemdelegate.cpp │ │ │ │ ├── searchresulttreeitemdelegate.h │ │ │ │ ├── searchresulttreeitemroles.h │ │ │ │ ├── searchresulttreeitems.cpp │ │ │ │ ├── searchresulttreeitems.h │ │ │ │ ├── searchresulttreemodel.cpp │ │ │ │ ├── searchresulttreemodel.h │ │ │ │ ├── searchresulttreeview.cpp │ │ │ │ ├── searchresulttreeview.h │ │ │ │ ├── searchresultwidget.cpp │ │ │ │ ├── searchresultwidget.h │ │ │ │ ├── searchresultwindow.cpp │ │ │ │ ├── searchresultwindow.h │ │ │ │ └── textfindconstants.h │ │ │ ├── findplaceholder.cpp │ │ │ ├── findplaceholder.h │ │ │ ├── foldernavigationwidget.cpp │ │ │ ├── foldernavigationwidget.h │ │ │ ├── generalsettings.cpp │ │ │ ├── generalsettings.h │ │ │ ├── generatedfile.cpp │ │ │ ├── generatedfile.h │ │ │ ├── helpitem.cpp │ │ │ ├── helpitem.h │ │ │ ├── helpmanager.cpp │ │ │ ├── helpmanager.h │ │ │ ├── helpmanager_implementation.h │ │ │ ├── icontext.cpp │ │ │ ├── icontext.h │ │ │ ├── icore.cpp │ │ │ ├── icore.h │ │ │ ├── idocument.cpp │ │ │ ├── idocument.h │ │ │ ├── idocumentfactory.cpp │ │ │ ├── idocumentfactory.h │ │ │ ├── ifilewizardextension.h │ │ │ ├── imode.cpp │ │ │ ├── imode.h │ │ │ ├── inavigationwidgetfactory.cpp │ │ │ ├── inavigationwidgetfactory.h │ │ │ ├── ioutputpane.cpp │ │ │ ├── ioutputpane.h │ │ │ ├── iversioncontrol.cpp │ │ │ ├── iversioncontrol.h │ │ │ ├── iwelcomepage.cpp │ │ │ ├── iwelcomepage.h │ │ │ ├── iwizardfactory.cpp │ │ │ ├── iwizardfactory.h │ │ │ ├── jsexpander.cpp │ │ │ ├── jsexpander.h │ │ │ ├── locator/ │ │ │ │ ├── commandlocator.cpp │ │ │ │ ├── commandlocator.h │ │ │ │ ├── directoryfilter.cpp │ │ │ │ ├── directoryfilter.h │ │ │ │ ├── executefilter.cpp │ │ │ │ ├── executefilter.h │ │ │ │ ├── externaltoolsfilter.cpp │ │ │ │ ├── externaltoolsfilter.h │ │ │ │ ├── filesystemfilter.cpp │ │ │ │ ├── filesystemfilter.h │ │ │ │ ├── ilocatorfilter.cpp │ │ │ │ ├── ilocatorfilter.h │ │ │ │ ├── javascriptfilter.cpp │ │ │ │ ├── javascriptfilter.h │ │ │ │ ├── locator.cpp │ │ │ │ ├── locator.h │ │ │ │ ├── locator_test.cpp │ │ │ │ ├── locator_test.h │ │ │ │ ├── locatorconstants.h │ │ │ │ ├── locatorfiltersfilter.cpp │ │ │ │ ├── locatorfiltersfilter.h │ │ │ │ ├── locatorfiltertest.cpp │ │ │ │ ├── locatorfiltertest.h │ │ │ │ ├── locatormanager.cpp │ │ │ │ ├── locatormanager.h │ │ │ │ ├── locatorsettingspage.cpp │ │ │ │ ├── locatorsettingspage.h │ │ │ │ ├── locatorwidget.cpp │ │ │ │ ├── locatorwidget.h │ │ │ │ ├── opendocumentsfilter.cpp │ │ │ │ ├── opendocumentsfilter.h │ │ │ │ ├── spotlightlocatorfilter.cpp │ │ │ │ ├── spotlightlocatorfilter.h │ │ │ │ ├── urllocatorfilter.cpp │ │ │ │ └── urllocatorfilter.h │ │ │ ├── loggingviewer.cpp │ │ │ ├── loggingviewer.h │ │ │ ├── manhattanstyle.cpp │ │ │ ├── manhattanstyle.h │ │ │ ├── mcpmanager.cpp │ │ │ ├── mcpmanager.h │ │ │ ├── messagebox.cpp │ │ │ ├── messagebox.h │ │ │ ├── messagemanager.cpp │ │ │ ├── messagemanager.h │ │ │ ├── mimetypemagicdialog.cpp │ │ │ ├── mimetypemagicdialog.h │ │ │ ├── mimetypesettings.cpp │ │ │ ├── mimetypesettings.h │ │ │ ├── minisplitter.cpp │ │ │ ├── minisplitter.h │ │ │ ├── modemanager.cpp │ │ │ ├── modemanager.h │ │ │ ├── navigationsubwidget.cpp │ │ │ ├── navigationsubwidget.h │ │ │ ├── navigationwidget.cpp │ │ │ ├── navigationwidget.h │ │ │ ├── opendocumentstreeview.cpp │ │ │ ├── opendocumentstreeview.h │ │ │ ├── outputpane.h │ │ │ ├── outputpanemanager.cpp │ │ │ ├── outputpanemanager.h │ │ │ ├── outputwindow.cpp │ │ │ ├── outputwindow.h │ │ │ ├── patchtool.cpp │ │ │ ├── patchtool.h │ │ │ ├── plugindialog.cpp │ │ │ ├── plugindialog.h │ │ │ ├── plugininstallwizard.cpp │ │ │ ├── plugininstallwizard.h │ │ │ ├── progressmanager/ │ │ │ │ ├── futureprogress.cpp │ │ │ │ ├── futureprogress.h │ │ │ │ ├── processprogress.cpp │ │ │ │ ├── processprogress.h │ │ │ │ ├── progressbar.cpp │ │ │ │ ├── progressbar.h │ │ │ │ ├── progressmanager.cpp │ │ │ │ ├── progressmanager.h │ │ │ │ ├── progressmanager_mac.mm │ │ │ │ ├── progressmanager_p.h │ │ │ │ ├── progressmanager_win.cpp │ │ │ │ ├── progressmanager_x11.cpp │ │ │ │ ├── progressview.cpp │ │ │ │ ├── progressview.h │ │ │ │ ├── taskprogress.cpp │ │ │ │ └── taskprogress.h │ │ │ ├── rightpane.cpp │ │ │ ├── rightpane.h │ │ │ ├── secretaspect.cpp │ │ │ ├── secretaspect.h │ │ │ ├── session.cpp │ │ │ ├── session.h │ │ │ ├── sessiondialog.cpp │ │ │ ├── sessiondialog.h │ │ │ ├── sessionmodel.cpp │ │ │ ├── sessionmodel.h │ │ │ ├── sessionview.cpp │ │ │ ├── sessionview.h │ │ │ ├── settingsmode.cpp │ │ │ ├── settingsmode.h │ │ │ ├── sidebar.cpp │ │ │ ├── sidebar.h │ │ │ ├── sidebarwidget.cpp │ │ │ ├── sidebarwidget.h │ │ │ ├── statusbarmanager.cpp │ │ │ ├── statusbarmanager.h │ │ │ ├── systemsettings.cpp │ │ │ ├── systemsettings.h │ │ │ ├── terminal/ │ │ │ │ ├── searchableterminal.cpp │ │ │ │ └── searchableterminal.h │ │ │ ├── textdocument.cpp │ │ │ ├── textdocument.h │ │ │ ├── themechooser.cpp │ │ │ ├── themechooser.h │ │ │ ├── vcsfilestate.h │ │ │ ├── vcsmanager.cpp │ │ │ ├── vcsmanager.h │ │ │ ├── versiondialog.cpp │ │ │ ├── versiondialog.h │ │ │ ├── welcomepagehelper.cpp │ │ │ ├── welcomepagehelper.h │ │ │ ├── windowsupport.cpp │ │ │ └── windowsupport.h │ │ ├── cpaster/ │ │ │ ├── CMakeLists.txt │ │ │ ├── CodePaster.json.in │ │ │ ├── codepasterservice.h │ │ │ ├── columnindicatortextedit.cpp │ │ │ ├── columnindicatortextedit.h │ │ │ ├── cpaster.qbs │ │ │ ├── cpaster.qrc │ │ │ ├── cpasterconstants.h │ │ │ ├── cpasterplugin.cpp │ │ │ ├── cpastertr.h │ │ │ ├── dpastedotcomprotocol.cpp │ │ │ ├── dpastedotcomprotocol.h │ │ │ ├── fileshareprotocol.cpp │ │ │ ├── fileshareprotocol.h │ │ │ ├── fileshareprotocolsettingspage.cpp │ │ │ ├── fileshareprotocolsettingspage.h │ │ │ ├── frontend/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── argumentscollector.cpp │ │ │ │ ├── argumentscollector.h │ │ │ │ ├── frontend.qbs │ │ │ │ └── main.cpp │ │ │ ├── pastebindotcomprotocol.cpp │ │ │ ├── pastebindotcomprotocol.h │ │ │ ├── pasteselectdialog.cpp │ │ │ ├── pasteselectdialog.h │ │ │ ├── pasteview.cpp │ │ │ ├── pasteview.h │ │ │ ├── protocol.cpp │ │ │ ├── protocol.h │ │ │ ├── settings.cpp │ │ │ ├── settings.h │ │ │ ├── urlopenprotocol.cpp │ │ │ └── urlopenprotocol.h │ │ ├── cppcheck/ │ │ │ ├── CMakeLists.txt │ │ │ ├── Cppcheck.json.in │ │ │ ├── cppcheck.qbs │ │ │ ├── cppcheckconstants.h │ │ │ ├── cppcheckdiagnostic.cpp │ │ │ ├── cppcheckdiagnostic.h │ │ │ ├── cppcheckdiagnosticmanager.h │ │ │ ├── cppcheckdiagnosticsmodel.cpp │ │ │ ├── cppcheckdiagnosticsmodel.h │ │ │ ├── cppcheckdiagnosticview.cpp │ │ │ ├── cppcheckdiagnosticview.h │ │ │ ├── cppcheckmanualrundialog.cpp │ │ │ ├── cppcheckmanualrundialog.h │ │ │ ├── cppcheckplugin.cpp │ │ │ ├── cppcheckrunner.cpp │ │ │ ├── cppcheckrunner.h │ │ │ ├── cppchecksettings.cpp │ │ │ ├── cppchecksettings.h │ │ │ ├── cppchecktextmark.cpp │ │ │ ├── cppchecktextmark.h │ │ │ ├── cppchecktextmarkmanager.cpp │ │ │ ├── cppchecktextmarkmanager.h │ │ │ ├── cppchecktool.cpp │ │ │ ├── cppchecktool.h │ │ │ ├── cppchecktr.h │ │ │ ├── cppchecktrigger.cpp │ │ │ └── cppchecktrigger.h │ │ ├── cppeditor/ │ │ │ ├── CMakeLists.txt │ │ │ ├── CppEditor.json.in │ │ │ ├── abstracteditorsupport.cpp │ │ │ ├── abstracteditorsupport.h │ │ │ ├── baseeditordocumentparser.cpp │ │ │ ├── baseeditordocumentparser.h │ │ │ ├── baseeditordocumentprocessor.cpp │ │ │ ├── baseeditordocumentprocessor.h │ │ │ ├── builtincursorinfo.cpp │ │ │ ├── builtincursorinfo.h │ │ │ ├── builtineditordocumentparser.cpp │ │ │ ├── builtineditordocumentparser.h │ │ │ ├── builtineditordocumentprocessor.cpp │ │ │ ├── builtineditordocumentprocessor.h │ │ │ ├── clangdiagnosticconfig.cpp │ │ │ ├── clangdiagnosticconfig.h │ │ │ ├── clangdiagnosticconfigsmodel.cpp │ │ │ ├── clangdiagnosticconfigsmodel.h │ │ │ ├── clangdiagnosticconfigsselectionwidget.cpp │ │ │ ├── clangdiagnosticconfigsselectionwidget.h │ │ │ ├── clangdiagnosticconfigswidget.cpp │ │ │ ├── clangdiagnosticconfigswidget.h │ │ │ ├── clangdsettings.cpp │ │ │ ├── clangdsettings.h │ │ │ ├── compilationdb.cpp │ │ │ ├── compilationdb.h │ │ │ ├── compileroptionsbuilder.cpp │ │ │ ├── compileroptionsbuilder.h │ │ │ ├── compileroptionsbuilder_test.cpp │ │ │ ├── compileroptionsbuilder_test.h │ │ │ ├── cppautocompleter.cpp │ │ │ ├── cppautocompleter.h │ │ │ ├── cppbuiltinmodelmanagersupport.cpp │ │ │ ├── cppbuiltinmodelmanagersupport.h │ │ │ ├── cppcanonicalsymbol.cpp │ │ │ ├── cppcanonicalsymbol.h │ │ │ ├── cppchecksymbols.cpp │ │ │ ├── cppchecksymbols.h │ │ │ ├── cppcodeformatter.cpp │ │ │ ├── cppcodeformatter.h │ │ │ ├── cppcodegen_test.cpp │ │ │ ├── cppcodegen_test.h │ │ │ ├── cppcodemodelinspectordialog.cpp │ │ │ ├── cppcodemodelinspectordialog.h │ │ │ ├── cppcodemodelinspectordumper.cpp │ │ │ ├── cppcodemodelinspectordumper.h │ │ │ ├── cppcodemodelsettings.cpp │ │ │ ├── cppcodemodelsettings.h │ │ │ ├── cppcodestylepreferencesfactory.cpp │ │ │ ├── cppcodestylepreferencesfactory.h │ │ │ ├── cppcodestylesettings.cpp │ │ │ ├── cppcodestylesettings.h │ │ │ ├── cppcodestylesettingspage.cpp │ │ │ ├── cppcodestylesettingspage.h │ │ │ ├── cppcodestylesnippets.h │ │ │ ├── cppcompletion_test.cpp │ │ │ ├── cppcompletion_test.h │ │ │ ├── cppcompletionassist.cpp │ │ │ ├── cppcompletionassist.h │ │ │ ├── cppcompletionassistprocessor.cpp │ │ │ ├── cppcompletionassistprocessor.h │ │ │ ├── cppcompletionassistprovider.cpp │ │ │ ├── cppcompletionassistprovider.h │ │ │ ├── cppcursorinfo.h │ │ │ ├── cppdoxygen.cpp │ │ │ ├── cppdoxygen.h │ │ │ ├── cppdoxygen.kwgen │ │ │ ├── cppdoxygen_test.cpp │ │ │ ├── cppdoxygen_test.h │ │ │ ├── cppeditor.qbs │ │ │ ├── cppeditor_global.h │ │ │ ├── cppeditorconstants.h │ │ │ ├── cppeditordocument.cpp │ │ │ ├── cppeditordocument.h │ │ │ ├── cppeditorlogging.cpp │ │ │ ├── cppeditorlogging.h │ │ │ ├── cppeditoroutline.cpp │ │ │ ├── cppeditoroutline.h │ │ │ ├── cppeditorplugin.cpp │ │ │ ├── cppeditortr.h │ │ │ ├── cppeditorwidget.cpp │ │ │ ├── cppeditorwidget.h │ │ │ ├── cppelementevaluator.cpp │ │ │ ├── cppelementevaluator.h │ │ │ ├── cppfileiterationorder.cpp │ │ │ ├── cppfileiterationorder.h │ │ │ ├── cppfilesettingspage.cpp │ │ │ ├── cppfilesettingspage.h │ │ │ ├── cppfindreferences.cpp │ │ │ ├── cppfindreferences.h │ │ │ ├── cppfollowsymbolundercursor.cpp │ │ │ ├── cppfollowsymbolundercursor.h │ │ │ ├── cppfunctiondecldeflink.cpp │ │ │ ├── cppfunctiondecldeflink.h │ │ │ ├── cppfunctionparamrenaminghandler.cpp │ │ │ ├── cppfunctionparamrenaminghandler.h │ │ │ ├── cppheadersource.cpp │ │ │ ├── cppheadersource.h │ │ │ ├── cpphighlighter.cpp │ │ │ ├── cpphighlighter.h │ │ │ ├── cppincludehierarchy.cpp │ │ │ ├── cppincludehierarchy.h │ │ │ ├── cppincludehierarchy_test.cpp │ │ │ ├── cppincludehierarchy_test.h │ │ │ ├── cppincludesfilter.cpp │ │ │ ├── cppincludesfilter.h │ │ │ ├── cppindexingsupport.cpp │ │ │ ├── cppindexingsupport.h │ │ │ ├── cpplocalrenaming.cpp │ │ │ ├── cpplocalrenaming.h │ │ │ ├── cpplocalsymbols.cpp │ │ │ ├── cpplocalsymbols.h │ │ │ ├── cpplocalsymbols_test.cpp │ │ │ ├── cpplocalsymbols_test.h │ │ │ ├── cpplocatordata.cpp │ │ │ ├── cpplocatordata.h │ │ │ ├── cpplocatorfilter.cpp │ │ │ ├── cpplocatorfilter.h │ │ │ ├── cpplocatorfilter_test.cpp │ │ │ ├── cpplocatorfilter_test.h │ │ │ ├── cppmodelmanager.cpp │ │ │ ├── cppmodelmanager.h │ │ │ ├── cppmodelmanager_test.cpp │ │ │ ├── cppmodelmanager_test.h │ │ │ ├── cppmodelmanagersupport.cpp │ │ │ ├── cppmodelmanagersupport.h │ │ │ ├── cppoutline.cpp │ │ │ ├── cppoutline.h │ │ │ ├── cppoutlinemodel.cpp │ │ │ ├── cppoutlinemodel.h │ │ │ ├── cppparsecontext.cpp │ │ │ ├── cppparsecontext.h │ │ │ ├── cpppointerdeclarationformatter.cpp │ │ │ ├── cpppointerdeclarationformatter.h │ │ │ ├── cpppointerdeclarationformatter_test.cpp │ │ │ ├── cpppointerdeclarationformatter_test.h │ │ │ ├── cpppreprocessordialog.cpp │ │ │ ├── cpppreprocessordialog.h │ │ │ ├── cppprojectfile.cpp │ │ │ ├── cppprojectfile.h │ │ │ ├── cppprojectfilecategorizer.cpp │ │ │ ├── cppprojectfilecategorizer.h │ │ │ ├── cppprojectinfogenerator.cpp │ │ │ ├── cppprojectinfogenerator.h │ │ │ ├── cppprojectpartchooser.cpp │ │ │ ├── cppprojectpartchooser.h │ │ │ ├── cppprojectupdater.cpp │ │ │ ├── cppprojectupdater.h │ │ │ ├── cppqtstyleindenter.cpp │ │ │ ├── cppqtstyleindenter.h │ │ │ ├── cpprefactoringchanges.cpp │ │ │ ├── cpprefactoringchanges.h │ │ │ ├── cpprenaming_test.cpp │ │ │ ├── cpprenaming_test.h │ │ │ ├── cppselectionchanger.cpp │ │ │ ├── cppselectionchanger.h │ │ │ ├── cppsemanticinfo.h │ │ │ ├── cppsemanticinfoupdater.cpp │ │ │ ├── cppsemanticinfoupdater.h │ │ │ ├── cppsourceprocessertesthelper.cpp │ │ │ ├── cppsourceprocessertesthelper.h │ │ │ ├── cppsourceprocessor.cpp │ │ │ ├── cppsourceprocessor.h │ │ │ ├── cppsourceprocessor_test.cpp │ │ │ ├── cppsourceprocessor_test.h │ │ │ ├── cpptoolsjsextension.cpp │ │ │ ├── cpptoolsjsextension.h │ │ │ ├── cpptoolsreuse.cpp │ │ │ ├── cpptoolsreuse.h │ │ │ ├── cpptoolssettings.cpp │ │ │ ├── cpptoolssettings.h │ │ │ ├── cpptoolstestcase.cpp │ │ │ ├── cpptoolstestcase.h │ │ │ ├── cpptypehierarchy.cpp │ │ │ ├── cpptypehierarchy.h │ │ │ ├── cppuseselections_test.cpp │ │ │ ├── cppuseselections_test.h │ │ │ ├── cppuseselectionsupdater.cpp │ │ │ ├── cppuseselectionsupdater.h │ │ │ ├── cppvirtualfunctionassistprovider.cpp │ │ │ ├── cppvirtualfunctionassistprovider.h │ │ │ ├── cppvirtualfunctionproposalitem.cpp │ │ │ ├── cppvirtualfunctionproposalitem.h │ │ │ ├── cppworkingcopy.cpp │ │ │ ├── cppworkingcopy.h │ │ │ ├── cursorineditor.h │ │ │ ├── doxygengenerator.cpp │ │ │ ├── doxygengenerator.h │ │ │ ├── editordocumenthandle.cpp │ │ │ ├── editordocumenthandle.h │ │ │ ├── fileandtokenactions_test.cpp │ │ │ ├── fileandtokenactions_test.h │ │ │ ├── followsymbol_switchmethoddecldef_test.cpp │ │ │ ├── followsymbol_switchmethoddecldef_test.h │ │ │ ├── functionutils.cpp │ │ │ ├── functionutils.h │ │ │ ├── generatedcodemodelsupport.cpp │ │ │ ├── generatedcodemodelsupport.h │ │ │ ├── headerpathfilter.cpp │ │ │ ├── headerpathfilter.h │ │ │ ├── includeutils.cpp │ │ │ ├── includeutils.h │ │ │ ├── indexitem.cpp │ │ │ ├── indexitem.h │ │ │ ├── insertionpointlocator.cpp │ │ │ ├── insertionpointlocator.h │ │ │ ├── modelmanagertesthelper.cpp │ │ │ ├── modelmanagertesthelper.h │ │ │ ├── projectinfo.cpp │ │ │ ├── projectinfo.h │ │ │ ├── projectinfo_test.cpp │ │ │ ├── projectinfo_test.h │ │ │ ├── projectpart.cpp │ │ │ ├── projectpart.h │ │ │ ├── quickfixes/ │ │ │ │ ├── addmodulefrominclude.cpp │ │ │ │ ├── addmodulefrominclude.h │ │ │ │ ├── assigntolocalvariable.cpp │ │ │ │ ├── assigntolocalvariable.h │ │ │ │ ├── bringidentifierintoscope.cpp │ │ │ │ ├── bringidentifierintoscope.h │ │ │ │ ├── completeswitchstatement.cpp │ │ │ │ ├── completeswitchstatement.h │ │ │ │ ├── convertfromandtopointer.cpp │ │ │ │ ├── convertfromandtopointer.h │ │ │ │ ├── convertnumericliteral.cpp │ │ │ │ ├── convertnumericliteral.h │ │ │ │ ├── convertqt4connect.cpp │ │ │ │ ├── convertqt4connect.h │ │ │ │ ├── convertstringliteral.cpp │ │ │ │ ├── convertstringliteral.h │ │ │ │ ├── converttocamelcase.cpp │ │ │ │ ├── converttocamelcase.h │ │ │ │ ├── converttometamethodcall.cpp │ │ │ │ ├── converttometamethodcall.h │ │ │ │ ├── cppcodegenerationquickfixes.cpp │ │ │ │ ├── cppcodegenerationquickfixes.h │ │ │ │ ├── cppinsertvirtualmethods.cpp │ │ │ │ ├── cppinsertvirtualmethods.h │ │ │ │ ├── cppquickfix.cpp │ │ │ │ ├── cppquickfix.h │ │ │ │ ├── cppquickfix_test.cpp │ │ │ │ ├── cppquickfix_test.h │ │ │ │ ├── cppquickfixassistant.cpp │ │ │ │ ├── cppquickfixassistant.h │ │ │ │ ├── cppquickfixhelpers.cpp │ │ │ │ ├── cppquickfixhelpers.h │ │ │ │ ├── cppquickfixsettings.cpp │ │ │ │ ├── cppquickfixsettings.h │ │ │ │ ├── createdeclarationfromuse.cpp │ │ │ │ ├── createdeclarationfromuse.h │ │ │ │ ├── extractfunction.cpp │ │ │ │ ├── extractfunction.h │ │ │ │ ├── extractliteralasparameter.cpp │ │ │ │ ├── extractliteralasparameter.h │ │ │ │ ├── insertfunctiondefinition.cpp │ │ │ │ ├── insertfunctiondefinition.h │ │ │ │ ├── logicaloperationquickfixes.cpp │ │ │ │ ├── logicaloperationquickfixes.h │ │ │ │ ├── moveclasstoownfile.cpp │ │ │ │ ├── moveclasstoownfile.h │ │ │ │ ├── movefunctiondefinition.cpp │ │ │ │ ├── movefunctiondefinition.h │ │ │ │ ├── rearrangeparamdeclarationlist.cpp │ │ │ │ ├── rearrangeparamdeclarationlist.h │ │ │ │ ├── reformatpointerdeclaration.cpp │ │ │ │ ├── reformatpointerdeclaration.h │ │ │ │ ├── removeusingnamespace.cpp │ │ │ │ ├── removeusingnamespace.h │ │ │ │ ├── rewritecomment.cpp │ │ │ │ ├── rewritecomment.h │ │ │ │ ├── rewritecontrolstatements.cpp │ │ │ │ ├── rewritecontrolstatements.h │ │ │ │ ├── splitsimpledeclaration.cpp │ │ │ │ ├── splitsimpledeclaration.h │ │ │ │ ├── synchronizememberfunctionorder.cpp │ │ │ │ └── synchronizememberfunctionorder.h │ │ │ ├── searchsymbols.cpp │ │ │ ├── searchsymbols.h │ │ │ ├── semantichighlighter.cpp │ │ │ ├── semantichighlighter.h │ │ │ ├── symbolfinder.cpp │ │ │ ├── symbolfinder.h │ │ │ ├── symbolsearcher_test.cpp │ │ │ ├── symbolsearcher_test.h │ │ │ ├── symbolsfindfilter.cpp │ │ │ ├── symbolsfindfilter.h │ │ │ ├── testcases/ │ │ │ │ ├── AddBracesToControlStatementTest/ │ │ │ │ │ ├── do/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── do-with-braces/ │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── for/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── if/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── if-else-both-braced/ │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── if-else-both-braced2/ │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── if-else-else-braced/ │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── if-else-fully-braced/ │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── if-else-if-braced/ │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── if-else-partially-braced/ │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── if-else-partially-braced2/ │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── if-else-partially-braced3/ │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── if-else-partially-braced4/ │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── if-else-partially-braced5/ │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── if-else-partially-braced6/ │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── if-else-unbraced/ │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── if-else-unbraced2/ │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── if-else-unbraced3/ │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── range-for/ │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ └── while/ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ └── original_file.cpp │ │ │ │ ├── AddDeclarationForUndeclaredIdentifierTest/ │ │ │ │ │ ├── local-decl-from-use-QTCREATORBUG-26004/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── member-from-use1/ │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ ├── original_file.h │ │ │ │ │ │ └── properties.txt │ │ │ │ │ ├── member-from-use10/ │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ ├── original_file.h │ │ │ │ │ │ └── properties.txt │ │ │ │ │ ├── member-from-use11/ │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ ├── original_file.h │ │ │ │ │ │ └── properties.txt │ │ │ │ │ ├── member-from-use12/ │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ ├── original_file.h │ │ │ │ │ │ └── properties.txt │ │ │ │ │ ├── member-from-use13/ │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ ├── original_file.h │ │ │ │ │ │ └── properties.txt │ │ │ │ │ ├── member-from-use14/ │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ ├── original_file.h │ │ │ │ │ │ └── properties.txt │ │ │ │ │ ├── member-from-use15/ │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ ├── original_file.h │ │ │ │ │ │ └── properties.txt │ │ │ │ │ ├── member-from-use16/ │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ ├── original_file.h │ │ │ │ │ │ └── properties.txt │ │ │ │ │ ├── member-from-use17/ │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ ├── original_file.h │ │ │ │ │ │ └── properties.txt │ │ │ │ │ ├── member-from-use18/ │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ ├── original_file.h │ │ │ │ │ │ └── properties.txt │ │ │ │ │ ├── member-from-use19/ │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ ├── original_file.h │ │ │ │ │ │ └── properties.txt │ │ │ │ │ ├── member-from-use2/ │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ ├── original_file.h │ │ │ │ │ │ └── properties.txt │ │ │ │ │ ├── member-from-use3/ │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ ├── original_file.h │ │ │ │ │ │ └── properties.txt │ │ │ │ │ ├── member-from-use4/ │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ ├── original_file.h │ │ │ │ │ │ └── properties.txt │ │ │ │ │ ├── member-from-use5/ │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ ├── original_file.h │ │ │ │ │ │ └── properties.txt │ │ │ │ │ ├── member-from-use6/ │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ ├── original_file.h │ │ │ │ │ │ └── properties.txt │ │ │ │ │ ├── member-from-use7/ │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ ├── original_file.h │ │ │ │ │ │ └── properties.txt │ │ │ │ │ ├── member-from-use8/ │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ ├── original_file.h │ │ │ │ │ │ └── properties.txt │ │ │ │ │ └── member-from-use9/ │ │ │ │ │ ├── description.txt │ │ │ │ │ ├── expected_file.h │ │ │ │ │ ├── original_file.h │ │ │ │ │ └── properties.txt │ │ │ │ ├── AssignToLocalVariableTest/ │ │ │ │ │ ├── QTCREATORBUG-10355/ │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── QTCREATORBUG-10355-2/ │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── free-function/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── member-function/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── new-expression/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── no-function-in-expression/ │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── no-function-in-function/ │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── no-initialization-list/ │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── no-return1/ │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── no-return2/ │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── no-return3/ │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── no-return4/ │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── no-return5/ │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── no-void-function/ │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── no-void-member-function/ │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── no-void-static-member-function/ │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── static-member-function/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ └── templates/ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ ├── expected_file.h │ │ │ │ │ ├── original_file.cpp │ │ │ │ │ └── original_file.h │ │ │ │ ├── CompleteSwitchStatementTest/ │ │ │ │ │ ├── QTCREATORBUG-25998/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── anonymous-enum/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── basic/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── class-scope/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── enum-class/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── enum-class-class-scope/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── enum-class-cursor-in-body/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── enum-class-incomplete/ │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── enum-class-joint-decl/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── enum-class-name-confusion/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── enum-class-name-confusion2/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── enum-class-namespace-scope/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── enum-class-one-value-missing/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── enum-class-template/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── enum-class-with-default/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── incomplete/ │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── joint-decl/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── name-confusion/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── name-confusion2/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── namespace-scope/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── one-value-missing/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── template/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ └── with-default/ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ └── original_file.cpp │ │ │ │ ├── ConvertCommentStyleTest/ │ │ │ │ │ ├── from-c1/ │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ └── original_file.h │ │ │ │ │ ├── from-c10/ │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ └── original_file.h │ │ │ │ │ ├── from-c11/ │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ └── original_file.h │ │ │ │ │ ├── from-c12/ │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ └── original_file.h │ │ │ │ │ ├── from-c2/ │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ └── original_file.h │ │ │ │ │ ├── from-c3/ │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ └── original_file.h │ │ │ │ │ ├── from-c4/ │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ └── original_file.h │ │ │ │ │ ├── from-c5/ │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ └── original_file.h │ │ │ │ │ ├── from-c6/ │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ └── original_file.h │ │ │ │ │ ├── from-c7/ │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ └── original_file.h │ │ │ │ │ ├── from-c8/ │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ └── original_file.h │ │ │ │ │ ├── from-c9/ │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ └── original_file.h │ │ │ │ │ ├── to-c1/ │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ └── original_file.h │ │ │ │ │ ├── to-c2/ │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ └── original_file.h │ │ │ │ │ ├── to-c3/ │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ └── original_file.h │ │ │ │ │ ├── to-c4/ │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ └── original_file.h │ │ │ │ │ └── to-c5/ │ │ │ │ │ ├── description.txt │ │ │ │ │ ├── expected_file.h │ │ │ │ │ └── original_file.h │ │ │ │ ├── ConvertFromAndToPointerTest/ │ │ │ │ │ ├── class-member/ │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── class-member2/ │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── global-var/ │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── pointer-to-stack/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── pointer-to-stack-QTCREATORBUG23181/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── pointer-to-stack-QTCREATORBUG23181-2/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── pointer-to-stack-auto/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── pointer-to-stack-auto2/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── pointer-to-stack-with-initializer/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── pointer-to-stack-with-initializer2/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── pointer-to-stack-with-initializer3/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── reference-to-pointer/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── rvalue-ref/ │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── stack-to-pointer/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── stack-to-pointer-QTCREATORBUG23181/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── stack-to-pointer-QTCREATORBUG23181-2/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── stack-to-pointer-QTCREATORBUG23181-3/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── stack-to-pointer-QTCREATORBUG23181-4/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── stack-to-pointer-auto/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── stack-to-pointer-local-class/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── stack-to-pointer-shadowing/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── stack-to-pointer-with-initializer/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── stack-to-pointer-with-initializer2/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── stack-to-pointer-with-macro/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ └── struct-pointer-to-stack/ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ └── original_file.cpp │ │ │ │ ├── ConvertQt4ConnectTest/ │ │ │ │ │ ├── different-namespace/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── out-of-class/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── within-class-four-args-connect/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── within-class-four-args-disconnect/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── within-class-implicit-pointer/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── within-class-template-value/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ └── within-class-three-args-connect/ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ └── original_file.cpp │ │ │ │ ├── ConvertToCamelCaseTest/ │ │ │ │ │ ├── already-camel-case/ │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── no-underscores/ │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── no-underscores2/ │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── non-applicable-underscore/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── normal/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── partially-camel-case/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── upper-case/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ └── wild-mix/ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ └── original_file.cpp │ │ │ │ ├── ConvertToMetaMethodCallTest/ │ │ │ │ │ ├── Q_EMIT/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── Q_INVOKABLE/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── Q_SIGNAL/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── Q_SLOT/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── emit/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── expression/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── not-invokable/ │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── object-value/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── pointer-to-object/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ └── slot/ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ └── original_file.cpp │ │ │ │ ├── EscapeStringLiteralTest/ │ │ │ │ │ ├── escape-as-utf8/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── escape-raw-string/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── escape-simple/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── escape-with-splitting/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── no-trigger/ │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── unescape-adjacent-literals/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── unescape-simple/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── unescape-utf8/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── unescape-utf8-2/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── unescape-utf8-invalid/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ └── unescape-utf8-no-change/ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ └── original_file.cpp │ │ │ │ ├── ExtractFunctionTest/ │ │ │ │ │ ├── basic/ │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ └── original_file.h │ │ │ │ │ ├── class-in-namespace/ │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ └── original_file.h │ │ │ │ │ ├── if-block/ │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ └── original_file.h │ │ │ │ │ └── member-function/ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ └── original_file.h │ │ │ │ ├── ExtractLiteralAsParameterTest/ │ │ │ │ │ ├── free-function/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── free-function-separate-files/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ ├── original_file.cpp │ │ │ │ │ │ └── original_file.h │ │ │ │ │ ├── member-function/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── member-function-inline/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── member-function-separate-files/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ ├── original_file.cpp │ │ │ │ │ │ └── original_file.h │ │ │ │ │ ├── no-trigger/ │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── type-deduction-bool1/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── type-deduction-bool2/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── type-deduction-char/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── type-deduction-char-ptr/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── type-deduction-char16/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── type-deduction-char16-ptr/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── type-deduction-char32/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── type-deduction-char32-ptr/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── type-deduction-double/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── type-deduction-float/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── type-deduction-int/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── type-deduction-long/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── type-deduction-long-double/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── type-deduction-long-long/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── type-deduction-unsigned-int/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── type-deduction-unsigned-long/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── type-deduction-unsigned-long-long/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── type-deduction-wchar/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ └── type-deduction-wchar-ptr/ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ └── original_file.cpp │ │ │ │ ├── FlipLogicalOperandsTest/ │ │ │ │ │ ├── macro-as-left-expr/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── macro-as-right-expr/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── macro-in-left-expr/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ └── macro-in-right-expr/ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ └── original_file.cpp │ │ │ │ ├── InsertDeclFromDefTest/ │ │ │ │ │ ├── private/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ ├── opindex.txt │ │ │ │ │ │ ├── original_file.cpp │ │ │ │ │ │ └── original_file.h │ │ │ │ │ ├── private-slots/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ ├── opindex.txt │ │ │ │ │ │ ├── original_file.cpp │ │ │ │ │ │ └── original_file.h │ │ │ │ │ ├── protected/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ ├── opindex.txt │ │ │ │ │ │ ├── original_file.cpp │ │ │ │ │ │ └── original_file.h │ │ │ │ │ ├── protected-slots/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ ├── opindex.txt │ │ │ │ │ │ ├── original_file.cpp │ │ │ │ │ │ └── original_file.h │ │ │ │ │ ├── public/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ ├── original_file.cpp │ │ │ │ │ │ └── original_file.h │ │ │ │ │ ├── public-slots/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ ├── opindex.txt │ │ │ │ │ │ ├── original_file.cpp │ │ │ │ │ │ └── original_file.h │ │ │ │ │ ├── template-as-return-type/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── template-decl-already-present/ │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── template-type-param/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ └── template-value-param/ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ └── original_file.cpp │ │ │ │ ├── MoveAllFuncDefOutsideTest/ │ │ │ │ │ ├── QTCREATORBUG-13900-no-macro-expansion/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── base-class/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── ignore-base-class/ │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── member-funcs-to-cpp/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ ├── original_file.cpp │ │ │ │ │ │ └── original_file.h │ │ │ │ │ └── member-funcs-to-outside/ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ └── original_file.cpp │ │ │ │ ├── MoveDeclarationOutOfIfTest/ │ │ │ │ │ ├── if/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── if-else/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ └── if-else-if/ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ └── original_file.cpp │ │ │ │ ├── MoveDeclarationOutOfWhileTest/ │ │ │ │ │ ├── nested-while/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ └── simple-while/ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ └── original_file.cpp │ │ │ │ ├── MoveFuncDefOutsideTest/ │ │ │ │ │ ├── class-template/ │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ └── original_file.h │ │ │ │ │ ├── class-template-specialization/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── concept/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── ctor-with-initializers/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ ├── original_file.cpp │ │ │ │ │ │ └── original_file.h │ │ │ │ │ ├── ctor-with-initializers2/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ ├── original_file.cpp │ │ │ │ │ │ └── original_file.h │ │ │ │ │ ├── defaulted-constructor/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ ├── original_file.cpp │ │ │ │ │ │ └── original_file.h │ │ │ │ │ ├── defaulted-destructor/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ ├── original_file.cpp │ │ │ │ │ │ └── original_file.h │ │ │ │ │ ├── defaulted-operator/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ ├── original_file.cpp │ │ │ │ │ │ └── original_file.h │ │ │ │ │ ├── deleted-constructor/ │ │ │ │ │ │ ├── original_file.cpp │ │ │ │ │ │ └── original_file.h │ │ │ │ │ ├── deleted-destructor/ │ │ │ │ │ │ ├── original_file.cpp │ │ │ │ │ │ └── original_file.h │ │ │ │ │ ├── deleted-operator/ │ │ │ │ │ │ ├── original_file.cpp │ │ │ │ │ │ └── original_file.h │ │ │ │ │ ├── free-func-to-cpp/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ ├── original_file.cpp │ │ │ │ │ │ └── original_file.h │ │ │ │ │ ├── free-func-to-cpp-namespace/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ ├── original_file.cpp │ │ │ │ │ │ └── original_file.h │ │ │ │ │ ├── inline-trickery/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ ├── original_file.cpp │ │ │ │ │ │ └── original_file.h │ │ │ │ │ ├── macro/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── member-func-to-cpp/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ ├── original_file.cpp │ │ │ │ │ │ └── original_file.h │ │ │ │ │ ├── member-func-to-cpp-namespace/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ ├── original_file.cpp │ │ │ │ │ │ └── original_file.h │ │ │ │ │ ├── member-func-to-cpp-namespace2/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ ├── original_file.cpp │ │ │ │ │ │ └── original_file.h │ │ │ │ │ ├── member-func-to-cpp-namespace3/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ ├── original_file.cpp │ │ │ │ │ │ └── original_file.h │ │ │ │ │ ├── member-func-to-cpp-static/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ ├── original_file.cpp │ │ │ │ │ │ └── original_file.h │ │ │ │ │ ├── member-func-to-outside/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── member-func-to-outside-namespace/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── member-func-to-outside2/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ ├── opindex.txt │ │ │ │ │ │ ├── original_file.cpp │ │ │ │ │ │ └── original_file.h │ │ │ │ │ ├── member-func-to-outside3/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ ├── opindex.txt │ │ │ │ │ │ ├── original_file.cpp │ │ │ │ │ │ └── original_file.h │ │ │ │ │ ├── member-function-template/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── mixed-qualifiers/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ ├── original_file.cpp │ │ │ │ │ │ └── original_file.h │ │ │ │ │ ├── operator/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── operator2/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── struct-in-c++-context/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ ├── original_file.cpp │ │ │ │ │ │ └── original_file.h │ │ │ │ │ ├── struct-in-c-context/ │ │ │ │ │ │ ├── expected_file.c │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ ├── original_file.c │ │ │ │ │ │ └── original_file.h │ │ │ │ │ ├── unimplemented-overload/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ └── unnamed-template-param/ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ └── original_file.cpp │ │ │ │ ├── MoveFunctionCommentsTest/ │ │ │ │ │ ├── function-decl-to-def/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ ├── original_file.cpp │ │ │ │ │ │ └── original_file.h │ │ │ │ │ ├── function-def-to-decl/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ ├── original_file.cpp │ │ │ │ │ │ └── original_file.h │ │ │ │ │ ├── function-no-decl/ │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ └── original_file.h │ │ │ │ │ ├── function-no-def/ │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ └── original_file.h │ │ │ │ │ ├── member-function-decl-to-def/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ ├── original_file.cpp │ │ │ │ │ │ └── original_file.h │ │ │ │ │ ├── member-function-def-to-decl/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ ├── original_file.cpp │ │ │ │ │ │ └── original_file.h │ │ │ │ │ ├── template-decl-to-def/ │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ └── original_file.h │ │ │ │ │ └── template-def-to-decl/ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ ├── fail.txt │ │ │ │ │ └── original_file.h │ │ │ │ ├── OptimizeForLoopTest/ │ │ │ │ │ ├── alter-variable-name/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── condition/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── empty-initializer/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── flipped-condition/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── numeric1/ │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── numeric2/ │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── optimize-both/ │ │ │ │ │ │ ├── description.txt │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── postcrement/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ └── wrong-type/ │ │ │ │ │ └── original_file.cpp │ │ │ │ ├── RemoveBracesFromControlStatementTest/ │ │ │ │ │ ├── do-applicable/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── do-inapplicable-1/ │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── do-inapplicable-2/ │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── for-applicable/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── for-inapplicable-1/ │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── for-inapplicable-2/ │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── if-braced-multiple-statements/ │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── if-braced-single-statement-multiple-lines/ │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── if-braced-single-statement-single-line/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── if-else-fully-braced-applicable/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── if-else-fully-braced-inapplicable/ │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── if-else-partially-braced-applicable-1/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── if-else-partially-braced-applicable-2/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── if-else-partially-braced-applicable-3/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── if-else-partially-braced-applicable-4/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── if-else-partially-braced-applicable-5/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── if-else-partially-braced-inapplicable-1/ │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── if-else-partially-braced-inapplicable-2/ │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── if-else-unbraced/ │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── if-unbraced/ │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── range-based-for-applicable/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── range-based-for-inapplicable-1/ │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── range-based-for-inapplicable-2/ │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── while-applicable/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── while-inapplicable-1/ │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ └── while-inapplicable-2/ │ │ │ │ │ └── original_file.cpp │ │ │ │ ├── RemoveUsingNamespaceTest/ │ │ │ │ │ ├── different-symbols/ │ │ │ │ │ │ ├── expected_file.h │ │ │ │ │ │ └── original_file.h │ │ │ │ │ ├── existing-namespace/ │ │ │ │ │ │ ├── expected_header1.h │ │ │ │ │ │ ├── expected_header2.h │ │ │ │ │ │ ├── expected_header3.h │ │ │ │ │ │ ├── opindex.txt │ │ │ │ │ │ ├── original_header1.h │ │ │ │ │ │ ├── original_header2.h │ │ │ │ │ │ └── original_header3.h │ │ │ │ │ ├── global-scope-all-files/ │ │ │ │ │ │ ├── expected_header1.h │ │ │ │ │ │ ├── expected_header2.h │ │ │ │ │ │ ├── expected_header3.h │ │ │ │ │ │ ├── opindex.txt │ │ │ │ │ │ ├── original_header1.h │ │ │ │ │ │ ├── original_header2.h │ │ │ │ │ │ └── original_header3.h │ │ │ │ │ ├── inline-namespace/ │ │ │ │ │ │ ├── expected_header1.h │ │ │ │ │ │ ├── expected_header2.h │ │ │ │ │ │ ├── expected_header3.h │ │ │ │ │ │ ├── original_header1.h │ │ │ │ │ │ ├── original_header2.h │ │ │ │ │ │ └── original_header3.h │ │ │ │ │ ├── nested-typedefs-with-namespace/ │ │ │ │ │ │ ├── expected_header.h │ │ │ │ │ │ └── original_header.h │ │ │ │ │ ├── one-file-globally/ │ │ │ │ │ │ ├── expected_header1.h │ │ │ │ │ │ ├── expected_header2.h │ │ │ │ │ │ ├── expected_header3.h │ │ │ │ │ │ ├── opindex.txt │ │ │ │ │ │ ├── original_header1.h │ │ │ │ │ │ ├── original_header2.h │ │ │ │ │ │ └── original_header3.h │ │ │ │ │ ├── one-file-locally/ │ │ │ │ │ │ ├── expected_header1.h │ │ │ │ │ │ ├── expected_header2.h │ │ │ │ │ │ ├── expected_header3.h │ │ │ │ │ │ ├── original_header1.h │ │ │ │ │ │ ├── original_header2.h │ │ │ │ │ │ └── original_header3.h │ │ │ │ │ ├── scoped/ │ │ │ │ │ │ ├── expected_header1.h │ │ │ │ │ │ ├── expected_header2.h │ │ │ │ │ │ ├── expected_header3.h │ │ │ │ │ │ ├── original_header1.h │ │ │ │ │ │ ├── original_header2.h │ │ │ │ │ │ └── original_header3.h │ │ │ │ │ ├── three-files-globally/ │ │ │ │ │ │ ├── expected_header1.h │ │ │ │ │ │ ├── expected_header2.h │ │ │ │ │ │ ├── expected_header3.h │ │ │ │ │ │ ├── opindex.txt │ │ │ │ │ │ ├── original_header1.h │ │ │ │ │ │ ├── original_header2.h │ │ │ │ │ │ └── original_header3.h │ │ │ │ │ ├── three-files-one-using/ │ │ │ │ │ │ ├── expected_header1.h │ │ │ │ │ │ ├── expected_header2.h │ │ │ │ │ │ ├── expected_header3.h │ │ │ │ │ │ ├── original_header1.h │ │ │ │ │ │ ├── original_header2.h │ │ │ │ │ │ └── original_header3.h │ │ │ │ │ ├── two-files-globally/ │ │ │ │ │ │ ├── expected_header1.h │ │ │ │ │ │ ├── expected_header2.h │ │ │ │ │ │ ├── expected_header3.h │ │ │ │ │ │ ├── opindex.txt │ │ │ │ │ │ ├── original_header1.h │ │ │ │ │ │ ├── original_header2.h │ │ │ │ │ │ └── original_header3.h │ │ │ │ │ └── two-files-one-using/ │ │ │ │ │ ├── expected_header1.h │ │ │ │ │ ├── expected_header2.h │ │ │ │ │ ├── expected_header3.h │ │ │ │ │ ├── original_header1.h │ │ │ │ │ ├── original_header2.h │ │ │ │ │ └── original_header3.h │ │ │ │ ├── WrapStringLiteralTest/ │ │ │ │ │ ├── byte-array-literal-operator/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ ├── opindex.txt │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── latin1-char-literal-operator/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ ├── opindex.txt │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── latin1-char-literal-operator-with-conversion/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ ├── opindex.txt │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── latin1-string-literal-operator/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ ├── opindex.txt │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ ├── string-literal-operator/ │ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ │ ├── opindex.txt │ │ │ │ │ │ └── original_file.cpp │ │ │ │ │ └── string-literal-operator-existing-prefix/ │ │ │ │ │ ├── expected_file.cpp │ │ │ │ │ └── original_file.cpp │ │ │ │ ├── add-module-from-include/ │ │ │ │ │ ├── add-module-from-include.pro │ │ │ │ │ ├── add-module-from-include.pro_expected │ │ │ │ │ └── main.cpp │ │ │ │ ├── bring-identifier-into-scope/ │ │ │ │ │ └── add-qt-dependency/ │ │ │ │ │ ├── add-qt-dependency.pro │ │ │ │ │ ├── add-qt-dependency.pro_expected │ │ │ │ │ ├── main.cpp │ │ │ │ │ └── main.cpp_expected │ │ │ │ ├── highlightingtestcase.cpp │ │ │ │ ├── move-class/ │ │ │ │ │ ├── complex/ │ │ │ │ │ │ ├── complex.pro │ │ │ │ │ │ ├── complex.pro_expected │ │ │ │ │ │ ├── main.cpp │ │ │ │ │ │ ├── main.cpp_expected │ │ │ │ │ │ ├── theclass.cpp_expected │ │ │ │ │ │ ├── theclass.h_expected │ │ │ │ │ │ ├── theheader.h │ │ │ │ │ │ ├── theheader.h_expected │ │ │ │ │ │ ├── thesource.cpp │ │ │ │ │ │ └── thesource.cpp_expected │ │ │ │ │ ├── decl-in-source/ │ │ │ │ │ │ ├── decl-in-source.pro │ │ │ │ │ │ ├── decl-in-source.pro_expected │ │ │ │ │ │ ├── theclass.h_expected │ │ │ │ │ │ ├── theheader.h │ │ │ │ │ │ ├── thesource.cpp │ │ │ │ │ │ └── thesource.cpp_expected │ │ │ │ │ ├── header-only/ │ │ │ │ │ │ ├── header-only.pro │ │ │ │ │ │ ├── header-only.pro_expected │ │ │ │ │ │ ├── theclass.h_expected │ │ │ │ │ │ ├── theheader.h │ │ │ │ │ │ ├── theheader.h_expected │ │ │ │ │ │ ├── thesource.cpp │ │ │ │ │ │ └── thesource.cpp_expected │ │ │ │ │ ├── match1/ │ │ │ │ │ │ ├── TheClass.h │ │ │ │ │ │ └── match1.pro │ │ │ │ │ ├── match2/ │ │ │ │ │ │ ├── match2.pro │ │ │ │ │ │ └── theclass.h │ │ │ │ │ ├── match3/ │ │ │ │ │ │ ├── match3.pro │ │ │ │ │ │ └── the_class.h │ │ │ │ │ ├── nested/ │ │ │ │ │ │ ├── main.cpp │ │ │ │ │ │ └── nested.pro │ │ │ │ │ ├── single/ │ │ │ │ │ │ ├── single.pro │ │ │ │ │ │ └── theheader.h │ │ │ │ │ └── template/ │ │ │ │ │ ├── template.pro │ │ │ │ │ ├── template.pro_expected │ │ │ │ │ ├── theclass.h_expected │ │ │ │ │ ├── theheader.h │ │ │ │ │ └── theheader.h_expected │ │ │ │ └── reorder-member-impls/ │ │ │ │ ├── already-sorted/ │ │ │ │ │ ├── already-sorted.pro │ │ │ │ │ ├── header.h │ │ │ │ │ └── header.h_expected │ │ │ │ ├── different-locations/ │ │ │ │ │ ├── different-locations.pro │ │ │ │ │ ├── header.h │ │ │ │ │ ├── header.h_expected │ │ │ │ │ ├── impl1.cpp │ │ │ │ │ ├── impl1.cpp_expected │ │ │ │ │ ├── impl2.cpp │ │ │ │ │ └── impl2.cpp_expected │ │ │ │ ├── no-out-of-line/ │ │ │ │ │ ├── header.h │ │ │ │ │ ├── header.h_expected │ │ │ │ │ └── no-out-of-line.pro │ │ │ │ └── templates/ │ │ │ │ ├── header.h │ │ │ │ ├── header.h_expected │ │ │ │ └── templates.pro │ │ │ ├── typehierarchybuilder.cpp │ │ │ ├── typehierarchybuilder.h │ │ │ ├── typehierarchybuilder_test.cpp │ │ │ ├── typehierarchybuilder_test.h │ │ │ ├── wrappablelineedit.cpp │ │ │ └── wrappablelineedit.h │ │ ├── ctfvisualizer/ │ │ │ ├── CMakeLists.txt │ │ │ ├── CtfVisualizer.json.in │ │ │ ├── ctfstatisticsmodel.cpp │ │ │ ├── ctfstatisticsmodel.h │ │ │ ├── ctfstatisticsview.cpp │ │ │ ├── ctfstatisticsview.h │ │ │ ├── ctftimelinemodel.cpp │ │ │ ├── ctftimelinemodel.h │ │ │ ├── ctftracemanager.cpp │ │ │ ├── ctftracemanager.h │ │ │ ├── ctfvisualizer.qbs │ │ │ ├── ctfvisualizerconstants.h │ │ │ ├── ctfvisualizerplugin.cpp │ │ │ ├── ctfvisualizertool.cpp │ │ │ ├── ctfvisualizertool.h │ │ │ ├── ctfvisualizertr.h │ │ │ ├── ctfvisualizertraceview.cpp │ │ │ └── ctfvisualizertraceview.h │ │ ├── cvs/ │ │ │ ├── CMakeLists.txt │ │ │ ├── CVS.json.in │ │ │ ├── cvs.qbs │ │ │ ├── cvseditor.cpp │ │ │ ├── cvseditor.h │ │ │ ├── cvsplugin.cpp │ │ │ ├── cvssettings.cpp │ │ │ ├── cvssettings.h │ │ │ ├── cvssubmiteditor.cpp │ │ │ ├── cvssubmiteditor.h │ │ │ ├── cvstr.h │ │ │ ├── cvsutils.cpp │ │ │ └── cvsutils.h │ │ ├── debugger/ │ │ │ ├── CMakeLists.txt │ │ │ ├── Debugger.json.in │ │ │ ├── README │ │ │ ├── analyzer/ │ │ │ │ ├── analyzerutils.h │ │ │ │ ├── detailederrorview.cpp │ │ │ │ └── detailederrorview.h │ │ │ ├── breakhandler.cpp │ │ │ ├── breakhandler.h │ │ │ ├── breakpoint.cpp │ │ │ ├── breakpoint.h │ │ │ ├── cdb/ │ │ │ │ ├── cdbengine.cpp │ │ │ │ ├── cdbengine.h │ │ │ │ ├── cdboptionspage.cpp │ │ │ │ ├── cdboptionspage.h │ │ │ │ ├── cdbparsehelpers.cpp │ │ │ │ ├── cdbparsehelpers.h │ │ │ │ ├── stringinputstream.cpp │ │ │ │ └── stringinputstream.h │ │ │ ├── commonoptionspage.cpp │ │ │ ├── commonoptionspage.h │ │ │ ├── console/ │ │ │ │ ├── console.cpp │ │ │ │ ├── console.h │ │ │ │ ├── consoleedit.cpp │ │ │ │ ├── consoleedit.h │ │ │ │ ├── consoleitem.cpp │ │ │ │ ├── consoleitem.h │ │ │ │ ├── consoleitemdelegate.cpp │ │ │ │ ├── consoleitemdelegate.h │ │ │ │ ├── consoleitemmodel.cpp │ │ │ │ ├── consoleitemmodel.h │ │ │ │ ├── consoleproxymodel.cpp │ │ │ │ ├── consoleproxymodel.h │ │ │ │ ├── consoleview.cpp │ │ │ │ └── consoleview.h │ │ │ ├── dap/ │ │ │ │ ├── cmakedapengine.cpp │ │ │ │ ├── cmakedapengine.h │ │ │ │ ├── dapclient.cpp │ │ │ │ ├── dapclient.h │ │ │ │ ├── dapengine.cpp │ │ │ │ ├── dapengine.h │ │ │ │ ├── gdbdapengine.cpp │ │ │ │ ├── gdbdapengine.h │ │ │ │ ├── lldbdapengine.cpp │ │ │ │ ├── lldbdapengine.h │ │ │ │ ├── pydapengine.cpp │ │ │ │ └── pydapengine.h │ │ │ ├── debugger.qbs │ │ │ ├── debugger_global.h │ │ │ ├── debuggeractions.cpp │ │ │ ├── debuggeractions.h │ │ │ ├── debuggerconstants.h │ │ │ ├── debuggercore.h │ │ │ ├── debuggerdialogs.cpp │ │ │ ├── debuggerdialogs.h │ │ │ ├── debuggerengine.cpp │ │ │ ├── debuggerengine.h │ │ │ ├── debuggericons.cpp │ │ │ ├── debuggericons.h │ │ │ ├── debuggerinternalconstants.h │ │ │ ├── debuggeritem.cpp │ │ │ ├── debuggeritem.h │ │ │ ├── debuggeritemmanager.cpp │ │ │ ├── debuggeritemmanager.h │ │ │ ├── debuggerkitaspect.cpp │ │ │ ├── debuggerkitaspect.h │ │ │ ├── debuggermainwindow.cpp │ │ │ ├── debuggermainwindow.h │ │ │ ├── debuggerplugin.cpp │ │ │ ├── debuggerprotocol.cpp │ │ │ ├── debuggerprotocol.h │ │ │ ├── debuggerrunconfigurationaspect.cpp │ │ │ ├── debuggerrunconfigurationaspect.h │ │ │ ├── debuggerruncontrol.cpp │ │ │ ├── debuggerruncontrol.h │ │ │ ├── debuggersourcepathmappingwidget.cpp │ │ │ ├── debuggersourcepathmappingwidget.h │ │ │ ├── debuggertest.cpp │ │ │ ├── debuggertest.h │ │ │ ├── debuggertooltipmanager.cpp │ │ │ ├── debuggertooltipmanager.h │ │ │ ├── debuggertr.h │ │ │ ├── disassembleragent.cpp │ │ │ ├── disassembleragent.h │ │ │ ├── disassemblerlines.cpp │ │ │ ├── disassemblerlines.h │ │ │ ├── enginemanager.cpp │ │ │ ├── enginemanager.h │ │ │ ├── gdb/ │ │ │ │ ├── gdbengine.cpp │ │ │ │ ├── gdbengine.h │ │ │ │ ├── gdbsettings.cpp │ │ │ │ └── gdbsettings.h │ │ │ ├── imageviewer.cpp │ │ │ ├── imageviewer.h │ │ │ ├── lldb/ │ │ │ │ ├── lldbengine.cpp │ │ │ │ └── lldbengine.h │ │ │ ├── loadcoredialog.cpp │ │ │ ├── loadcoredialog.h │ │ │ ├── localsandexpressionswindow.cpp │ │ │ ├── localsandexpressionswindow.h │ │ │ ├── logwindow.cpp │ │ │ ├── logwindow.h │ │ │ ├── memoryagent.cpp │ │ │ ├── memoryagent.h │ │ │ ├── moduleshandler.cpp │ │ │ ├── moduleshandler.h │ │ │ ├── outputcollector.cpp │ │ │ ├── outputcollector.h │ │ │ ├── pdb/ │ │ │ │ ├── pdbengine.cpp │ │ │ │ └── pdbengine.h │ │ │ ├── peripheralregisterhandler.cpp │ │ │ ├── peripheralregisterhandler.h │ │ │ ├── procinterrupt.cpp │ │ │ ├── procinterrupt.h │ │ │ ├── ptracepreload.c │ │ │ ├── ptracepreload.qbs │ │ │ ├── qml/ │ │ │ │ ├── interactiveinterpreter.cpp │ │ │ │ ├── interactiveinterpreter.h │ │ │ │ ├── qmlengine.cpp │ │ │ │ ├── qmlengine.h │ │ │ │ ├── qmlengineutils.cpp │ │ │ │ ├── qmlengineutils.h │ │ │ │ ├── qmlinspectoragent.cpp │ │ │ │ ├── qmlinspectoragent.h │ │ │ │ └── qmlv8debuggerclientconstants.h │ │ │ ├── registerhandler.cpp │ │ │ ├── registerhandler.h │ │ │ ├── registerpostmortemaction.cpp │ │ │ ├── registerpostmortemaction.h │ │ │ ├── remotedebuggerconfiguration.cpp │ │ │ ├── remotedebuggerconfiguration.h │ │ │ ├── remotedebuggerdebugsupport.cpp │ │ │ ├── remotedebuggerdebugsupport.h │ │ │ ├── shared/ │ │ │ │ ├── cdbsymbolpathlisteditor.cpp │ │ │ │ ├── cdbsymbolpathlisteditor.h │ │ │ │ ├── coredumputils.cpp │ │ │ │ ├── coredumputils.h │ │ │ │ ├── hostutils.cpp │ │ │ │ ├── hostutils.h │ │ │ │ ├── peutils.cpp │ │ │ │ ├── peutils.h │ │ │ │ ├── symbolpathsdialog.cpp │ │ │ │ └── symbolpathsdialog.h │ │ │ ├── simplifytype.cpp │ │ │ ├── simplifytype.h │ │ │ ├── sourceagent.cpp │ │ │ ├── sourceagent.h │ │ │ ├── sourcefileshandler.cpp │ │ │ ├── sourcefileshandler.h │ │ │ ├── sourceutils.cpp │ │ │ ├── sourceutils.h │ │ │ ├── stackframe.cpp │ │ │ ├── stackframe.h │ │ │ ├── stackhandler.cpp │ │ │ ├── stackhandler.h │ │ │ ├── stackwindow.cpp │ │ │ ├── stackwindow.h │ │ │ ├── terminal.cpp │ │ │ ├── terminal.h │ │ │ ├── threaddata.h │ │ │ ├── threadshandler.cpp │ │ │ ├── threadshandler.h │ │ │ ├── unit-tests/ │ │ │ │ └── simple/ │ │ │ │ ├── main.cpp │ │ │ │ └── simple.pro │ │ │ ├── unstartedappwatcherdialog.cpp │ │ │ ├── unstartedappwatcherdialog.h │ │ │ ├── uvsc/ │ │ │ │ ├── uvscclient.cpp │ │ │ │ ├── uvscclient.h │ │ │ │ ├── uvscdatatypes.h │ │ │ │ ├── uvscengine.cpp │ │ │ │ ├── uvscengine.h │ │ │ │ ├── uvscfunctions.h │ │ │ │ ├── uvscutils.cpp │ │ │ │ └── uvscutils.h │ │ │ ├── watchdata.cpp │ │ │ ├── watchdata.h │ │ │ ├── watchdelegatewidgets.cpp │ │ │ ├── watchdelegatewidgets.h │ │ │ ├── watchhandler.cpp │ │ │ ├── watchhandler.h │ │ │ ├── watchutils.cpp │ │ │ ├── watchutils.h │ │ │ ├── watchwindow.cpp │ │ │ └── watchwindow.h │ │ ├── designer/ │ │ │ ├── CMakeLists.txt │ │ │ ├── Designer.json.in │ │ │ ├── README.txt │ │ │ ├── codemodelhelpers.cpp │ │ │ ├── codemodelhelpers.h │ │ │ ├── cpp/ │ │ │ │ ├── formclasswizard.cpp │ │ │ │ ├── formclasswizard.h │ │ │ │ ├── formclasswizarddialog.cpp │ │ │ │ ├── formclasswizarddialog.h │ │ │ │ ├── formclasswizardpage.cpp │ │ │ │ ├── formclasswizardpage.h │ │ │ │ ├── formclasswizardparameters.cpp │ │ │ │ ├── formclasswizardparameters.h │ │ │ │ ├── newclasswidget.cpp │ │ │ │ └── newclasswidget.h │ │ │ ├── designer.qbs │ │ │ ├── designer_export.h │ │ │ ├── designerconstants.h │ │ │ ├── designerplugin.cpp │ │ │ ├── designertr.h │ │ │ ├── editordata.h │ │ │ ├── editorwidget.cpp │ │ │ ├── editorwidget.h │ │ │ ├── formeditor.cpp │ │ │ ├── formeditor.h │ │ │ ├── formeditorfactory.cpp │ │ │ ├── formeditorfactory.h │ │ │ ├── formeditorstack.cpp │ │ │ ├── formeditorstack.h │ │ │ ├── formtemplatewizardpage.cpp │ │ │ ├── formtemplatewizardpage.h │ │ │ ├── formwindoweditor.cpp │ │ │ ├── formwindoweditor.h │ │ │ ├── formwindowfile.cpp │ │ │ ├── formwindowfile.h │ │ │ ├── gotoslot_test.cpp │ │ │ ├── qtcreatorintegration.cpp │ │ │ ├── qtcreatorintegration.h │ │ │ ├── qtdesignerformclasscodegenerator.cpp │ │ │ ├── qtdesignerformclasscodegenerator.h │ │ │ ├── resourcehandler.cpp │ │ │ ├── resourcehandler.h │ │ │ ├── settingsmanager.cpp │ │ │ ├── settingsmanager.h │ │ │ ├── settingspage.cpp │ │ │ └── settingspage.h │ │ ├── devcontainer/ │ │ │ ├── CMakeLists.txt │ │ │ ├── DevContainerPlugin.json.in │ │ │ ├── README.md │ │ │ ├── devcontainer.qbs │ │ │ ├── devcontainer_test.cpp │ │ │ ├── devcontainerdevice.cpp │ │ │ ├── devcontainerdevice.h │ │ │ ├── devcontainerplugin.cpp │ │ │ ├── devcontainerplugin_constants.h │ │ │ ├── devcontainerplugin_global.h │ │ │ ├── devcontainerplugintr.h │ │ │ ├── schema/ │ │ │ │ └── devContainer.qtcreator.schema.json │ │ │ └── testdata/ │ │ │ ├── simpleproject/ │ │ │ │ ├── .devcontainer/ │ │ │ │ │ └── devcontainer.json │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── main.cpp │ │ │ └── withkit/ │ │ │ ├── .devcontainer/ │ │ │ │ ├── Dockerfile │ │ │ │ └── devcontainer.json │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ ├── diffeditor/ │ │ │ ├── CMakeLists.txt │ │ │ ├── DiffEditor.json.in │ │ │ ├── diffeditor.cpp │ │ │ ├── diffeditor.h │ │ │ ├── diffeditor.qbs │ │ │ ├── diffeditor.qrc │ │ │ ├── diffeditor_global.h │ │ │ ├── diffeditorconstants.h │ │ │ ├── diffeditorcontroller.cpp │ │ │ ├── diffeditorcontroller.h │ │ │ ├── diffeditordocument.cpp │ │ │ ├── diffeditordocument.h │ │ │ ├── diffeditoricons.h │ │ │ ├── diffeditorplugin.cpp │ │ │ ├── diffeditortr.h │ │ │ ├── diffeditorwidgetcontroller.cpp │ │ │ ├── diffeditorwidgetcontroller.h │ │ │ ├── diffenums.h │ │ │ ├── diffutils.cpp │ │ │ ├── diffutils.h │ │ │ ├── selectabletexteditorwidget.cpp │ │ │ ├── selectabletexteditorwidget.h │ │ │ ├── sidebysidediffeditorwidget.cpp │ │ │ ├── sidebysidediffeditorwidget.h │ │ │ ├── unifieddiffeditorwidget.cpp │ │ │ └── unifieddiffeditorwidget.h │ │ ├── docker/ │ │ │ ├── CMakeLists.txt │ │ │ ├── Docker.json.in │ │ │ ├── docker.qbs │ │ │ ├── docker_global.h │ │ │ ├── dockerapi.cpp │ │ │ ├── dockerapi.h │ │ │ ├── dockerconstants.h │ │ │ ├── dockercontainerthread.cpp │ │ │ ├── dockercontainerthread.h │ │ │ ├── dockerdevice.cpp │ │ │ ├── dockerdevice.h │ │ │ ├── dockerdeviceenvironmentaspect.cpp │ │ │ ├── dockerdeviceenvironmentaspect.h │ │ │ ├── dockerdevicewidget.cpp │ │ │ ├── dockerdevicewidget.h │ │ │ ├── dockerplugin.cpp │ │ │ ├── dockersettings.cpp │ │ │ ├── dockersettings.h │ │ │ └── dockertr.h │ │ ├── dotnet/ │ │ │ ├── CMakeLists.txt │ │ │ ├── Dotnet.json.in │ │ │ ├── dotnet.qbs │ │ │ ├── dotnetplugin.cpp │ │ │ ├── dotnetproject.cpp │ │ │ ├── dotnetproject.h │ │ │ └── dotnettr.h │ │ ├── effectcomposer/ │ │ │ ├── CMakeLists.txt │ │ │ ├── EffectComposer.json.in │ │ │ ├── compositionnode.cpp │ │ │ ├── compositionnode.h │ │ │ ├── effectcodeeditorwidget.cpp │ │ │ ├── effectcodeeditorwidget.h │ │ │ ├── effectcomposer.qbs │ │ │ ├── effectcomposercontextobject.cpp │ │ │ ├── effectcomposercontextobject.h │ │ │ ├── effectcomposereditablenodesmodel.cpp │ │ │ ├── effectcomposereditablenodesmodel.h │ │ │ ├── effectcomposermodel.cpp │ │ │ ├── effectcomposermodel.h │ │ │ ├── effectcomposernodesmodel.cpp │ │ │ ├── effectcomposernodesmodel.h │ │ │ ├── effectcomposerplugin.cpp │ │ │ ├── effectcomposertr.h │ │ │ ├── effectcomposeruniformsmodel.cpp │ │ │ ├── effectcomposeruniformsmodel.h │ │ │ ├── effectcomposeruniformstablemodel.cpp │ │ │ ├── effectcomposeruniformstablemodel.h │ │ │ ├── effectcomposerview.cpp │ │ │ ├── effectcomposerview.h │ │ │ ├── effectcomposerwidget.cpp │ │ │ ├── effectcomposerwidget.h │ │ │ ├── effectnode.cpp │ │ │ ├── effectnode.h │ │ │ ├── effectnodescategory.cpp │ │ │ ├── effectnodescategory.h │ │ │ ├── effectsautocomplete.cpp │ │ │ ├── effectsautocomplete.h │ │ │ ├── effectshaderscodeeditor.cpp │ │ │ ├── effectshaderscodeeditor.h │ │ │ ├── effectutils.cpp │ │ │ ├── effectutils.h │ │ │ ├── listmodelwidthcalculator.cpp │ │ │ ├── listmodelwidthcalculator.h │ │ │ ├── propertyhandler.cpp │ │ │ ├── propertyhandler.h │ │ │ ├── shadereditordata.h │ │ │ ├── shaderfeatures.cpp │ │ │ ├── shaderfeatures.h │ │ │ ├── syntaxhighlighter.cpp │ │ │ ├── syntaxhighlighter.h │ │ │ ├── syntaxhighlighterdata.cpp │ │ │ ├── syntaxhighlighterdata.h │ │ │ ├── tableheaderlengthmodel.cpp │ │ │ ├── tableheaderlengthmodel.h │ │ │ ├── uniform.cpp │ │ │ └── uniform.h │ │ ├── emacskeys/ │ │ │ ├── CMakeLists.txt │ │ │ ├── EmacsKeys.json.in │ │ │ ├── emacskeys.qbs │ │ │ ├── emacskeysconstants.h │ │ │ ├── emacskeysplugin.cpp │ │ │ ├── emacskeysstate.cpp │ │ │ ├── emacskeysstate.h │ │ │ └── emacskeystr.h │ │ ├── extensionmanager/ │ │ │ ├── CMakeLists.txt │ │ │ ├── ExtensionManager.json.in │ │ │ ├── extensionmanager.qbs │ │ │ ├── extensionmanager.qrc │ │ │ ├── extensionmanager_global.h │ │ │ ├── extensionmanager_test.cpp │ │ │ ├── extensionmanager_test.h │ │ │ ├── extensionmanagerconstants.h │ │ │ ├── extensionmanagerlegalnotice.cpp │ │ │ ├── extensionmanagerlegalnotice.h │ │ │ ├── extensionmanagerplugin.cpp │ │ │ ├── extensionmanagersettings.cpp │ │ │ ├── extensionmanagersettings.h │ │ │ ├── extensionmanagertr.h │ │ │ ├── extensionmanagerwidget.cpp │ │ │ ├── extensionmanagerwidget.h │ │ │ ├── extensionsbrowser.cpp │ │ │ ├── extensionsbrowser.h │ │ │ ├── extensionsmodel.cpp │ │ │ ├── extensionsmodel.h │ │ │ ├── remotespec.cpp │ │ │ ├── remotespec.h │ │ │ └── testdata/ │ │ │ └── defaultdata/ │ │ │ └── registry/ │ │ │ ├── 3dlights.vale/ │ │ │ │ └── extension.json │ │ │ ├── cristianadam.dracula/ │ │ │ │ └── extension.json │ │ │ └── theqtcompany.cpp/ │ │ │ └── pack.json │ │ ├── extrapropertyeditormanager/ │ │ │ └── CMakeLists.txt │ │ ├── fakevim/ │ │ │ ├── CMakeLists.txt │ │ │ ├── FakeVim.json.in │ │ │ ├── README │ │ │ ├── fakevim.qbs │ │ │ ├── fakevim.qrc │ │ │ ├── fakevim_test.cpp │ │ │ ├── fakevimactions.cpp │ │ │ ├── fakevimactions.h │ │ │ ├── fakevimhandler.cpp │ │ │ ├── fakevimhandler.h │ │ │ ├── fakevimplugin.cpp │ │ │ └── fakevimtr.h │ │ ├── fossil/ │ │ │ ├── CMakeLists.txt │ │ │ ├── Fossil.json.in │ │ │ ├── annotationhighlighter.cpp │ │ │ ├── annotationhighlighter.h │ │ │ ├── branchinfo.h │ │ │ ├── commiteditor.cpp │ │ │ ├── commiteditor.h │ │ │ ├── configuredialog.cpp │ │ │ ├── configuredialog.h │ │ │ ├── constants.h │ │ │ ├── fossil.qbs │ │ │ ├── fossil.qrc │ │ │ ├── fossilclient.cpp │ │ │ ├── fossilclient.h │ │ │ ├── fossilcommitwidget.cpp │ │ │ ├── fossilcommitwidget.h │ │ │ ├── fossileditor.cpp │ │ │ ├── fossileditor.h │ │ │ ├── fossilplugin.cpp │ │ │ ├── fossilsettings.cpp │ │ │ ├── fossilsettings.h │ │ │ ├── fossiltr.h │ │ │ ├── pullorpushdialog.cpp │ │ │ ├── pullorpushdialog.h │ │ │ ├── revisioninfo.h │ │ │ └── wizard/ │ │ │ ├── fossiljsextension.cpp │ │ │ ├── fossiljsextension.h │ │ │ └── projects/ │ │ │ └── vcs/ │ │ │ └── wizard.json │ │ ├── genericprojectmanager/ │ │ │ ├── CMakeLists.txt │ │ │ ├── GenericProjectManager.json.in │ │ │ ├── genericmakestep.cpp │ │ │ ├── genericmakestep.h │ │ │ ├── genericproject.cpp │ │ │ ├── genericproject.h │ │ │ ├── genericprojectconstants.h │ │ │ ├── genericprojectfileseditor.cpp │ │ │ ├── genericprojectfileseditor.h │ │ │ ├── genericprojectmanager.qbs │ │ │ ├── genericprojectmanagertr.h │ │ │ ├── genericprojectplugin.cpp │ │ │ ├── genericprojectwizard.cpp │ │ │ └── genericprojectwizard.h │ │ ├── git/ │ │ │ ├── CMakeLists.txt │ │ │ ├── Git.json.in │ │ │ ├── annotationhighlighter.cpp │ │ │ ├── annotationhighlighter.h │ │ │ ├── branchadddialog.cpp │ │ │ ├── branchadddialog.h │ │ │ ├── branchcheckoutdialog.cpp │ │ │ ├── branchcheckoutdialog.h │ │ │ ├── branchmodel.cpp │ │ │ ├── branchmodel.h │ │ │ ├── branchview.cpp │ │ │ ├── branchview.h │ │ │ ├── changeselectiondialog.cpp │ │ │ ├── changeselectiondialog.h │ │ │ ├── commitdata.cpp │ │ │ ├── commitdata.h │ │ │ ├── gerrit/ │ │ │ │ ├── authenticationdialog.cpp │ │ │ │ ├── authenticationdialog.h │ │ │ │ ├── branchcombobox.cpp │ │ │ │ ├── branchcombobox.h │ │ │ │ ├── gerritdialog.cpp │ │ │ │ ├── gerritdialog.h │ │ │ │ ├── gerritmodel.cpp │ │ │ │ ├── gerritmodel.h │ │ │ │ ├── gerritoptionspage.cpp │ │ │ │ ├── gerritoptionspage.h │ │ │ │ ├── gerritparameters.cpp │ │ │ │ ├── gerritparameters.h │ │ │ │ ├── gerritplugin.cpp │ │ │ │ ├── gerritplugin.h │ │ │ │ ├── gerritpushdialog.cpp │ │ │ │ ├── gerritpushdialog.h │ │ │ │ ├── gerritremotechooser.cpp │ │ │ │ ├── gerritremotechooser.h │ │ │ │ ├── gerritserver.cpp │ │ │ │ └── gerritserver.h │ │ │ ├── git.qbs │ │ │ ├── git.qrc │ │ │ ├── git_global.h │ │ │ ├── gitclient.cpp │ │ │ ├── gitclient.h │ │ │ ├── gitconstants.h │ │ │ ├── giteditor.cpp │ │ │ ├── giteditor.h │ │ │ ├── gitgrep.cpp │ │ │ ├── gitgrep.h │ │ │ ├── githighlighters.cpp │ │ │ ├── githighlighters.h │ │ │ ├── gitplugin.cpp │ │ │ ├── gitplugin.h │ │ │ ├── gitsettings.cpp │ │ │ ├── gitsettings.h │ │ │ ├── gitsubmiteditor.cpp │ │ │ ├── gitsubmiteditor.h │ │ │ ├── gitsubmiteditorwidget.cpp │ │ │ ├── gitsubmiteditorwidget.h │ │ │ ├── gittr.h │ │ │ ├── gitutils.cpp │ │ │ ├── gitutils.h │ │ │ ├── instantblame.cpp │ │ │ ├── instantblame.h │ │ │ ├── logchangedialog.cpp │ │ │ ├── logchangedialog.h │ │ │ ├── mergetool.cpp │ │ │ ├── mergetool.h │ │ │ ├── remotedialog.cpp │ │ │ ├── remotedialog.h │ │ │ ├── remotemodel.cpp │ │ │ ├── remotemodel.h │ │ │ ├── stashdialog.cpp │ │ │ ├── stashdialog.h │ │ │ ├── temporarypatchfile.cpp │ │ │ └── temporarypatchfile.h │ │ ├── gitlab/ │ │ │ ├── CMakeLists.txt │ │ │ ├── GitLab.json.in │ │ │ ├── gitlab.qbs │ │ │ ├── gitlabclonedialog.cpp │ │ │ ├── gitlabclonedialog.h │ │ │ ├── gitlabdialog.cpp │ │ │ ├── gitlabdialog.h │ │ │ ├── gitlaboptionspage.cpp │ │ │ ├── gitlaboptionspage.h │ │ │ ├── gitlabparameters.cpp │ │ │ ├── gitlabparameters.h │ │ │ ├── gitlabplugin.cpp │ │ │ ├── gitlabplugin.h │ │ │ ├── gitlabprojectsettings.cpp │ │ │ ├── gitlabprojectsettings.h │ │ │ ├── gitlabtr.h │ │ │ ├── queryrunner.cpp │ │ │ ├── queryrunner.h │ │ │ ├── resultparser.cpp │ │ │ └── resultparser.h │ │ ├── glsleditor/ │ │ │ ├── CMakeLists.txt │ │ │ ├── GLSLEditor.json.in │ │ │ ├── glslautocompleter.cpp │ │ │ ├── glslautocompleter.h │ │ │ ├── glslcompletionassist.cpp │ │ │ ├── glslcompletionassist.h │ │ │ ├── glsleditor.cpp │ │ │ ├── glsleditor.h │ │ │ ├── glsleditor.qbs │ │ │ ├── glsleditorconstants.h │ │ │ ├── glsleditorplugin.cpp │ │ │ ├── glsleditortr.h │ │ │ ├── glslhighlighter.cpp │ │ │ ├── glslhighlighter.h │ │ │ ├── glslindenter.cpp │ │ │ └── glslindenter.h │ │ ├── gnprojectmanager/ │ │ │ ├── CMakeLists.txt │ │ │ ├── GNProjectManager.json.in │ │ │ ├── gnactionsmanager.cpp │ │ │ ├── gnactionsmanager.h │ │ │ ├── gnbuildconfiguration.cpp │ │ │ ├── gnbuildconfiguration.h │ │ │ ├── gnbuildstep.cpp │ │ │ ├── gnbuildstep.h │ │ │ ├── gnbuildsystem.cpp │ │ │ ├── gnbuildsystem.h │ │ │ ├── gninfoparser.cpp │ │ │ ├── gninfoparser.h │ │ │ ├── gnkitaspect.cpp │ │ │ ├── gnkitaspect.h │ │ │ ├── gnpluginconstants.h │ │ │ ├── gnproject.cpp │ │ │ ├── gnproject.h │ │ │ ├── gnprojectmanager.qbs │ │ │ ├── gnprojectmanagertr.h │ │ │ ├── gnprojectnodes.cpp │ │ │ ├── gnprojectnodes.h │ │ │ ├── gnprojectparser.cpp │ │ │ ├── gnprojectparser.h │ │ │ ├── gnprojectplugin.cpp │ │ │ ├── gntarget.h │ │ │ ├── gntools.cpp │ │ │ ├── gntools.h │ │ │ ├── gntoolssettingspage.cpp │ │ │ ├── gntoolssettingspage.h │ │ │ ├── gnutils.cpp │ │ │ ├── gnutils.h │ │ │ ├── ninjaparser.cpp │ │ │ └── ninjaparser.h │ │ ├── gradle/ │ │ │ ├── CMakeLists.txt │ │ │ ├── Gradle.json.in │ │ │ ├── gradle.qbs │ │ │ ├── gradleplugin.cpp │ │ │ ├── gradleproject.cpp │ │ │ └── gradleproject.h │ │ ├── helloworld/ │ │ │ ├── CMakeLists.txt │ │ │ ├── HelloWorld.json.in │ │ │ ├── helloworld.qbs │ │ │ ├── helloworldplugin.cpp │ │ │ ├── helloworldtr.h │ │ │ ├── helloworldwindow.cpp │ │ │ └── helloworldwindow.h │ │ ├── help/ │ │ │ ├── CMakeLists.txt │ │ │ ├── Help.json.in │ │ │ ├── docsettingspage.cpp │ │ │ ├── docsettingspage.h │ │ │ ├── filtersettingspage.cpp │ │ │ ├── filtersettingspage.h │ │ │ ├── help.qbs │ │ │ ├── helpconstants.h │ │ │ ├── helpfindsupport.cpp │ │ │ ├── helpfindsupport.h │ │ │ ├── helpindexfilter.cpp │ │ │ ├── helpindexfilter.h │ │ │ ├── helpmanager.cpp │ │ │ ├── helpmanager.h │ │ │ ├── helpplugin.cpp │ │ │ ├── helpplugin.h │ │ │ ├── helptr.h │ │ │ ├── helpviewer.cpp │ │ │ ├── helpviewer.h │ │ │ ├── helpwidget.cpp │ │ │ ├── helpwidget.h │ │ │ ├── litehtmlhelpviewer.cpp │ │ │ ├── litehtmlhelpviewer.h │ │ │ ├── localhelpmanager.cpp │ │ │ ├── localhelpmanager.h │ │ │ ├── macwebkithelpviewer.h │ │ │ ├── macwebkithelpviewer.mm │ │ │ ├── offline-dark.css │ │ │ ├── openpagesmanager.cpp │ │ │ ├── openpagesmanager.h │ │ │ ├── openpagesswitcher.cpp │ │ │ ├── openpagesswitcher.h │ │ │ ├── openpageswidget.cpp │ │ │ ├── openpageswidget.h │ │ │ ├── searchtaskhandler.cpp │ │ │ ├── searchtaskhandler.h │ │ │ ├── searchwidget.cpp │ │ │ ├── searchwidget.h │ │ │ ├── textbrowserhelpviewer.cpp │ │ │ ├── textbrowserhelpviewer.h │ │ │ ├── webenginehelpviewer.cpp │ │ │ ├── webenginehelpviewer.h │ │ │ ├── xbelsupport.cpp │ │ │ └── xbelsupport.h │ │ ├── imageviewer/ │ │ │ ├── CMakeLists.txt │ │ │ ├── ImageViewer.json.in │ │ │ ├── exportdialog.cpp │ │ │ ├── exportdialog.h │ │ │ ├── imageview.cpp │ │ │ ├── imageview.h │ │ │ ├── imageviewer.cpp │ │ │ ├── imageviewer.h │ │ │ ├── imageviewer.qbs │ │ │ ├── imageviewerconstants.h │ │ │ ├── imageviewerfile.cpp │ │ │ ├── imageviewerfile.h │ │ │ ├── imageviewerplugin.cpp │ │ │ ├── imageviewertr.h │ │ │ ├── multiexportdialog.cpp │ │ │ └── multiexportdialog.h │ │ ├── incredibuild/ │ │ │ ├── CMakeLists.txt │ │ │ ├── IncrediBuild.json.in │ │ │ ├── buildconsolebuildstep.cpp │ │ │ ├── buildconsolebuildstep.h │ │ │ ├── cmakecommandbuilder.cpp │ │ │ ├── cmakecommandbuilder.h │ │ │ ├── commandbuilder.cpp │ │ │ ├── commandbuilder.h │ │ │ ├── commandbuilderaspect.cpp │ │ │ ├── commandbuilderaspect.h │ │ │ ├── ibconsolebuildstep.cpp │ │ │ ├── ibconsolebuildstep.h │ │ │ ├── incredibuild.qbs │ │ │ ├── incredibuild_global.h │ │ │ ├── incredibuildconstants.h │ │ │ ├── incredibuildplugin.cpp │ │ │ ├── incredibuildtr.h │ │ │ ├── makecommandbuilder.cpp │ │ │ └── makecommandbuilder.h │ │ ├── insight/ │ │ │ └── insightmodel.cpp │ │ ├── ios/ │ │ │ ├── CMakeLists.txt │ │ │ ├── Ios.json.in │ │ │ ├── devicectlutils.cpp │ │ │ ├── devicectlutils.h │ │ │ ├── ios.qbs │ │ │ ├── ios.qrc │ │ │ ├── iosbuildconfiguration.cpp │ │ │ ├── iosbuildconfiguration.h │ │ │ ├── iosbuildstep.cpp │ │ │ ├── iosbuildstep.h │ │ │ ├── iosconfigurations.cpp │ │ │ ├── iosconfigurations.h │ │ │ ├── iosconstants.h │ │ │ ├── iosdeploystep.cpp │ │ │ ├── iosdeploystep.h │ │ │ ├── iosdevice.cpp │ │ │ ├── iosdevice.h │ │ │ ├── iosdsymbuildstep.cpp │ │ │ ├── iosdsymbuildstep.h │ │ │ ├── iosplugin.cpp │ │ │ ├── iosprobe.cpp │ │ │ ├── iosprobe.h │ │ │ ├── iosqtversion.cpp │ │ │ ├── iosqtversion.h │ │ │ ├── iosrunconfiguration.cpp │ │ │ ├── iosrunconfiguration.h │ │ │ ├── iosrunner.cpp │ │ │ ├── iosrunner.h │ │ │ ├── iossettingspage.cpp │ │ │ ├── iossettingspage.h │ │ │ ├── iossimulator.cpp │ │ │ ├── iossimulator.h │ │ │ ├── iostoolhandler.cpp │ │ │ ├── iostoolhandler.h │ │ │ ├── iostr.h │ │ │ ├── simulatorcontrol.cpp │ │ │ └── simulatorcontrol.h │ │ ├── languageclient/ │ │ │ ├── CMakeLists.txt │ │ │ ├── LanguageClient.json.in │ │ │ ├── callandtypehierarchy.cpp │ │ │ ├── callandtypehierarchy.h │ │ │ ├── client.cpp │ │ │ ├── client.h │ │ │ ├── clientrequest.cpp │ │ │ ├── clientrequest.h │ │ │ ├── currentdocumentsymbolsrequest.cpp │ │ │ ├── currentdocumentsymbolsrequest.h │ │ │ ├── diagnosticmanager.cpp │ │ │ ├── diagnosticmanager.h │ │ │ ├── documentsymbolcache.cpp │ │ │ ├── documentsymbolcache.h │ │ │ ├── dynamiccapabilities.cpp │ │ │ ├── dynamiccapabilities.h │ │ │ ├── foldingrangesupport.cpp │ │ │ ├── foldingrangesupport.h │ │ │ ├── languageclient.qbs │ │ │ ├── languageclient_global.h │ │ │ ├── languageclientcompletionassist.cpp │ │ │ ├── languageclientcompletionassist.h │ │ │ ├── languageclientformatter.cpp │ │ │ ├── languageclientformatter.h │ │ │ ├── languageclientfunctionhint.cpp │ │ │ ├── languageclientfunctionhint.h │ │ │ ├── languageclienthoverhandler.cpp │ │ │ ├── languageclienthoverhandler.h │ │ │ ├── languageclientinterface.cpp │ │ │ ├── languageclientinterface.h │ │ │ ├── languageclientmanager.cpp │ │ │ ├── languageclientmanager.h │ │ │ ├── languageclientoutline.cpp │ │ │ ├── languageclientoutline.h │ │ │ ├── languageclientplugin.cpp │ │ │ ├── languageclientquickfix.cpp │ │ │ ├── languageclientquickfix.h │ │ │ ├── languageclientsettings.cpp │ │ │ ├── languageclientsettings.h │ │ │ ├── languageclientsymbolsupport.cpp │ │ │ ├── languageclientsymbolsupport.h │ │ │ ├── languageclienttr.h │ │ │ ├── languageclientutils.cpp │ │ │ ├── languageclientutils.h │ │ │ ├── locatorfilter.cpp │ │ │ ├── locatorfilter.h │ │ │ ├── lspinspector.cpp │ │ │ ├── lspinspector.h │ │ │ ├── lualanguageclient/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── LuaLanguageClient.json.in │ │ │ │ ├── lualanguageclient.cpp │ │ │ │ └── lualanguageclient.qbs │ │ │ ├── mimetypesaspect.cpp │ │ │ ├── mimetypesaspect.h │ │ │ ├── progressmanager.cpp │ │ │ ├── progressmanager.h │ │ │ ├── semantichighlightsupport.cpp │ │ │ ├── semantichighlightsupport.h │ │ │ ├── snippet.cpp │ │ │ └── snippet.h │ │ ├── learning/ │ │ │ ├── CMakeLists.txt │ │ │ ├── Learning.json.in │ │ │ ├── learning.qbs │ │ │ ├── learning_test.qrc │ │ │ ├── learningplugin.cpp │ │ │ ├── learningsettings.cpp │ │ │ ├── learningsettings.h │ │ │ ├── learningtr.h │ │ │ ├── onboardingwizard.cpp │ │ │ ├── onboardingwizard.h │ │ │ ├── overview/ │ │ │ │ ├── recommendations.json │ │ │ │ └── recommendations.schema.json │ │ │ ├── overviewwelcomepage.cpp │ │ │ ├── overviewwelcomepage.h │ │ │ ├── qtacademywelcomepage.cpp │ │ │ ├── qtacademywelcomepage.h │ │ │ ├── scripts/ │ │ │ │ ├── .gitignore │ │ │ │ ├── pyproject.toml │ │ │ │ └── updatethumbnails.py │ │ │ └── testdata/ │ │ │ └── courses.json │ │ ├── lua/ │ │ │ ├── CMakeLists.txt │ │ │ ├── Lua.json.in │ │ │ ├── README.md │ │ │ ├── bindings/ │ │ │ │ ├── action.cpp │ │ │ │ ├── async.h │ │ │ │ ├── core.cpp │ │ │ │ ├── fetch.cpp │ │ │ │ ├── gui.cpp │ │ │ │ ├── hook.cpp │ │ │ │ ├── inheritance.h │ │ │ │ ├── install.cpp │ │ │ │ ├── json.cpp │ │ │ │ ├── localsocket.cpp │ │ │ │ ├── macro.cpp │ │ │ │ ├── menu.cpp │ │ │ │ ├── messagemanager.cpp │ │ │ │ ├── project.cpp │ │ │ │ ├── qt.cpp │ │ │ │ ├── qtcprocess.cpp │ │ │ │ ├── settings.cpp │ │ │ │ ├── taskhub.cpp │ │ │ │ ├── texteditor.cpp │ │ │ │ ├── translate.cpp │ │ │ │ ├── utils.cpp │ │ │ │ └── utils.h │ │ │ ├── generateqtbindings.cpp │ │ │ ├── lua.qbs │ │ │ ├── lua_global.h │ │ │ ├── luaengine.cpp │ │ │ ├── luaengine.h │ │ │ ├── luaexpander.cpp │ │ │ ├── luaplugin.cpp │ │ │ ├── luapluginspec.cpp │ │ │ ├── luapluginspec.h │ │ │ ├── luaqttypes.cpp │ │ │ ├── luaqttypes.h │ │ │ ├── luatr.h │ │ │ ├── luauibindings.cpp │ │ │ ├── meta/ │ │ │ │ ├── action.lua │ │ │ │ ├── async.lua │ │ │ │ ├── core.lua │ │ │ │ ├── fetch.lua │ │ │ │ ├── gui.lua │ │ │ │ ├── install.lua │ │ │ │ ├── json.lua │ │ │ │ ├── localsocket.lua │ │ │ │ ├── lsp.lua │ │ │ │ ├── macro.lua │ │ │ │ ├── menu.lua │ │ │ │ ├── messagemanager.lua │ │ │ │ ├── process.lua │ │ │ │ ├── project.lua │ │ │ │ ├── qt.lua │ │ │ │ ├── qtc.lua │ │ │ │ ├── settings.lua │ │ │ │ ├── simpletypes.lua │ │ │ │ ├── taskhub.lua │ │ │ │ ├── texteditor.lua │ │ │ │ ├── translate.lua │ │ │ │ ├── utils.lua │ │ │ │ └── widgets.lua │ │ │ ├── metabackup/ │ │ │ │ └── qobject.lua │ │ │ ├── scripts/ │ │ │ │ ├── ASYNC-LICENSE.txt │ │ │ │ ├── INSPECT-LICENSE.txt │ │ │ │ ├── async.lua │ │ │ │ ├── ilua.lua │ │ │ │ └── inspect.lua │ │ │ └── wizards/ │ │ │ ├── luafile/ │ │ │ │ ├── script.lua │ │ │ │ └── wizard.json │ │ │ ├── plugin/ │ │ │ │ ├── .luarc.json │ │ │ │ ├── init.lua.tpl │ │ │ │ ├── plugin.lua.tpl │ │ │ │ ├── project.json │ │ │ │ └── wizard.json │ │ │ ├── qcscript/ │ │ │ │ ├── script.lua │ │ │ │ └── wizard.json │ │ │ └── wizards.qrc │ │ ├── macros/ │ │ │ ├── CMakeLists.txt │ │ │ ├── Macros.json.in │ │ │ ├── actionmacrohandler.cpp │ │ │ ├── actionmacrohandler.h │ │ │ ├── findmacrohandler.cpp │ │ │ ├── findmacrohandler.h │ │ │ ├── imacrohandler.cpp │ │ │ ├── imacrohandler.h │ │ │ ├── macro.cpp │ │ │ ├── macro.h │ │ │ ├── macroevent.cpp │ │ │ ├── macroevent.h │ │ │ ├── macrolocatorfilter.cpp │ │ │ ├── macrolocatorfilter.h │ │ │ ├── macromanager.cpp │ │ │ ├── macromanager.h │ │ │ ├── macrooptionspage.cpp │ │ │ ├── macrooptionspage.h │ │ │ ├── macros.qbs │ │ │ ├── macros.qrc │ │ │ ├── macrosconstants.h │ │ │ ├── macrosplugin.cpp │ │ │ ├── macrostr.h │ │ │ ├── macrotextfind.cpp │ │ │ ├── macrotextfind.h │ │ │ ├── texteditormacrohandler.cpp │ │ │ └── texteditormacrohandler.h │ │ ├── mcpserver/ │ │ │ ├── CMakeLists.txt │ │ │ ├── LICENSE │ │ │ ├── issuesmanager.cpp │ │ │ ├── issuesmanager.h │ │ │ ├── mcpcommands.cpp │ │ │ ├── mcpcommands.h │ │ │ ├── mcpserver.json.in │ │ │ ├── mcpserver.qbs │ │ │ ├── mcpserverconstants.h │ │ │ ├── mcpserverplugin.cpp │ │ │ ├── mcpservertr.h │ │ │ └── schemas/ │ │ │ ├── issues-schema.json │ │ │ └── search-results-schema.json │ │ ├── mcusupport/ │ │ │ ├── CMakeLists.txt │ │ │ ├── McuSupport.json.in │ │ │ ├── dialogs/ │ │ │ │ ├── mcukitcreationdialog.cpp │ │ │ │ └── mcukitcreationdialog.h │ │ │ ├── mcuabstractpackage.h │ │ │ ├── mcuabstracttargetfactory.h │ │ │ ├── mcubuildstep.cpp │ │ │ ├── mcubuildstep.h │ │ │ ├── mcuhelpers.cpp │ │ │ ├── mcuhelpers.h │ │ │ ├── mcukitaspect.cpp │ │ │ ├── mcukitaspect.h │ │ │ ├── mcukitmanager.cpp │ │ │ ├── mcukitmanager.h │ │ │ ├── mculegacyconstants.h │ │ │ ├── mcupackage.cpp │ │ │ ├── mcupackage.h │ │ │ ├── mcuqmlprojectnode.cpp │ │ │ ├── mcuqmlprojectnode.h │ │ │ ├── mcusupport.qbs │ │ │ ├── mcusupport.qrc │ │ │ ├── mcusupport_global.h │ │ │ ├── mcusupportconstants.h │ │ │ ├── mcusupportdevice.cpp │ │ │ ├── mcusupportdevice.h │ │ │ ├── mcusupportimportprovider.cpp │ │ │ ├── mcusupportimportprovider.h │ │ │ ├── mcusupportoptions.cpp │ │ │ ├── mcusupportoptions.h │ │ │ ├── mcusupportoptionspage.cpp │ │ │ ├── mcusupportoptionspage.h │ │ │ ├── mcusupportplugin.cpp │ │ │ ├── mcusupportplugin.h │ │ │ ├── mcusupportrunconfiguration.cpp │ │ │ ├── mcusupportrunconfiguration.h │ │ │ ├── mcusupportsdk.cpp │ │ │ ├── mcusupportsdk.h │ │ │ ├── mcusupporttr.h │ │ │ ├── mcusupportversiondetection.cpp │ │ │ ├── mcusupportversiondetection.h │ │ │ ├── mcutarget.cpp │ │ │ ├── mcutarget.h │ │ │ ├── mcutargetdescription.h │ │ │ ├── mcutargetfactory.cpp │ │ │ ├── mcutargetfactory.h │ │ │ ├── mcutargetfactorylegacy.cpp │ │ │ ├── mcutargetfactorylegacy.h │ │ │ ├── settingshandler.cpp │ │ │ ├── settingshandler.h │ │ │ ├── test/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── armgcc_ek_ra6m3g_baremetal_json.h │ │ │ │ ├── armgcc_ek_ra6m3g_freertos_json.h │ │ │ │ ├── armgcc_example_baremetal_json.h │ │ │ │ ├── armgcc_mimxrt1050_evk_baremetal_json.h │ │ │ │ ├── armgcc_mimxrt1050_evk_freertos_json.h │ │ │ │ ├── armgcc_mimxrt1060_evk_baremetal_json.h │ │ │ │ ├── armgcc_mimxrt1064_evk_baremetal_json.h │ │ │ │ ├── armgcc_mimxrt1064_evk_freertos_json.h │ │ │ │ ├── armgcc_mimxrt1170_evk_freertos_json.h │ │ │ │ ├── armgcc_stm32f469i_discovery_baremetal_json.h │ │ │ │ ├── armgcc_stm32f769i_discovery_baremetal_json.h │ │ │ │ ├── armgcc_stm32f769i_discovery_freertos_json.h │ │ │ │ ├── armgcc_stm32h750b_discovery_baremetal_json.h │ │ │ │ ├── errors_json.h │ │ │ │ ├── gcc_desktop_json.h │ │ │ │ ├── ghs_rh850_d1m1a_baremetal_json.h │ │ │ │ ├── ghs_tviic2d4m_baremetal_json.h │ │ │ │ ├── ghs_tviic2d6m_baremetal_json.h │ │ │ │ ├── iar_ek_ra6m3g_baremetal_json.h │ │ │ │ ├── iar_ek_ra6m3g_freertos_json.h │ │ │ │ ├── iar_example_baremetal_json.h │ │ │ │ ├── iar_mimxrt1050_evk_baremetal_json.h │ │ │ │ ├── iar_mimxrt1050_evk_freertos_json.h │ │ │ │ ├── iar_mimxrt1060_evk_baremetal_json.h │ │ │ │ ├── iar_mimxrt1064_evk_baremetal_json.h │ │ │ │ ├── iar_mimxrt1064_evk_freertos_json.h │ │ │ │ ├── iar_mimxrt1170_evk_freertos_json.h │ │ │ │ ├── iar_stm32f469i_discovery_baremetal_json.h │ │ │ │ ├── iar_stm32f769i_discovery_baremetal_json.h │ │ │ │ ├── iar_stm32f769i_discovery_freertos_json.h │ │ │ │ ├── iar_stm32h750b_discovery_baremetal_json.h │ │ │ │ ├── iar_tviic2d4m_baremetal_json.h │ │ │ │ ├── iar_tviic2d6m_baremetal_json.h │ │ │ │ ├── mingw_desktop_json.h │ │ │ │ ├── msvc_desktop_json.h │ │ │ │ ├── packagemock.h │ │ │ │ ├── settingshandlermock.h │ │ │ │ ├── unittest.cpp │ │ │ │ ├── unittest.h │ │ │ │ └── wildcards_test_kit_json.h │ │ │ └── wizards/ │ │ │ ├── application/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── main.qml.tpl │ │ │ │ └── wizard.json │ │ │ ├── qmlproject/ │ │ │ │ ├── BackendObject.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── LICENSE │ │ │ │ ├── Qul.cmake │ │ │ │ ├── component.qml.tpl │ │ │ │ ├── main.qml.tpl │ │ │ │ ├── main_big.qml.tpl │ │ │ │ ├── module.qmlproject.tpl │ │ │ │ ├── project.qmlproject.tpl │ │ │ │ ├── translation.nb_NO.ts │ │ │ │ └── wizard.json │ │ │ └── qmlproject-empty/ │ │ │ ├── CMakeLists.txt │ │ │ ├── main.qml.tpl │ │ │ ├── project.qmlproject.tpl │ │ │ └── wizard.json │ │ ├── mercurial/ │ │ │ ├── CMakeLists.txt │ │ │ ├── Mercurial.json.in │ │ │ ├── annotationhighlighter.cpp │ │ │ ├── annotationhighlighter.h │ │ │ ├── authenticationdialog.cpp │ │ │ ├── authenticationdialog.h │ │ │ ├── commiteditor.cpp │ │ │ ├── commiteditor.h │ │ │ ├── constants.h │ │ │ ├── mercurial.qbs │ │ │ ├── mercurialclient.cpp │ │ │ ├── mercurialclient.h │ │ │ ├── mercurialcommitwidget.cpp │ │ │ ├── mercurialcommitwidget.h │ │ │ ├── mercurialeditor.cpp │ │ │ ├── mercurialeditor.h │ │ │ ├── mercurialplugin.cpp │ │ │ ├── mercurialsettings.cpp │ │ │ ├── mercurialsettings.h │ │ │ ├── mercurialtr.h │ │ │ ├── revertdialog.cpp │ │ │ ├── revertdialog.h │ │ │ ├── srcdestdialog.cpp │ │ │ └── srcdestdialog.h │ │ ├── mesonprojectmanager/ │ │ │ ├── CMakeLists.txt │ │ │ ├── MesonProjectManager.json.in │ │ │ ├── buildoptions.h │ │ │ ├── buildoptionsmodel.cpp │ │ │ ├── buildoptionsmodel.h │ │ │ ├── common.h │ │ │ ├── icons/ │ │ │ │ └── README.txt │ │ │ ├── kitdata.h │ │ │ ├── mesonactionsmanager.cpp │ │ │ ├── mesonactionsmanager.h │ │ │ ├── mesonbuildconfiguration.cpp │ │ │ ├── mesonbuildconfiguration.h │ │ │ ├── mesonbuildstep.cpp │ │ │ ├── mesonbuildstep.h │ │ │ ├── mesonbuildsystem.cpp │ │ │ ├── mesonbuildsystem.h │ │ │ ├── mesoninfoparser.cpp │ │ │ ├── mesoninfoparser.h │ │ │ ├── mesonoutputparser.cpp │ │ │ ├── mesonoutputparser.h │ │ │ ├── mesonpluginconstants.h │ │ │ ├── mesonproject.cpp │ │ │ ├── mesonproject.h │ │ │ ├── mesonprojectimporter.cpp │ │ │ ├── mesonprojectimporter.h │ │ │ ├── mesonprojectmanager.qbs │ │ │ ├── mesonprojectmanagertr.h │ │ │ ├── mesonprojectnodes.cpp │ │ │ ├── mesonprojectnodes.h │ │ │ ├── mesonprojectparser.cpp │ │ │ ├── mesonprojectparser.h │ │ │ ├── mesonprojectplugin.cpp │ │ │ ├── mesonrunconfiguration.cpp │ │ │ ├── mesonrunconfiguration.h │ │ │ ├── mesontools.cpp │ │ │ ├── mesontools.h │ │ │ ├── ninjaparser.cpp │ │ │ ├── ninjaparser.h │ │ │ ├── settings.cpp │ │ │ ├── settings.h │ │ │ ├── target.h │ │ │ ├── tests/ │ │ │ │ ├── resources/ │ │ │ │ │ └── simplecproject/ │ │ │ │ │ ├── main.c │ │ │ │ │ └── meson.build │ │ │ │ ├── testmesoninfoparser.cpp │ │ │ │ ├── testmesonparser.cpp │ │ │ │ ├── testmesonwrapper.cpp │ │ │ │ └── testninjaparser.cpp │ │ │ ├── toolkitaspectwidget.cpp │ │ │ ├── toolkitaspectwidget.h │ │ │ ├── toolssettingsaccessor.cpp │ │ │ ├── toolssettingsaccessor.h │ │ │ ├── toolssettingspage.cpp │ │ │ └── toolssettingspage.h │ │ ├── modeleditor/ │ │ │ ├── CMakeLists.txt │ │ │ ├── ModelEditor.json.in │ │ │ ├── actionhandler.cpp │ │ │ ├── actionhandler.h │ │ │ ├── classviewcontroller.cpp │ │ │ ├── classviewcontroller.h │ │ │ ├── componentviewcontroller.cpp │ │ │ ├── componentviewcontroller.h │ │ │ ├── diagramsviewmanager.cpp │ │ │ ├── diagramsviewmanager.h │ │ │ ├── dragtool.cpp │ │ │ ├── dragtool.h │ │ │ ├── editordiagramview.cpp │ │ │ ├── editordiagramview.h │ │ │ ├── elementtasks.cpp │ │ │ ├── elementtasks.h │ │ │ ├── extdocumentcontroller.cpp │ │ │ ├── extdocumentcontroller.h │ │ │ ├── extpropertiesmview.cpp │ │ │ ├── extpropertiesmview.h │ │ │ ├── jsextension.cpp │ │ │ ├── jsextension.h │ │ │ ├── modeldocument.cpp │ │ │ ├── modeldocument.h │ │ │ ├── modeleditor.cpp │ │ │ ├── modeleditor.h │ │ │ ├── modeleditor.qbs │ │ │ ├── modeleditor_constants.h │ │ │ ├── modeleditor_global.h │ │ │ ├── modeleditor_plugin.cpp │ │ │ ├── modeleditor_plugin.h │ │ │ ├── modeleditorfactory.cpp │ │ │ ├── modeleditorfactory.h │ │ │ ├── modeleditortr.h │ │ │ ├── modelindexer.cpp │ │ │ ├── modelindexer.h │ │ │ ├── modelsmanager.cpp │ │ │ ├── modelsmanager.h │ │ │ ├── modelutilities.cpp │ │ │ ├── modelutilities.h │ │ │ ├── openelementvisitor.cpp │ │ │ ├── openelementvisitor.h │ │ │ ├── packageviewcontroller.cpp │ │ │ ├── packageviewcontroller.h │ │ │ ├── pxnodecontroller.cpp │ │ │ ├── pxnodecontroller.h │ │ │ ├── pxnodeutilities.cpp │ │ │ ├── pxnodeutilities.h │ │ │ ├── resources/ │ │ │ │ ├── modeleditor.qrc │ │ │ │ └── wizards/ │ │ │ │ └── modeling/ │ │ │ │ ├── model/ │ │ │ │ │ ├── file.qmodel │ │ │ │ │ └── wizard.json │ │ │ │ └── scratch/ │ │ │ │ ├── file.qmodel │ │ │ │ └── wizard.json │ │ │ ├── uicontroller.cpp │ │ │ └── uicontroller.h │ │ ├── multipropertyeditor/ │ │ │ ├── CMakeLists.txt │ │ │ ├── MultiPropertyEditor.json.in │ │ │ ├── multipropertyeditoraction.cpp │ │ │ ├── multipropertyeditoraction.h │ │ │ ├── multipropertyeditorplugin.cpp │ │ │ ├── multipropertyeditorplugin.h │ │ │ ├── multipropertyeditorview.cpp │ │ │ └── multipropertyeditorview.h │ │ ├── nim/ │ │ │ ├── CMakeLists.txt │ │ │ ├── Nim.json.in │ │ │ ├── editor/ │ │ │ │ ├── nimcompletionassistprovider.cpp │ │ │ │ ├── nimcompletionassistprovider.h │ │ │ │ ├── nimeditorfactory.cpp │ │ │ │ ├── nimeditorfactory.h │ │ │ │ ├── nimhighlighter.cpp │ │ │ │ ├── nimhighlighter.h │ │ │ │ ├── nimindenter.cpp │ │ │ │ ├── nimindenter.h │ │ │ │ ├── nimtexteditorwidget.cpp │ │ │ │ └── nimtexteditorwidget.h │ │ │ ├── nim.qbs │ │ │ ├── nim.qrc │ │ │ ├── nimconstants.h │ │ │ ├── nimplugin.cpp │ │ │ ├── nimtr.h │ │ │ ├── project/ │ │ │ │ ├── nimblebuildstep.cpp │ │ │ │ ├── nimblebuildstep.h │ │ │ │ ├── nimbleproject.cpp │ │ │ │ ├── nimbleproject.h │ │ │ │ ├── nimblerunconfiguration.cpp │ │ │ │ ├── nimblerunconfiguration.h │ │ │ │ ├── nimbletaskstep.cpp │ │ │ │ ├── nimbletaskstep.h │ │ │ │ ├── nimcompilerbuildstep.cpp │ │ │ │ ├── nimcompilerbuildstep.h │ │ │ │ ├── nimcompilercleanstep.cpp │ │ │ │ ├── nimcompilercleanstep.h │ │ │ │ ├── nimoutputtaskparser.cpp │ │ │ │ ├── nimoutputtaskparser.h │ │ │ │ ├── nimproject.cpp │ │ │ │ ├── nimproject.h │ │ │ │ ├── nimrunconfiguration.cpp │ │ │ │ ├── nimrunconfiguration.h │ │ │ │ ├── nimtoolchain.cpp │ │ │ │ └── nimtoolchain.h │ │ │ ├── settings/ │ │ │ │ ├── nimcodestylepreferencesfactory.cpp │ │ │ │ ├── nimcodestylepreferencesfactory.h │ │ │ │ ├── nimcodestylepreferenceswidget.cpp │ │ │ │ ├── nimcodestylepreferenceswidget.h │ │ │ │ ├── nimcodestylesettingspage.cpp │ │ │ │ ├── nimcodestylesettingspage.h │ │ │ │ ├── nimsettings.cpp │ │ │ │ └── nimsettings.h │ │ │ ├── suggest/ │ │ │ │ ├── client.cpp │ │ │ │ ├── client.h │ │ │ │ ├── clientrequests.cpp │ │ │ │ ├── clientrequests.h │ │ │ │ ├── nimsuggest.cpp │ │ │ │ ├── nimsuggest.h │ │ │ │ ├── nimsuggestcache.cpp │ │ │ │ ├── nimsuggestcache.h │ │ │ │ ├── server.cpp │ │ │ │ ├── server.h │ │ │ │ ├── sexprlexer.h │ │ │ │ └── sexprparser.h │ │ │ └── tools/ │ │ │ ├── nimlexer.cpp │ │ │ ├── nimlexer.h │ │ │ └── sourcecodestream.h │ │ ├── perforce/ │ │ │ ├── CMakeLists.txt │ │ │ ├── Perforce.json.in │ │ │ ├── annotationhighlighter.cpp │ │ │ ├── annotationhighlighter.h │ │ │ ├── changenumberdialog.cpp │ │ │ ├── changenumberdialog.h │ │ │ ├── pendingchangesdialog.cpp │ │ │ ├── pendingchangesdialog.h │ │ │ ├── perforce.qbs │ │ │ ├── perforcechecker.cpp │ │ │ ├── perforcechecker.h │ │ │ ├── perforceeditor.cpp │ │ │ ├── perforceeditor.h │ │ │ ├── perforceplugin.cpp │ │ │ ├── perforceplugin.h │ │ │ ├── perforcesettings.cpp │ │ │ ├── perforcesettings.h │ │ │ ├── perforcesubmiteditor.cpp │ │ │ ├── perforcesubmiteditor.h │ │ │ ├── perforcesubmiteditorwidget.cpp │ │ │ ├── perforcesubmiteditorwidget.h │ │ │ └── perforcetr.h │ │ ├── perfprofiler/ │ │ │ ├── CMakeLists.txt │ │ │ ├── PerfProfiler.json.in │ │ │ ├── PerfProfilerFlameGraphView.qml │ │ │ ├── perfconfigeventsmodel.cpp │ │ │ ├── perfconfigeventsmodel.h │ │ │ ├── perfdatareader.cpp │ │ │ ├── perfdatareader.h │ │ │ ├── perfevent.h │ │ │ ├── perfeventtype.h │ │ │ ├── perfloaddialog.cpp │ │ │ ├── perfloaddialog.h │ │ │ ├── perfprofiler.qbs │ │ │ ├── perfprofiler.qrc │ │ │ ├── perfprofiler_global.h │ │ │ ├── perfprofilerconstants.h │ │ │ ├── perfprofilerflamegraphmodel.cpp │ │ │ ├── perfprofilerflamegraphmodel.h │ │ │ ├── perfprofilerflamegraphview.cpp │ │ │ ├── perfprofilerflamegraphview.h │ │ │ ├── perfprofilerplugin.cpp │ │ │ ├── perfprofilerruncontrol.cpp │ │ │ ├── perfprofilerruncontrol.h │ │ │ ├── perfprofilerstatisticsmodel.cpp │ │ │ ├── perfprofilerstatisticsmodel.h │ │ │ ├── perfprofilerstatisticsview.cpp │ │ │ ├── perfprofilerstatisticsview.h │ │ │ ├── perfprofilertool.cpp │ │ │ ├── perfprofilertool.h │ │ │ ├── perfprofilertr.h │ │ │ ├── perfprofilertracefile.cpp │ │ │ ├── perfprofilertracefile.h │ │ │ ├── perfprofilertracemanager.cpp │ │ │ ├── perfprofilertracemanager.h │ │ │ ├── perfprofilertraceview.cpp │ │ │ ├── perfprofilertraceview.h │ │ │ ├── perfresourcecounter.h │ │ │ ├── perfrunconfigurationaspect.cpp │ │ │ ├── perfrunconfigurationaspect.h │ │ │ ├── perfsettings.cpp │ │ │ ├── perfsettings.h │ │ │ ├── perftimelinemodel.cpp │ │ │ ├── perftimelinemodel.h │ │ │ ├── perftimelinemodelmanager.cpp │ │ │ ├── perftimelinemodelmanager.h │ │ │ ├── perftimelineresourcesrenderpass.cpp │ │ │ ├── perftimelineresourcesrenderpass.h │ │ │ ├── perftracepointdialog.cpp │ │ │ ├── perftracepointdialog.h │ │ │ ├── tests/ │ │ │ │ ├── perfprofilertracefile_test.cpp │ │ │ │ ├── perfprofilertracefile_test.h │ │ │ │ ├── perfresourcecounter_test.cpp │ │ │ │ ├── perfresourcecounter_test.h │ │ │ │ ├── probe.file.ptr │ │ │ │ └── tests.qrc │ │ │ └── tracepoints.sh │ │ ├── plugins.qbs │ │ ├── projectexplorer/ │ │ │ ├── CMakeLists.txt │ │ │ ├── ProjectExplorer.json.in │ │ │ ├── abi.cpp │ │ │ ├── abi.h │ │ │ ├── abiwidget.cpp │ │ │ ├── abiwidget.h │ │ │ ├── abstractprocessstep.cpp │ │ │ ├── abstractprocessstep.h │ │ │ ├── allprojectsfilter.cpp │ │ │ ├── allprojectsfilter.h │ │ │ ├── allprojectsfind.cpp │ │ │ ├── allprojectsfind.h │ │ │ ├── appoutputpane.cpp │ │ │ ├── appoutputpane.h │ │ │ ├── baseprojectwizarddialog.cpp │ │ │ ├── baseprojectwizarddialog.h │ │ │ ├── buildaspects.cpp │ │ │ ├── buildaspects.h │ │ │ ├── buildconfiguration.cpp │ │ │ ├── buildconfiguration.h │ │ │ ├── buildinfo.h │ │ │ ├── buildmanager.cpp │ │ │ ├── buildmanager.h │ │ │ ├── buildpropertiessettings.cpp │ │ │ ├── buildpropertiessettings.h │ │ │ ├── buildsettingspropertiespage.cpp │ │ │ ├── buildsettingspropertiespage.h │ │ │ ├── buildstep.cpp │ │ │ ├── buildstep.h │ │ │ ├── buildsteplist.cpp │ │ │ ├── buildsteplist.h │ │ │ ├── buildstepspage.cpp │ │ │ ├── buildstepspage.h │ │ │ ├── buildsystem.cpp │ │ │ ├── buildsystem.h │ │ │ ├── buildsystem.md │ │ │ ├── buildtargetinfo.h │ │ │ ├── buildtargettype.h │ │ │ ├── clangparser.cpp │ │ │ ├── clangparser.h │ │ │ ├── codestylesettingspropertiespage.cpp │ │ │ ├── codestylesettingspropertiespage.h │ │ │ ├── compileoutputwindow.cpp │ │ │ ├── compileoutputwindow.h │ │ │ ├── copystep.cpp │ │ │ ├── copystep.h │ │ │ ├── currentprojectfilter.cpp │ │ │ ├── currentprojectfilter.h │ │ │ ├── currentprojectfind.cpp │ │ │ ├── currentprojectfind.h │ │ │ ├── customexecutablerunconfiguration.cpp │ │ │ ├── customexecutablerunconfiguration.h │ │ │ ├── customparser.cpp │ │ │ ├── customparser.h │ │ │ ├── customparserconfigdialog.cpp │ │ │ ├── customparserconfigdialog.h │ │ │ ├── customparserssettingspage.cpp │ │ │ ├── customparserssettingspage.h │ │ │ ├── customtoolchain.cpp │ │ │ ├── customtoolchain.h │ │ │ ├── customwizard/ │ │ │ │ ├── customwizard.cpp │ │ │ │ ├── customwizard.h │ │ │ │ ├── customwizardpage.cpp │ │ │ │ ├── customwizardpage.h │ │ │ │ ├── customwizardparameters.cpp │ │ │ │ ├── customwizardparameters.h │ │ │ │ ├── customwizardscriptgenerator.cpp │ │ │ │ └── customwizardscriptgenerator.h │ │ │ ├── dependenciespanel.cpp │ │ │ ├── dependenciespanel.h │ │ │ ├── deployablefile.cpp │ │ │ ├── deployablefile.h │ │ │ ├── deployconfiguration.cpp │ │ │ ├── deployconfiguration.h │ │ │ ├── deploymentdata.cpp │ │ │ ├── deploymentdata.h │ │ │ ├── deploymentdataview.cpp │ │ │ ├── deploymentdataview.h │ │ │ ├── desktoprunconfiguration.cpp │ │ │ ├── desktoprunconfiguration.h │ │ │ ├── devicesupport/ │ │ │ │ ├── desktopdevice.cpp │ │ │ │ ├── desktopdevice.h │ │ │ │ ├── desktopdevicefactory.cpp │ │ │ │ ├── desktopdevicefactory.h │ │ │ │ ├── devicecheckbuildstep.cpp │ │ │ │ ├── devicecheckbuildstep.h │ │ │ │ ├── devicefactoryselectiondialog.cpp │ │ │ │ ├── devicefactoryselectiondialog.h │ │ │ │ ├── devicekitaspects.cpp │ │ │ │ ├── devicekitaspects.h │ │ │ │ ├── devicemanager.cpp │ │ │ │ ├── devicemanager.h │ │ │ │ ├── devicemanagermodel.cpp │ │ │ │ ├── devicemanagermodel.h │ │ │ │ ├── deviceprocessesdialog.cpp │ │ │ │ ├── deviceprocessesdialog.h │ │ │ │ ├── devicesettingspage.cpp │ │ │ │ ├── devicesettingspage.h │ │ │ │ ├── devicetestdialog.cpp │ │ │ │ ├── devicetestdialog.h │ │ │ │ ├── filetransfer.cpp │ │ │ │ ├── filetransfer.h │ │ │ │ ├── filetransferinterface.h │ │ │ │ ├── idevice.cpp │ │ │ │ ├── idevice.h │ │ │ │ ├── idevicefactory.cpp │ │ │ │ ├── idevicefactory.h │ │ │ │ ├── idevicefwd.h │ │ │ │ ├── idevicewidget.h │ │ │ │ ├── processlist.cpp │ │ │ │ ├── processlist.h │ │ │ │ ├── sshparameters.cpp │ │ │ │ ├── sshparameters.h │ │ │ │ ├── sshsettings.cpp │ │ │ │ └── sshsettings.h │ │ │ ├── editorconfiguration.cpp │ │ │ ├── editorconfiguration.h │ │ │ ├── editorsettingspropertiespage.cpp │ │ │ ├── editorsettingspropertiespage.h │ │ │ ├── environmentaspect.cpp │ │ │ ├── environmentaspect.h │ │ │ ├── environmentaspectwidget.cpp │ │ │ ├── environmentaspectwidget.h │ │ │ ├── environmentkitaspect.cpp │ │ │ ├── environmentkitaspect.h │ │ │ ├── environmentwidget.cpp │ │ │ ├── environmentwidget.h │ │ │ ├── expanddata.cpp │ │ │ ├── expanddata.h │ │ │ ├── extraabi.cpp │ │ │ ├── extraabi.h │ │ │ ├── extracompiler.cpp │ │ │ ├── extracompiler.h │ │ │ ├── fileinsessionfinder.cpp │ │ │ ├── fileinsessionfinder.h │ │ │ ├── filesinallprojectsfind.cpp │ │ │ ├── filesinallprojectsfind.h │ │ │ ├── filterkitaspectsdialog.cpp │ │ │ ├── filterkitaspectsdialog.h │ │ │ ├── gccparser.cpp │ │ │ ├── gccparser.h │ │ │ ├── gcctoolchain.cpp │ │ │ ├── gcctoolchain.h │ │ │ ├── gnumakeparser.cpp │ │ │ ├── gnumakeparser.h │ │ │ ├── headerpath.h │ │ │ ├── importwidget.cpp │ │ │ ├── importwidget.h │ │ │ ├── ioutputparser.cpp │ │ │ ├── ioutputparser.h │ │ │ ├── journaldwatcher.cpp │ │ │ ├── journaldwatcher.h │ │ │ ├── jsonwizard/ │ │ │ │ ├── jsonfieldpage.cpp │ │ │ │ ├── jsonfieldpage.h │ │ │ │ ├── jsonfieldpage_p.h │ │ │ │ ├── jsonfilepage.cpp │ │ │ │ ├── jsonfilepage.h │ │ │ │ ├── jsonkitspage.cpp │ │ │ │ ├── jsonkitspage.h │ │ │ │ ├── jsonprojectpage.cpp │ │ │ │ ├── jsonprojectpage.h │ │ │ │ ├── jsonsummarypage.cpp │ │ │ │ ├── jsonsummarypage.h │ │ │ │ ├── jsonwizard.cpp │ │ │ │ ├── jsonwizard.h │ │ │ │ ├── jsonwizard_test.cpp │ │ │ │ ├── jsonwizard_test.h │ │ │ │ ├── jsonwizardfactory.cpp │ │ │ │ ├── jsonwizardfactory.h │ │ │ │ ├── jsonwizardfilegenerator.cpp │ │ │ │ ├── jsonwizardfilegenerator.h │ │ │ │ ├── jsonwizardgeneratorfactory.cpp │ │ │ │ ├── jsonwizardgeneratorfactory.h │ │ │ │ ├── jsonwizardpagefactory.cpp │ │ │ │ ├── jsonwizardpagefactory.h │ │ │ │ ├── jsonwizardpagefactory_p.cpp │ │ │ │ ├── jsonwizardpagefactory_p.h │ │ │ │ ├── jsonwizardscannergenerator.cpp │ │ │ │ ├── jsonwizardscannergenerator.h │ │ │ │ └── wizarddebug.h │ │ │ ├── kit.cpp │ │ │ ├── kit.h │ │ │ ├── kitaspect.cpp │ │ │ ├── kitaspect.h │ │ │ ├── kitchooser.cpp │ │ │ ├── kitchooser.h │ │ │ ├── kitfeatureprovider.h │ │ │ ├── kitmanager.cpp │ │ │ ├── kitmanager.h │ │ │ ├── kitoptionspage.cpp │ │ │ ├── kitoptionspage.h │ │ │ ├── ldparser.cpp │ │ │ ├── ldparser.h │ │ │ ├── linuxiccparser.cpp │ │ │ ├── linuxiccparser.h │ │ │ ├── lldparser.cpp │ │ │ ├── lldparser.h │ │ │ ├── makestep.cpp │ │ │ ├── makestep.h │ │ │ ├── miniprojecttargetselector.cpp │ │ │ ├── miniprojecttargetselector.h │ │ │ ├── msvcparser.cpp │ │ │ ├── msvcparser.h │ │ │ ├── msvctoolchain.cpp │ │ │ ├── msvctoolchain.h │ │ │ ├── outputparser_test.cpp │ │ │ ├── outputparser_test.h │ │ │ ├── outputparsers.cpp │ │ │ ├── outputparsers.h │ │ │ ├── parseissuesdialog.cpp │ │ │ ├── parseissuesdialog.h │ │ │ ├── processparameters.cpp │ │ │ ├── processparameters.h │ │ │ ├── processstep.cpp │ │ │ ├── processstep.h │ │ │ ├── project.cpp │ │ │ ├── project.h │ │ │ ├── projectcommentssettings.cpp │ │ │ ├── projectcommentssettings.h │ │ │ ├── projectconfiguration.cpp │ │ │ ├── projectconfiguration.h │ │ │ ├── projectconfigurationmodel.cpp │ │ │ ├── projectconfigurationmodel.h │ │ │ ├── projectexplorer.cpp │ │ │ ├── projectexplorer.h │ │ │ ├── projectexplorer.qbs │ │ │ ├── projectexplorer.qrc │ │ │ ├── projectexplorer_export.h │ │ │ ├── projectexplorerconstants.cpp │ │ │ ├── projectexplorerconstants.h │ │ │ ├── projectexplorericons.cpp │ │ │ ├── projectexplorericons.h │ │ │ ├── projectexplorersettings.cpp │ │ │ ├── projectexplorersettings.h │ │ │ ├── projectexplorertr.h │ │ │ ├── projectfilewizardextension.cpp │ │ │ ├── projectfilewizardextension.h │ │ │ ├── projectimporter.cpp │ │ │ ├── projectimporter.h │ │ │ ├── projectmacro.cpp │ │ │ ├── projectmacro.h │ │ │ ├── projectmanager.cpp │ │ │ ├── projectmanager.h │ │ │ ├── projectmodels.cpp │ │ │ ├── projectmodels.h │ │ │ ├── projectnodes.cpp │ │ │ ├── projectnodes.h │ │ │ ├── projectpanelfactory.cpp │ │ │ ├── projectpanelfactory.h │ │ │ ├── projectsettingswidget.cpp │ │ │ ├── projectsettingswidget.h │ │ │ ├── projecttree.cpp │ │ │ ├── projecttree.h │ │ │ ├── projecttreewidget.cpp │ │ │ ├── projecttreewidget.h │ │ │ ├── projectupdater.cpp │ │ │ ├── projectupdater.h │ │ │ ├── projectwelcomepage.cpp │ │ │ ├── projectwelcomepage.h │ │ │ ├── projectwindow.cpp │ │ │ ├── projectwindow.h │ │ │ ├── projectwizardpage.cpp │ │ │ ├── projectwizardpage.h │ │ │ ├── qmldebugcommandlinearguments.cpp │ │ │ ├── qmldebugcommandlinearguments.h │ │ │ ├── rawprojectpart.cpp │ │ │ ├── rawprojectpart.h │ │ │ ├── resourcepreviewhoverhandler.cpp │ │ │ ├── resourcepreviewhoverhandler.h │ │ │ ├── runconfigdialogs.cpp │ │ │ ├── runconfigdialogs.h │ │ │ ├── runconfiguration.cpp │ │ │ ├── runconfiguration.h │ │ │ ├── runconfigurationaspects.cpp │ │ │ ├── runconfigurationaspects.h │ │ │ ├── runcontrol.cpp │ │ │ ├── runcontrol.h │ │ │ ├── runsettingspropertiespage.cpp │ │ │ ├── runsettingspropertiespage.h │ │ │ ├── sanitizerparser.cpp │ │ │ ├── sanitizerparser.h │ │ │ ├── selectablefilesmodel.cpp │ │ │ ├── selectablefilesmodel.h │ │ │ ├── showoutputtaskhandler.cpp │ │ │ ├── showoutputtaskhandler.h │ │ │ ├── simpleprojectwizard.cpp │ │ │ ├── simpleprojectwizard.h │ │ │ ├── sysrootkitaspect.cpp │ │ │ ├── sysrootkitaspect.h │ │ │ ├── target.cpp │ │ │ ├── target.h │ │ │ ├── targetsetuppage.cpp │ │ │ ├── targetsetuppage.h │ │ │ ├── targetsetupwidget.cpp │ │ │ ├── targetsetupwidget.h │ │ │ ├── task.cpp │ │ │ ├── task.h │ │ │ ├── taskfile.cpp │ │ │ ├── taskfile.h │ │ │ ├── taskhandlers.cpp │ │ │ ├── taskhandlers.h │ │ │ ├── taskhub.cpp │ │ │ ├── taskhub.h │ │ │ ├── taskmodel.cpp │ │ │ ├── taskmodel.h │ │ │ ├── taskwindow.cpp │ │ │ ├── taskwindow.h │ │ │ ├── testdata/ │ │ │ │ ├── generic-project/ │ │ │ │ │ ├── generic-project.cflags │ │ │ │ │ ├── generic-project.config │ │ │ │ │ ├── generic-project.creator │ │ │ │ │ ├── generic-project.cxxflags │ │ │ │ │ ├── generic-project.files │ │ │ │ │ ├── generic-project.includes │ │ │ │ │ └── main.cpp │ │ │ │ └── multi-target-project/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── multi-target-project-app.pro │ │ │ │ ├── multi-target-project-lib.cpp │ │ │ │ ├── multi-target-project-lib.pro │ │ │ │ ├── multi-target-project-main.cpp │ │ │ │ ├── multi-target-project-shared.h │ │ │ │ ├── multi-target-project.pro │ │ │ │ └── multi-target-project.qbs │ │ │ ├── toolchain.cpp │ │ │ ├── toolchain.h │ │ │ ├── toolchaincache.h │ │ │ ├── toolchainconfigwidget.cpp │ │ │ ├── toolchainconfigwidget.h │ │ │ ├── toolchainkitaspect.cpp │ │ │ ├── toolchainkitaspect.h │ │ │ ├── toolchainmanager.cpp │ │ │ ├── toolchainmanager.h │ │ │ ├── toolchainoptionspage.cpp │ │ │ ├── toolchainoptionspage.h │ │ │ ├── toolchainsettingsaccessor.cpp │ │ │ ├── toolchainsettingsaccessor.h │ │ │ ├── treescanner.cpp │ │ │ ├── treescanner.h │ │ │ ├── userfileaccessor.cpp │ │ │ ├── userfileaccessor.h │ │ │ ├── waitforstopdialog.cpp │ │ │ ├── waitforstopdialog.h │ │ │ ├── windebuginterface.cpp │ │ │ ├── windebuginterface.h │ │ │ ├── windowsappsdksettings.cpp │ │ │ ├── windowsappsdksettings.h │ │ │ ├── workspaceproject.cpp │ │ │ ├── workspaceproject.h │ │ │ ├── xcodebuildparser.cpp │ │ │ └── xcodebuildparser.h │ │ ├── python/ │ │ │ ├── CMakeLists.txt │ │ │ ├── Python.json.in │ │ │ ├── pipsupport.cpp │ │ │ ├── pipsupport.h │ │ │ ├── pyprojecttoml.cpp │ │ │ ├── pyprojecttoml.h │ │ │ ├── pyside.cpp │ │ │ ├── pyside.h │ │ │ ├── pysideuicextracompiler.cpp │ │ │ ├── pysideuicextracompiler.h │ │ │ ├── python.qbs │ │ │ ├── pythonbuildconfiguration.cpp │ │ │ ├── pythonbuildconfiguration.h │ │ │ ├── pythonbuildsystem.cpp │ │ │ ├── pythonbuildsystem.h │ │ │ ├── pythonconstants.h │ │ │ ├── pythoneditor.cpp │ │ │ ├── pythoneditor.h │ │ │ ├── pythonformattoken.h │ │ │ ├── pythonhighlighter.cpp │ │ │ ├── pythonhighlighter.h │ │ │ ├── pythonindenter.cpp │ │ │ ├── pythonindenter.h │ │ │ ├── pythonkitaspect.cpp │ │ │ ├── pythonkitaspect.h │ │ │ ├── pythonlanguageclient.cpp │ │ │ ├── pythonlanguageclient.h │ │ │ ├── pythonplugin.cpp │ │ │ ├── pythonproject.cpp │ │ │ ├── pythonproject.h │ │ │ ├── pythonrunconfiguration.cpp │ │ │ ├── pythonrunconfiguration.h │ │ │ ├── pythonscanner.cpp │ │ │ ├── pythonscanner.h │ │ │ ├── pythonsettings.cpp │ │ │ ├── pythonsettings.h │ │ │ ├── pythontr.h │ │ │ ├── pythonutils.cpp │ │ │ ├── pythonutils.h │ │ │ ├── pythonwizardpage.cpp │ │ │ ├── pythonwizardpage.h │ │ │ └── tests/ │ │ │ ├── pyprojecttoml_test.cpp │ │ │ ├── pyprojecttoml_test.h │ │ │ └── testfiles/ │ │ │ ├── correct.toml │ │ │ ├── correct_after_update.toml │ │ │ ├── empty.toml │ │ │ ├── filemissing.toml │ │ │ ├── filesblank.toml │ │ │ ├── fileswrongtype.toml │ │ │ ├── filewrongtype.toml │ │ │ ├── main.py │ │ │ ├── projectempty.toml │ │ │ ├── projectmissing.toml │ │ │ ├── projectwrongtype.toml │ │ │ ├── pysideempty.toml │ │ │ ├── pysidemissing.toml │ │ │ ├── pysidewrongtype.toml │ │ │ ├── toolempty.toml │ │ │ ├── toolmissing.toml │ │ │ └── toolwrongtype.toml │ │ ├── qbsprojectmanager/ │ │ │ ├── CMakeLists.txt │ │ │ ├── QbsProjectManager.json.in │ │ │ ├── customqbspropertiesdialog.cpp │ │ │ ├── customqbspropertiesdialog.h │ │ │ ├── defaultpropertyprovider.cpp │ │ │ ├── defaultpropertyprovider.h │ │ │ ├── propertyprovider.h │ │ │ ├── qbsbuildconfiguration.cpp │ │ │ ├── qbsbuildconfiguration.h │ │ │ ├── qbsbuildstep.cpp │ │ │ ├── qbsbuildstep.h │ │ │ ├── qbscleanstep.cpp │ │ │ ├── qbscleanstep.h │ │ │ ├── qbseditor.cpp │ │ │ ├── qbseditor.h │ │ │ ├── qbsinstallstep.cpp │ │ │ ├── qbsinstallstep.h │ │ │ ├── qbskitaspect.cpp │ │ │ ├── qbskitaspect.h │ │ │ ├── qbslanguageclient.cpp │ │ │ ├── qbslanguageclient.h │ │ │ ├── qbsnodes.cpp │ │ │ ├── qbsnodes.h │ │ │ ├── qbsnodetreebuilder.cpp │ │ │ ├── qbsnodetreebuilder.h │ │ │ ├── qbspmlogging.cpp │ │ │ ├── qbspmlogging.h │ │ │ ├── qbsprofilemanager.cpp │ │ │ ├── qbsprofilemanager.h │ │ │ ├── qbsprofilessettingspage.cpp │ │ │ ├── qbsprofilessettingspage.h │ │ │ ├── qbsproject.cpp │ │ │ ├── qbsproject.h │ │ │ ├── qbsprojectimporter.cpp │ │ │ ├── qbsprojectimporter.h │ │ │ ├── qbsprojectmanager.qbs │ │ │ ├── qbsprojectmanager.qrc │ │ │ ├── qbsprojectmanager_global.h │ │ │ ├── qbsprojectmanagerconstants.h │ │ │ ├── qbsprojectmanagerplugin.cpp │ │ │ ├── qbsprojectmanagerplugin.h │ │ │ ├── qbsprojectmanagertr.h │ │ │ ├── qbsprojectparser.cpp │ │ │ ├── qbsprojectparser.h │ │ │ ├── qbsrequest.cpp │ │ │ ├── qbsrequest.h │ │ │ ├── qbssession.cpp │ │ │ ├── qbssession.h │ │ │ ├── qbssettings.cpp │ │ │ └── qbssettings.h │ │ ├── qmakeprojectmanager/ │ │ │ ├── CMakeLists.txt │ │ │ ├── QmakeProjectManager.json.in │ │ │ ├── addlibrarywizard.cpp │ │ │ ├── addlibrarywizard.h │ │ │ ├── customwidgetwizard/ │ │ │ │ ├── classdefinition.cpp │ │ │ │ ├── classdefinition.h │ │ │ │ ├── classlist.cpp │ │ │ │ ├── classlist.h │ │ │ │ ├── customwidgetpluginwizardpage.cpp │ │ │ │ ├── customwidgetpluginwizardpage.h │ │ │ │ ├── customwidgetwidgetswizardpage.cpp │ │ │ │ ├── customwidgetwidgetswizardpage.h │ │ │ │ ├── customwidgetwizard.cpp │ │ │ │ ├── customwidgetwizard.h │ │ │ │ ├── customwidgetwizarddialog.cpp │ │ │ │ ├── customwidgetwizarddialog.h │ │ │ │ ├── filenamingparameters.h │ │ │ │ ├── plugingenerator.cpp │ │ │ │ ├── plugingenerator.h │ │ │ │ └── pluginoptions.h │ │ │ ├── librarydetailscontroller.cpp │ │ │ ├── librarydetailscontroller.h │ │ │ ├── makefileparse.cpp │ │ │ ├── makefileparse.h │ │ │ ├── profilecompletionassist.cpp │ │ │ ├── profilecompletionassist.h │ │ │ ├── profileeditor.cpp │ │ │ ├── profileeditor.h │ │ │ ├── profilehighlighter.cpp │ │ │ ├── profilehighlighter.h │ │ │ ├── profilehoverhandler.cpp │ │ │ ├── profilehoverhandler.h │ │ │ ├── qmakebuildconfiguration.cpp │ │ │ ├── qmakebuildconfiguration.h │ │ │ ├── qmakebuildinfo.h │ │ │ ├── qmakekitaspect.cpp │ │ │ ├── qmakekitaspect.h │ │ │ ├── qmakemakestep.cpp │ │ │ ├── qmakemakestep.h │ │ │ ├── qmakenodes.cpp │ │ │ ├── qmakenodes.h │ │ │ ├── qmakenodetreebuilder.cpp │ │ │ ├── qmakenodetreebuilder.h │ │ │ ├── qmakeparser.cpp │ │ │ ├── qmakeparser.h │ │ │ ├── qmakeparsernodes.cpp │ │ │ ├── qmakeparsernodes.h │ │ │ ├── qmakeproject.cpp │ │ │ ├── qmakeproject.h │ │ │ ├── qmakeprojectimporter.cpp │ │ │ ├── qmakeprojectimporter.h │ │ │ ├── qmakeprojectmanager.qbs │ │ │ ├── qmakeprojectmanager.qrc │ │ │ ├── qmakeprojectmanager_global.h │ │ │ ├── qmakeprojectmanagerconstants.h │ │ │ ├── qmakeprojectmanagerplugin.cpp │ │ │ ├── qmakeprojectmanagertr.h │ │ │ ├── qmakesettings.cpp │ │ │ ├── qmakesettings.h │ │ │ ├── qmakestep.cpp │ │ │ ├── qmakestep.h │ │ │ └── wizards/ │ │ │ ├── qtprojectparameters.h │ │ │ ├── qtwizard.cpp │ │ │ ├── qtwizard.h │ │ │ ├── subdirsprojectwizard.cpp │ │ │ ├── subdirsprojectwizard.h │ │ │ ├── subdirsprojectwizarddialog.cpp │ │ │ ├── subdirsprojectwizarddialog.h │ │ │ └── wizards.qrc │ │ ├── qmldesigner/ │ │ │ ├── .clang-format │ │ │ ├── CMakeLists.txt │ │ │ ├── QmlDesigner.json.in │ │ │ ├── components/ │ │ │ │ ├── annotationeditor/ │ │ │ │ │ ├── annotationcommenttab.cpp │ │ │ │ │ ├── annotationcommenttab.h │ │ │ │ │ ├── annotationcommenttab.ui │ │ │ │ │ ├── annotationeditor.cpp │ │ │ │ │ ├── annotationeditor.h │ │ │ │ │ ├── annotationeditor.qrc │ │ │ │ │ ├── annotationeditordialog.cpp │ │ │ │ │ ├── annotationeditordialog.h │ │ │ │ │ ├── annotationeditorwidget.cpp │ │ │ │ │ ├── annotationeditorwidget.h │ │ │ │ │ ├── annotationeditorwidget.ui │ │ │ │ │ ├── annotationlist.cpp │ │ │ │ │ ├── annotationlist.h │ │ │ │ │ ├── annotationlistwidget.cpp │ │ │ │ │ ├── annotationlistwidget.h │ │ │ │ │ ├── annotationtableview.cpp │ │ │ │ │ ├── annotationtableview.h │ │ │ │ │ ├── annotationtabwidget.cpp │ │ │ │ │ ├── annotationtabwidget.h │ │ │ │ │ ├── defaultannotations.cpp │ │ │ │ │ ├── defaultannotations.h │ │ │ │ │ ├── defaultannotations.json │ │ │ │ │ ├── globalannotationdialog.cpp │ │ │ │ │ ├── globalannotationdialog.h │ │ │ │ │ ├── globalannotationeditor.cpp │ │ │ │ │ └── globalannotationeditor.h │ │ │ │ ├── assetslibrary/ │ │ │ │ │ ├── assetslibrary.qrc │ │ │ │ │ ├── assetslibraryiconprovider.cpp │ │ │ │ │ ├── assetslibraryiconprovider.h │ │ │ │ │ ├── assetslibrarymodel.cpp │ │ │ │ │ ├── assetslibrarymodel.h │ │ │ │ │ ├── assetslibraryview.cpp │ │ │ │ │ ├── assetslibraryview.h │ │ │ │ │ ├── assetslibrarywidget.cpp │ │ │ │ │ └── assetslibrarywidget.h │ │ │ │ ├── bindingeditor/ │ │ │ │ │ ├── abstracteditordialog.cpp │ │ │ │ │ ├── abstracteditordialog.h │ │ │ │ │ ├── actioneditor.cpp │ │ │ │ │ ├── actioneditor.h │ │ │ │ │ ├── actioneditordialog.cpp │ │ │ │ │ ├── actioneditordialog.h │ │ │ │ │ ├── bindingeditor.cpp │ │ │ │ │ ├── bindingeditor.h │ │ │ │ │ ├── bindingeditordialog.cpp │ │ │ │ │ ├── bindingeditordialog.h │ │ │ │ │ ├── bindingeditorwidget.cpp │ │ │ │ │ ├── bindingeditorwidget.h │ │ │ │ │ ├── connectionvisitor.cpp │ │ │ │ │ ├── connectionvisitor.h │ │ │ │ │ ├── signallist.cpp │ │ │ │ │ ├── signallist.h │ │ │ │ │ ├── signallistdelegate.cpp │ │ │ │ │ ├── signallistdelegate.h │ │ │ │ │ ├── signallistdialog.cpp │ │ │ │ │ └── signallistdialog.h │ │ │ │ ├── colortool/ │ │ │ │ │ ├── colortool.cpp │ │ │ │ │ └── colortool.h │ │ │ │ ├── componentcore/ │ │ │ │ │ ├── abstractaction.cpp │ │ │ │ │ ├── abstractaction.h │ │ │ │ │ ├── abstractactiongroup.cpp │ │ │ │ │ ├── abstractactiongroup.h │ │ │ │ │ ├── actioninterface.h │ │ │ │ │ ├── addimagesdialog.cpp │ │ │ │ │ ├── addimagesdialog.h │ │ │ │ │ ├── addsignalhandlerdialog.cpp │ │ │ │ │ ├── addsignalhandlerdialog.h │ │ │ │ │ ├── addsignalhandlerdialog.ui │ │ │ │ │ ├── anchoraction.cpp │ │ │ │ │ ├── anchoraction.h │ │ │ │ │ ├── bundlehelper.cpp │ │ │ │ │ ├── bundlehelper.h │ │ │ │ │ ├── bundleimporter.cpp │ │ │ │ │ ├── bundleimporter.h │ │ │ │ │ ├── changestyleaction.cpp │ │ │ │ │ ├── changestyleaction.h │ │ │ │ │ ├── componentcore.qrc │ │ │ │ │ ├── componentcore_constants.h │ │ │ │ │ ├── createtexture.cpp │ │ │ │ │ ├── createtexture.h │ │ │ │ │ ├── crumblebar.cpp │ │ │ │ │ ├── crumblebar.h │ │ │ │ │ ├── designeractionmanager.cpp │ │ │ │ │ ├── designeractionmanager.h │ │ │ │ │ ├── designeractionmanagerview.cpp │ │ │ │ │ ├── designeractionmanagerview.h │ │ │ │ │ ├── designericons.cpp │ │ │ │ │ ├── designericons.h │ │ │ │ │ ├── dialogutils.cpp │ │ │ │ │ ├── dialogutils.h │ │ │ │ │ ├── findimplementation.cpp │ │ │ │ │ ├── findimplementation.h │ │ │ │ │ ├── formatoperation.cpp │ │ │ │ │ ├── formatoperation.h │ │ │ │ │ ├── groupitemaction.cpp │ │ │ │ │ ├── groupitemaction.h │ │ │ │ │ ├── layoutingridlayout.cpp │ │ │ │ │ ├── layoutingridlayout.h │ │ │ │ │ ├── modelnodecontextmenu.cpp │ │ │ │ │ ├── modelnodecontextmenu.h │ │ │ │ │ ├── modelnodecontextmenu_helper.cpp │ │ │ │ │ ├── modelnodecontextmenu_helper.h │ │ │ │ │ ├── modelnodeoperations.cpp │ │ │ │ │ ├── modelnodeoperations.h │ │ │ │ │ ├── modelnodeutils.cpp │ │ │ │ │ ├── modelnodeutils.h │ │ │ │ │ ├── navigation2d.cpp │ │ │ │ │ ├── navigation2d.h │ │ │ │ │ ├── propertycomponentgenerator.cpp │ │ │ │ │ ├── propertycomponentgenerator.h │ │ │ │ │ ├── propertycomponentgeneratorinterface.h │ │ │ │ │ ├── propertyeditorcomponentgenerator.cpp │ │ │ │ │ ├── propertyeditorcomponentgenerator.h │ │ │ │ │ ├── qmldesignercomponents_global.h │ │ │ │ │ ├── qmldesignericonprovider.cpp │ │ │ │ │ ├── qmldesignericonprovider.h │ │ │ │ │ ├── qmleditormenu.cpp │ │ │ │ │ ├── qmleditormenu.h │ │ │ │ │ ├── selectioncontext.cpp │ │ │ │ │ ├── selectioncontext.h │ │ │ │ │ ├── svgpasteaction.cpp │ │ │ │ │ ├── svgpasteaction.h │ │ │ │ │ ├── theme.cpp │ │ │ │ │ ├── theme.h │ │ │ │ │ ├── utils3d.cpp │ │ │ │ │ ├── utils3d.h │ │ │ │ │ ├── viewmanager.cpp │ │ │ │ │ ├── viewmanager.h │ │ │ │ │ ├── zoomaction.cpp │ │ │ │ │ └── zoomaction.h │ │ │ │ ├── connectioneditor/ │ │ │ │ │ ├── addnewbackenddialog.cpp │ │ │ │ │ ├── addnewbackenddialog.h │ │ │ │ │ ├── addnewbackenddialog.ui │ │ │ │ │ ├── bindingmodel.cpp │ │ │ │ │ ├── bindingmodel.h │ │ │ │ │ ├── bindingmodelitem.cpp │ │ │ │ │ ├── bindingmodelitem.h │ │ │ │ │ ├── connectioneditor.qrc │ │ │ │ │ ├── connectioneditorlogging.cpp │ │ │ │ │ ├── connectioneditorlogging.h │ │ │ │ │ ├── connectionmodel.cpp │ │ │ │ │ ├── connectionmodel.h │ │ │ │ │ ├── connectionview.cpp │ │ │ │ │ ├── connectionview.h │ │ │ │ │ ├── dynamicpropertiesitem.cpp │ │ │ │ │ ├── dynamicpropertiesitem.h │ │ │ │ │ ├── dynamicpropertiesmodel.cpp │ │ │ │ │ ├── dynamicpropertiesmodel.h │ │ │ │ │ ├── selectiondynamicpropertiesproxymodel.cpp │ │ │ │ │ ├── selectiondynamicpropertiesproxymodel.h │ │ │ │ │ └── stylesheet.css │ │ │ │ ├── curveeditor/ │ │ │ │ │ ├── animationcurve.cpp │ │ │ │ │ ├── animationcurve.h │ │ │ │ │ ├── curveeditor.cpp │ │ │ │ │ ├── curveeditor.h │ │ │ │ │ ├── curveeditor.qrc │ │ │ │ │ ├── curveeditorconstants.h │ │ │ │ │ ├── curveeditormodel.cpp │ │ │ │ │ ├── curveeditormodel.h │ │ │ │ │ ├── curveeditorstyle.h │ │ │ │ │ ├── curveeditortoolbar.cpp │ │ │ │ │ ├── curveeditortoolbar.h │ │ │ │ │ ├── curveeditorview.cpp │ │ │ │ │ ├── curveeditorview.h │ │ │ │ │ ├── curvesegment.cpp │ │ │ │ │ ├── curvesegment.h │ │ │ │ │ ├── detail/ │ │ │ │ │ │ ├── axis.cpp │ │ │ │ │ │ ├── axis.h │ │ │ │ │ │ ├── colorcontrol.cpp │ │ │ │ │ │ ├── colorcontrol.h │ │ │ │ │ │ ├── curveeditorstyledialog.cpp │ │ │ │ │ │ ├── curveeditorstyledialog.h │ │ │ │ │ │ ├── curveeditorutils.cpp │ │ │ │ │ │ ├── curveeditorutils.h │ │ │ │ │ │ ├── curveitem.cpp │ │ │ │ │ │ ├── curveitem.h │ │ │ │ │ │ ├── graphicsscene.cpp │ │ │ │ │ │ ├── graphicsscene.h │ │ │ │ │ │ ├── graphicsview.cpp │ │ │ │ │ │ ├── graphicsview.h │ │ │ │ │ │ ├── handleitem.cpp │ │ │ │ │ │ ├── handleitem.h │ │ │ │ │ │ ├── keyframeitem.cpp │ │ │ │ │ │ ├── keyframeitem.h │ │ │ │ │ │ ├── playhead.cpp │ │ │ │ │ │ ├── playhead.h │ │ │ │ │ │ ├── selectableitem.cpp │ │ │ │ │ │ ├── selectableitem.h │ │ │ │ │ │ ├── selectionmodel.cpp │ │ │ │ │ │ ├── selectionmodel.h │ │ │ │ │ │ ├── selector.cpp │ │ │ │ │ │ ├── selector.h │ │ │ │ │ │ ├── shortcut.cpp │ │ │ │ │ │ ├── shortcut.h │ │ │ │ │ │ ├── treeitemdelegate.cpp │ │ │ │ │ │ ├── treeitemdelegate.h │ │ │ │ │ │ ├── treemodel.cpp │ │ │ │ │ │ ├── treemodel.h │ │ │ │ │ │ ├── treeview.cpp │ │ │ │ │ │ └── treeview.h │ │ │ │ │ ├── keyframe.cpp │ │ │ │ │ ├── keyframe.h │ │ │ │ │ ├── treeitem.cpp │ │ │ │ │ └── treeitem.h │ │ │ │ ├── debugview/ │ │ │ │ │ ├── debugview.cpp │ │ │ │ │ ├── debugview.h │ │ │ │ │ ├── debugviewwidget.cpp │ │ │ │ │ ├── debugviewwidget.h │ │ │ │ │ └── debugviewwidget.ui │ │ │ │ ├── designsystemview/ │ │ │ │ │ ├── collectionmodel.cpp │ │ │ │ │ ├── collectionmodel.h │ │ │ │ │ ├── designsysteminterface.cpp │ │ │ │ │ ├── designsysteminterface.h │ │ │ │ │ ├── designsystemview.cpp │ │ │ │ │ ├── designsystemview.h │ │ │ │ │ ├── designsystemwidget.cpp │ │ │ │ │ └── designsystemwidget.h │ │ │ │ ├── edit3d/ │ │ │ │ │ ├── backgroundcolorselection.cpp │ │ │ │ │ ├── backgroundcolorselection.h │ │ │ │ │ ├── bakelights.cpp │ │ │ │ │ ├── bakelights.h │ │ │ │ │ ├── bakelightsconnectionmanager.cpp │ │ │ │ │ ├── bakelightsconnectionmanager.h │ │ │ │ │ ├── bakelightsdatamodel.cpp │ │ │ │ │ ├── bakelightsdatamodel.h │ │ │ │ │ ├── cameraspeedconfiguration.cpp │ │ │ │ │ ├── cameraspeedconfiguration.h │ │ │ │ │ ├── edit3d.qrc │ │ │ │ │ ├── edit3dactions.cpp │ │ │ │ │ ├── edit3dactions.h │ │ │ │ │ ├── edit3dcanvas.cpp │ │ │ │ │ ├── edit3dcanvas.h │ │ │ │ │ ├── edit3dmaterialsaction.cpp │ │ │ │ │ ├── edit3dmaterialsaction.h │ │ │ │ │ ├── edit3dtoolbarmenu.cpp │ │ │ │ │ ├── edit3dtoolbarmenu.h │ │ │ │ │ ├── edit3dview.cpp │ │ │ │ │ ├── edit3dview.h │ │ │ │ │ ├── edit3dviewconfig.h │ │ │ │ │ ├── edit3dwidget.cpp │ │ │ │ │ ├── edit3dwidget.h │ │ │ │ │ ├── indicatoractionwidget.cpp │ │ │ │ │ ├── indicatoractionwidget.h │ │ │ │ │ ├── snapconfiguration.cpp │ │ │ │ │ └── snapconfiguration.h │ │ │ │ ├── eventlist/ │ │ │ │ │ ├── assigneventdialog.cpp │ │ │ │ │ ├── assigneventdialog.h │ │ │ │ │ ├── connectsignaldialog.cpp │ │ │ │ │ ├── connectsignaldialog.h │ │ │ │ │ ├── eventlist.cpp │ │ │ │ │ ├── eventlist.h │ │ │ │ │ ├── eventlistactions.cpp │ │ │ │ │ ├── eventlistactions.h │ │ │ │ │ ├── eventlistdelegate.cpp │ │ │ │ │ ├── eventlistdelegate.h │ │ │ │ │ ├── eventlistdialog.cpp │ │ │ │ │ ├── eventlistdialog.h │ │ │ │ │ ├── eventlistplugin.metainfo │ │ │ │ │ ├── eventlistplugin.qrc │ │ │ │ │ ├── eventlistpluginview.cpp │ │ │ │ │ ├── eventlistpluginview.h │ │ │ │ │ ├── eventlistutils.cpp │ │ │ │ │ ├── eventlistutils.h │ │ │ │ │ ├── eventlistview.cpp │ │ │ │ │ ├── eventlistview.h │ │ │ │ │ ├── filterlinewidget.cpp │ │ │ │ │ ├── filterlinewidget.h │ │ │ │ │ ├── nodelistdelegate.cpp │ │ │ │ │ ├── nodelistdelegate.h │ │ │ │ │ ├── nodelistview.cpp │ │ │ │ │ ├── nodelistview.h │ │ │ │ │ ├── nodeselectionmodel.cpp │ │ │ │ │ ├── nodeselectionmodel.h │ │ │ │ │ ├── shortcutwidget.cpp │ │ │ │ │ └── shortcutwidget.h │ │ │ │ ├── formeditor/ │ │ │ │ │ ├── abstractcustomtool.cpp │ │ │ │ │ ├── abstractcustomtool.h │ │ │ │ │ ├── abstractformeditortool.cpp │ │ │ │ │ ├── abstractformeditortool.h │ │ │ │ │ ├── anchorindicator.cpp │ │ │ │ │ ├── anchorindicator.h │ │ │ │ │ ├── anchorindicatorgraphicsitem.cpp │ │ │ │ │ ├── anchorindicatorgraphicsitem.h │ │ │ │ │ ├── backgroundaction.cpp │ │ │ │ │ ├── backgroundaction.h │ │ │ │ │ ├── bindingindicator.cpp │ │ │ │ │ ├── bindingindicator.h │ │ │ │ │ ├── bindingindicatorgraphicsitem.cpp │ │ │ │ │ ├── bindingindicatorgraphicsitem.h │ │ │ │ │ ├── controlelement.cpp │ │ │ │ │ ├── controlelement.h │ │ │ │ │ ├── dragtool.cpp │ │ │ │ │ ├── dragtool.h │ │ │ │ │ ├── formeditor.qrc │ │ │ │ │ ├── formeditorannotationicon.cpp │ │ │ │ │ ├── formeditorannotationicon.h │ │ │ │ │ ├── formeditorgraphicsview.cpp │ │ │ │ │ ├── formeditorgraphicsview.h │ │ │ │ │ ├── formeditoritem.cpp │ │ │ │ │ ├── formeditoritem.h │ │ │ │ │ ├── formeditorscene.cpp │ │ │ │ │ ├── formeditorscene.h │ │ │ │ │ ├── formeditorsubwindow.h │ │ │ │ │ ├── formeditortoolbutton.cpp │ │ │ │ │ ├── formeditortoolbutton.h │ │ │ │ │ ├── formeditortracing.cpp │ │ │ │ │ ├── formeditortracing.h │ │ │ │ │ ├── formeditorview.cpp │ │ │ │ │ ├── formeditorview.h │ │ │ │ │ ├── formeditorwidget.cpp │ │ │ │ │ ├── formeditorwidget.h │ │ │ │ │ ├── itemutilfunctions.cpp │ │ │ │ │ ├── itemutilfunctions.h │ │ │ │ │ ├── layeritem.cpp │ │ │ │ │ ├── layeritem.h │ │ │ │ │ ├── lineeditaction.cpp │ │ │ │ │ ├── lineeditaction.h │ │ │ │ │ ├── movemanipulator.cpp │ │ │ │ │ ├── movemanipulator.h │ │ │ │ │ ├── movetool.cpp │ │ │ │ │ ├── movetool.h │ │ │ │ │ ├── onedimensionalcluster.cpp │ │ │ │ │ ├── onedimensionalcluster.h │ │ │ │ │ ├── resizecontroller.cpp │ │ │ │ │ ├── resizecontroller.h │ │ │ │ │ ├── resizehandleitem.cpp │ │ │ │ │ ├── resizehandleitem.h │ │ │ │ │ ├── resizeindicator.cpp │ │ │ │ │ ├── resizeindicator.h │ │ │ │ │ ├── resizemanipulator.cpp │ │ │ │ │ ├── resizemanipulator.h │ │ │ │ │ ├── resizetool.cpp │ │ │ │ │ ├── resizetool.h │ │ │ │ │ ├── rotationcontroller.cpp │ │ │ │ │ ├── rotationcontroller.h │ │ │ │ │ ├── rotationhandleitem.cpp │ │ │ │ │ ├── rotationhandleitem.h │ │ │ │ │ ├── rotationindicator.cpp │ │ │ │ │ ├── rotationindicator.h │ │ │ │ │ ├── rotationmanipulator.cpp │ │ │ │ │ ├── rotationmanipulator.h │ │ │ │ │ ├── rotationtool.cpp │ │ │ │ │ ├── rotationtool.h │ │ │ │ │ ├── rubberbandselectionmanipulator.cpp │ │ │ │ │ ├── rubberbandselectionmanipulator.h │ │ │ │ │ ├── scaleitem.cpp │ │ │ │ │ ├── scaleitem.h │ │ │ │ │ ├── scalemanipulator.cpp │ │ │ │ │ ├── scalemanipulator.h │ │ │ │ │ ├── seekerslider.cpp │ │ │ │ │ ├── seekerslider.h │ │ │ │ │ ├── selectionindicator.cpp │ │ │ │ │ ├── selectionindicator.h │ │ │ │ │ ├── selectionrectangle.cpp │ │ │ │ │ ├── selectionrectangle.h │ │ │ │ │ ├── selectiontool.cpp │ │ │ │ │ ├── selectiontool.h │ │ │ │ │ ├── singleselectionmanipulator.cpp │ │ │ │ │ ├── singleselectionmanipulator.h │ │ │ │ │ ├── snapper.cpp │ │ │ │ │ ├── snapper.h │ │ │ │ │ ├── snappinglinecreator.cpp │ │ │ │ │ ├── snappinglinecreator.h │ │ │ │ │ ├── toolbox.cpp │ │ │ │ │ ├── toolbox.h │ │ │ │ │ ├── view3dtool.cpp │ │ │ │ │ └── view3dtool.h │ │ │ │ ├── import3d/ │ │ │ │ │ ├── assetimportupdatedialog.cpp │ │ │ │ │ ├── assetimportupdatedialog.h │ │ │ │ │ ├── assetimportupdatedialog.ui │ │ │ │ │ ├── assetimportupdatetreeitem.cpp │ │ │ │ │ ├── assetimportupdatetreeitem.h │ │ │ │ │ ├── assetimportupdatetreeitemdelegate.cpp │ │ │ │ │ ├── assetimportupdatetreeitemdelegate.h │ │ │ │ │ ├── assetimportupdatetreemodel.cpp │ │ │ │ │ ├── assetimportupdatetreemodel.h │ │ │ │ │ ├── assetimportupdatetreeview.cpp │ │ │ │ │ ├── assetimportupdatetreeview.h │ │ │ │ │ ├── import3dcanvas.cpp │ │ │ │ │ ├── import3dcanvas.h │ │ │ │ │ ├── import3dconnectionmanager.cpp │ │ │ │ │ ├── import3dconnectionmanager.h │ │ │ │ │ ├── import3ddialog.cpp │ │ │ │ │ ├── import3ddialog.h │ │ │ │ │ ├── import3ddialog.ui │ │ │ │ │ ├── import3dimporter.cpp │ │ │ │ │ └── import3dimporter.h │ │ │ │ ├── integration/ │ │ │ │ │ ├── componentaction.cpp │ │ │ │ │ ├── componentaction.h │ │ │ │ │ ├── componentview.cpp │ │ │ │ │ ├── componentview.h │ │ │ │ │ ├── designdocument.cpp │ │ │ │ │ ├── designdocument.h │ │ │ │ │ ├── designdocumentview.cpp │ │ │ │ │ ├── designdocumentview.h │ │ │ │ │ ├── stackedutilitypanelcontroller.cpp │ │ │ │ │ ├── stackedutilitypanelcontroller.h │ │ │ │ │ ├── utilitypanelcontroller.cpp │ │ │ │ │ └── utilitypanelcontroller.h │ │ │ │ ├── itemlibrary/ │ │ │ │ │ ├── itemlibrary.qrc │ │ │ │ │ ├── itemlibraryaddimportmodel.cpp │ │ │ │ │ ├── itemlibraryaddimportmodel.h │ │ │ │ │ ├── itemlibrarycategoriesmodel.cpp │ │ │ │ │ ├── itemlibrarycategoriesmodel.h │ │ │ │ │ ├── itemlibrarycategory.cpp │ │ │ │ │ ├── itemlibrarycategory.h │ │ │ │ │ ├── itemlibraryconstants.h │ │ │ │ │ ├── itemlibraryiconimageprovider.cpp │ │ │ │ │ ├── itemlibraryiconimageprovider.h │ │ │ │ │ ├── itemlibraryimageprovider.cpp │ │ │ │ │ ├── itemlibraryimageprovider.h │ │ │ │ │ ├── itemlibraryimport.cpp │ │ │ │ │ ├── itemlibraryimport.h │ │ │ │ │ ├── itemlibraryitem.cpp │ │ │ │ │ ├── itemlibraryitem.h │ │ │ │ │ ├── itemlibraryitemsmodel.cpp │ │ │ │ │ ├── itemlibraryitemsmodel.h │ │ │ │ │ ├── itemlibrarymodel.cpp │ │ │ │ │ ├── itemlibrarymodel.h │ │ │ │ │ ├── itemlibrarytracing.cpp │ │ │ │ │ ├── itemlibrarytracing.h │ │ │ │ │ ├── itemlibraryview.cpp │ │ │ │ │ ├── itemlibraryview.h │ │ │ │ │ ├── itemlibrarywidget.cpp │ │ │ │ │ └── itemlibrarywidget.h │ │ │ │ ├── listmodeleditor/ │ │ │ │ │ ├── listmodeleditordialog.cpp │ │ │ │ │ ├── listmodeleditordialog.h │ │ │ │ │ ├── listmodeleditormodel.cpp │ │ │ │ │ ├── listmodeleditormodel.h │ │ │ │ │ ├── listmodeleditorpropertydialog.cpp │ │ │ │ │ └── listmodeleditorpropertydialog.h │ │ │ │ ├── materialbrowser/ │ │ │ │ │ ├── materialbrowsermodel.cpp │ │ │ │ │ ├── materialbrowsermodel.h │ │ │ │ │ ├── materialbrowsertexturesmodel.cpp │ │ │ │ │ ├── materialbrowsertexturesmodel.h │ │ │ │ │ ├── materialbrowserview.cpp │ │ │ │ │ ├── materialbrowserview.h │ │ │ │ │ ├── materialbrowserwidget.cpp │ │ │ │ │ └── materialbrowserwidget.h │ │ │ │ ├── navigator/ │ │ │ │ │ ├── choosefrompropertylistdialog.cpp │ │ │ │ │ ├── choosefrompropertylistdialog.h │ │ │ │ │ ├── choosefrompropertylistdialog.ui │ │ │ │ │ ├── iconcheckboxitemdelegate.cpp │ │ │ │ │ ├── iconcheckboxitemdelegate.h │ │ │ │ │ ├── nameitemdelegate.cpp │ │ │ │ │ ├── nameitemdelegate.h │ │ │ │ │ ├── navigator.qrc │ │ │ │ │ ├── navigatormodelinterface.h │ │ │ │ │ ├── navigatorsearchwidget.cpp │ │ │ │ │ ├── navigatorsearchwidget.h │ │ │ │ │ ├── navigatortracing.cpp │ │ │ │ │ ├── navigatortracing.h │ │ │ │ │ ├── navigatortreemodel.cpp │ │ │ │ │ ├── navigatortreemodel.h │ │ │ │ │ ├── navigatortreeview.cpp │ │ │ │ │ ├── navigatortreeview.h │ │ │ │ │ ├── navigatorview.cpp │ │ │ │ │ ├── navigatorview.h │ │ │ │ │ ├── navigatorwidget.cpp │ │ │ │ │ ├── navigatorwidget.h │ │ │ │ │ ├── previewtooltip.cpp │ │ │ │ │ ├── previewtooltip.h │ │ │ │ │ └── previewtooltip.ui │ │ │ │ ├── pathtool/ │ │ │ │ │ ├── controlpoint.cpp │ │ │ │ │ ├── controlpoint.h │ │ │ │ │ ├── cubicsegment.cpp │ │ │ │ │ ├── cubicsegment.h │ │ │ │ │ ├── pathitem.cpp │ │ │ │ │ ├── pathitem.h │ │ │ │ │ ├── pathselectionmanipulator.cpp │ │ │ │ │ ├── pathselectionmanipulator.h │ │ │ │ │ ├── pathtool.cpp │ │ │ │ │ ├── pathtool.h │ │ │ │ │ ├── pathtoolview.cpp │ │ │ │ │ └── pathtoolview.h │ │ │ │ ├── previewtooltip/ │ │ │ │ │ ├── previewimagetooltip.cpp │ │ │ │ │ ├── previewimagetooltip.h │ │ │ │ │ ├── previewimagetooltip.ui │ │ │ │ │ ├── previewtooltipbackend.cpp │ │ │ │ │ └── previewtooltipbackend.h │ │ │ │ ├── propertyeditor/ │ │ │ │ │ ├── aligndistribute.cpp │ │ │ │ │ ├── aligndistribute.h │ │ │ │ │ ├── assetimageprovider.cpp │ │ │ │ │ ├── assetimageprovider.h │ │ │ │ │ ├── colorpalettebackend.cpp │ │ │ │ │ ├── colorpalettebackend.h │ │ │ │ │ ├── compatibleproperties.cpp │ │ │ │ │ ├── compatibleproperties.h │ │ │ │ │ ├── designerpropertymap.cpp │ │ │ │ │ ├── designerpropertymap.h │ │ │ │ │ ├── dynamicpropertiesproxymodel.cpp │ │ │ │ │ ├── dynamicpropertiesproxymodel.h │ │ │ │ │ ├── fileresourcesmodel.cpp │ │ │ │ │ ├── fileresourcesmodel.h │ │ │ │ │ ├── fontresourcesmodel.cpp │ │ │ │ │ ├── fontresourcesmodel.h │ │ │ │ │ ├── gradientmodel.cpp │ │ │ │ │ ├── gradientmodel.h │ │ │ │ │ ├── gradientpresetcustomlistmodel.cpp │ │ │ │ │ ├── gradientpresetcustomlistmodel.h │ │ │ │ │ ├── gradientpresetdefaultlistmodel.cpp │ │ │ │ │ ├── gradientpresetdefaultlistmodel.h │ │ │ │ │ ├── gradientpresetitem.cpp │ │ │ │ │ ├── gradientpresetitem.h │ │ │ │ │ ├── gradientpresetlistmodel.cpp │ │ │ │ │ ├── gradientpresetlistmodel.h │ │ │ │ │ ├── instanceimageprovider.cpp │ │ │ │ │ ├── instanceimageprovider.h │ │ │ │ │ ├── itemfiltermodel.cpp │ │ │ │ │ ├── itemfiltermodel.h │ │ │ │ │ ├── listvalidator.cpp │ │ │ │ │ ├── listvalidator.h │ │ │ │ │ ├── propertyeditor.qrc │ │ │ │ │ ├── propertyeditorcontextobject.cpp │ │ │ │ │ ├── propertyeditorcontextobject.h │ │ │ │ │ ├── propertyeditordynamicpropertiesproxymodel.cpp │ │ │ │ │ ├── propertyeditordynamicpropertiesproxymodel.h │ │ │ │ │ ├── propertyeditorqmlbackend.cpp │ │ │ │ │ ├── propertyeditorqmlbackend.h │ │ │ │ │ ├── propertyeditortracing.cpp │ │ │ │ │ ├── propertyeditortracing.h │ │ │ │ │ ├── propertyeditortransaction.cpp │ │ │ │ │ ├── propertyeditortransaction.h │ │ │ │ │ ├── propertyeditorutils.cpp │ │ │ │ │ ├── propertyeditorutils.h │ │ │ │ │ ├── propertyeditorvalue.cpp │ │ │ │ │ ├── propertyeditorvalue.h │ │ │ │ │ ├── propertyeditorview.cpp │ │ │ │ │ ├── propertyeditorview.h │ │ │ │ │ ├── propertyeditorwidget.cpp │ │ │ │ │ ├── propertyeditorwidget.h │ │ │ │ │ ├── propertynamevalidator.cpp │ │ │ │ │ ├── propertynamevalidator.h │ │ │ │ │ ├── qmlanchorbindingproxy.cpp │ │ │ │ │ ├── qmlanchorbindingproxy.h │ │ │ │ │ ├── qmlmaterialnodeproxy.cpp │ │ │ │ │ ├── qmlmaterialnodeproxy.h │ │ │ │ │ ├── qmlmodelnodeproxy.cpp │ │ │ │ │ ├── qmlmodelnodeproxy.h │ │ │ │ │ ├── qmltexturenodeproxy.cpp │ │ │ │ │ ├── qmltexturenodeproxy.h │ │ │ │ │ ├── quick2propertyeditorview.cpp │ │ │ │ │ ├── quick2propertyeditorview.h │ │ │ │ │ ├── tooltip.cpp │ │ │ │ │ └── tooltip.h │ │ │ │ ├── resources/ │ │ │ │ │ ├── centerwidget.css │ │ │ │ │ ├── dockwidgets.css │ │ │ │ │ ├── formeditorstylesheet.css │ │ │ │ │ ├── resources_qmldesigner_components.qrc │ │ │ │ │ ├── scrollbar.css │ │ │ │ │ └── stylesheet.css │ │ │ │ ├── richtexteditor/ │ │ │ │ │ ├── hyperlinkdialog.cpp │ │ │ │ │ ├── hyperlinkdialog.h │ │ │ │ │ ├── hyperlinkdialog.ui │ │ │ │ │ ├── richtexteditor.cpp │ │ │ │ │ ├── richtexteditor.h │ │ │ │ │ ├── richtexteditorproxy.cpp │ │ │ │ │ └── richtexteditorproxy.h │ │ │ │ ├── scripteditor/ │ │ │ │ │ ├── propertytreemodel.cpp │ │ │ │ │ ├── propertytreemodel.h │ │ │ │ │ ├── scripteditorbackend.cpp │ │ │ │ │ ├── scripteditorbackend.h │ │ │ │ │ ├── scripteditorevaluator.cpp │ │ │ │ │ ├── scripteditorevaluator.h │ │ │ │ │ ├── scripteditorstatements.cpp │ │ │ │ │ ├── scripteditorstatements.h │ │ │ │ │ ├── scripteditorutils.cpp │ │ │ │ │ └── scripteditorutils.h │ │ │ │ ├── sourcetool/ │ │ │ │ │ ├── sourcetool.cpp │ │ │ │ │ └── sourcetool.h │ │ │ │ ├── stateseditor/ │ │ │ │ │ ├── propertychangesmodel.cpp │ │ │ │ │ ├── propertychangesmodel.h │ │ │ │ │ ├── propertymodel.cpp │ │ │ │ │ ├── propertymodel.h │ │ │ │ │ ├── stateseditorimageprovider.cpp │ │ │ │ │ ├── stateseditorimageprovider.h │ │ │ │ │ ├── stateseditormodel.cpp │ │ │ │ │ ├── stateseditormodel.h │ │ │ │ │ ├── stateseditorview.cpp │ │ │ │ │ ├── stateseditorview.h │ │ │ │ │ ├── stateseditorwidget.cpp │ │ │ │ │ └── stateseditorwidget.h │ │ │ │ ├── texteditor/ │ │ │ │ │ ├── texteditor.qrc │ │ │ │ │ ├── texteditorstatusbar.cpp │ │ │ │ │ ├── texteditorstatusbar.h │ │ │ │ │ ├── texteditorview.cpp │ │ │ │ │ └── texteditorview.h │ │ │ │ ├── texttool/ │ │ │ │ │ ├── textedititem.cpp │ │ │ │ │ ├── textedititem.h │ │ │ │ │ ├── textedititemwidget.cpp │ │ │ │ │ ├── textedititemwidget.h │ │ │ │ │ ├── texttool.cpp │ │ │ │ │ └── texttool.h │ │ │ │ ├── timelineeditor/ │ │ │ │ │ ├── canvas.cpp │ │ │ │ │ ├── canvas.h │ │ │ │ │ ├── canvasstyledialog.cpp │ │ │ │ │ ├── canvasstyledialog.h │ │ │ │ │ ├── easingcurve.cpp │ │ │ │ │ ├── easingcurve.h │ │ │ │ │ ├── easingcurvedialog.cpp │ │ │ │ │ ├── easingcurvedialog.h │ │ │ │ │ ├── preseteditor.cpp │ │ │ │ │ ├── preseteditor.h │ │ │ │ │ ├── setframevaluedialog.cpp │ │ │ │ │ ├── setframevaluedialog.h │ │ │ │ │ ├── splineeditor.cpp │ │ │ │ │ ├── splineeditor.h │ │ │ │ │ ├── timeline.metainfo │ │ │ │ │ ├── timeline.qrc │ │ │ │ │ ├── timelineabstracttool.cpp │ │ │ │ │ ├── timelineabstracttool.h │ │ │ │ │ ├── timelineactions.cpp │ │ │ │ │ ├── timelineactions.h │ │ │ │ │ ├── timelineanimationform.cpp │ │ │ │ │ ├── timelineanimationform.h │ │ │ │ │ ├── timelineconstants.h │ │ │ │ │ ├── timelinecontrols.cpp │ │ │ │ │ ├── timelinecontrols.h │ │ │ │ │ ├── timelineform.cpp │ │ │ │ │ ├── timelineform.h │ │ │ │ │ ├── timelinegraphicslayout.cpp │ │ │ │ │ ├── timelinegraphicslayout.h │ │ │ │ │ ├── timelinegraphicsscene.cpp │ │ │ │ │ ├── timelinegraphicsscene.h │ │ │ │ │ ├── timelineicons.h │ │ │ │ │ ├── timelineitem.cpp │ │ │ │ │ ├── timelineitem.h │ │ │ │ │ ├── timelinemovableabstractitem.cpp │ │ │ │ │ ├── timelinemovableabstractitem.h │ │ │ │ │ ├── timelinemovetool.cpp │ │ │ │ │ ├── timelinemovetool.h │ │ │ │ │ ├── timelineplaceholder.cpp │ │ │ │ │ ├── timelineplaceholder.h │ │ │ │ │ ├── timelinepropertyitem.cpp │ │ │ │ │ ├── timelinepropertyitem.h │ │ │ │ │ ├── timelinesectionitem.cpp │ │ │ │ │ ├── timelinesectionitem.h │ │ │ │ │ ├── timelineselectiontool.cpp │ │ │ │ │ ├── timelineselectiontool.h │ │ │ │ │ ├── timelinesettingsdialog.cpp │ │ │ │ │ ├── timelinesettingsdialog.h │ │ │ │ │ ├── timelinesettingsmodel.cpp │ │ │ │ │ ├── timelinesettingsmodel.h │ │ │ │ │ ├── timelinetoolbar.cpp │ │ │ │ │ ├── timelinetoolbar.h │ │ │ │ │ ├── timelinetoolbutton.cpp │ │ │ │ │ ├── timelinetoolbutton.h │ │ │ │ │ ├── timelinetooldelegate.cpp │ │ │ │ │ ├── timelinetooldelegate.h │ │ │ │ │ ├── timelineutils.cpp │ │ │ │ │ ├── timelineutils.h │ │ │ │ │ ├── timelineview.cpp │ │ │ │ │ ├── timelineview.h │ │ │ │ │ ├── timelinewidget.cpp │ │ │ │ │ └── timelinewidget.h │ │ │ │ ├── toolbar/ │ │ │ │ │ ├── appoutputmodel.cpp │ │ │ │ │ ├── appoutputmodel.h │ │ │ │ │ ├── messagemodel.cpp │ │ │ │ │ ├── messagemodel.h │ │ │ │ │ ├── toolbar.cpp │ │ │ │ │ ├── toolbar.h │ │ │ │ │ ├── toolbarbackend.cpp │ │ │ │ │ └── toolbarbackend.h │ │ │ │ └── transitioneditor/ │ │ │ │ ├── transitioneditor.qrc │ │ │ │ ├── transitioneditorconstants.h │ │ │ │ ├── transitioneditorgraphicslayout.cpp │ │ │ │ ├── transitioneditorgraphicslayout.h │ │ │ │ ├── transitioneditorgraphicsscene.cpp │ │ │ │ ├── transitioneditorgraphicsscene.h │ │ │ │ ├── transitioneditorpropertyitem.cpp │ │ │ │ ├── transitioneditorpropertyitem.h │ │ │ │ ├── transitioneditorsectionitem.cpp │ │ │ │ ├── transitioneditorsectionitem.h │ │ │ │ ├── transitioneditorsettingsdialog.cpp │ │ │ │ ├── transitioneditorsettingsdialog.h │ │ │ │ ├── transitioneditorsettingsdialog.ui │ │ │ │ ├── transitioneditortoolbar.cpp │ │ │ │ ├── transitioneditortoolbar.h │ │ │ │ ├── transitioneditorview.cpp │ │ │ │ ├── transitioneditorview.h │ │ │ │ ├── transitioneditorwidget.cpp │ │ │ │ ├── transitioneditorwidget.h │ │ │ │ ├── transitionform.cpp │ │ │ │ ├── transitionform.h │ │ │ │ └── transitionform.ui │ │ │ ├── componentsplugin/ │ │ │ │ ├── Controls/ │ │ │ │ │ ├── ApplicationWindowSpecifics.qml │ │ │ │ │ ├── ButtonSpecifics.qml │ │ │ │ │ ├── CheckBoxSpecifics.qml │ │ │ │ │ ├── ComboBoxSpecifics.qml │ │ │ │ │ ├── CurrentIndexComboBox.qml │ │ │ │ │ ├── OrientationCombobox.qml │ │ │ │ │ ├── RadioButtonSpecifics.qml │ │ │ │ │ ├── SliderSpecifics.qml │ │ │ │ │ ├── SplitViewSpecifics.qml │ │ │ │ │ ├── TabPositionComboBox.qml │ │ │ │ │ ├── TabViewSpecifics.qml │ │ │ │ │ ├── TextAreaSpecifics.qml │ │ │ │ │ └── TextFieldSpecifics.qml │ │ │ │ ├── components.metainfo │ │ │ │ ├── componentsplugin.cpp │ │ │ │ ├── componentsplugin.h │ │ │ │ ├── componentsplugin.json │ │ │ │ └── componentsplugin.qrc │ │ │ ├── designermcumanager.cpp │ │ │ ├── designermcumanager.h │ │ │ ├── designmodewidget.cpp │ │ │ ├── designmodewidget.h │ │ │ ├── documentmanager.cpp │ │ │ ├── documentmanager.h │ │ │ ├── documentwarningwidget.cpp │ │ │ ├── documentwarningwidget.h │ │ │ ├── editorproxy.cpp │ │ │ ├── editorproxy.h │ │ │ ├── imagecachecollectors/ │ │ │ │ ├── imagecachecollector.cpp │ │ │ │ ├── imagecachecollector.h │ │ │ │ ├── imagecachefontcollector.cpp │ │ │ │ ├── imagecachefontcollector.h │ │ │ │ ├── meshimagecachecollector.cpp │ │ │ │ ├── meshimagecachecollector.h │ │ │ │ ├── textureimagecachecollector.cpp │ │ │ │ └── textureimagecachecollector.h │ │ │ ├── instances/ │ │ │ │ ├── baseconnectionmanager.cpp │ │ │ │ ├── baseconnectionmanager.h │ │ │ │ ├── capturingconnectionmanager.cpp │ │ │ │ ├── capturingconnectionmanager.h │ │ │ │ ├── connectionmanager.cpp │ │ │ │ ├── connectionmanager.h │ │ │ │ ├── connectionmanagerinterface.cpp │ │ │ │ ├── connectionmanagerinterface.h │ │ │ │ ├── interactiveconnectionmanager.cpp │ │ │ │ ├── interactiveconnectionmanager.h │ │ │ │ ├── nodeinstance.cpp │ │ │ │ ├── nodeinstance.h │ │ │ │ ├── nodeinstanceserverproxy.cpp │ │ │ │ ├── nodeinstanceserverproxy.h │ │ │ │ ├── nodeinstanceview.cpp │ │ │ │ ├── nodeinstanceview.h │ │ │ │ ├── puppetstarter.cpp │ │ │ │ ├── puppetstarter.h │ │ │ │ └── qprocessuniqueptr.h │ │ │ ├── libs/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── astcheck/ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── astcheck.cpp │ │ │ │ │ ├── astcheck.h │ │ │ │ │ ├── astutils.cpp │ │ │ │ │ └── astutils.h │ │ │ │ ├── designercore/ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── designercoreutils/ │ │ │ │ │ │ ├── functional.h │ │ │ │ │ │ ├── generatedcomponentutils.cpp │ │ │ │ │ │ ├── generatedcomponentutils.h │ │ │ │ │ │ ├── modelmerger.cpp │ │ │ │ │ │ ├── modelmerger.h │ │ │ │ │ │ ├── modelutils.cpp │ │ │ │ │ │ ├── modelutils.h │ │ │ │ │ │ ├── predicate.h │ │ │ │ │ │ ├── stylesheetmerger.cpp │ │ │ │ │ │ ├── stylesheetmerger.h │ │ │ │ │ │ ├── uniquename.cpp │ │ │ │ │ │ └── uniquename.h │ │ │ │ │ ├── exceptions/ │ │ │ │ │ │ ├── exception.cpp │ │ │ │ │ │ ├── invalidargumentexception.cpp │ │ │ │ │ │ ├── invalidmetainfoexception.cpp │ │ │ │ │ │ └── rewritingexception.cpp │ │ │ │ │ ├── filemanager/ │ │ │ │ │ │ ├── addarraymembervisitor.cpp │ │ │ │ │ │ ├── addarraymembervisitor.h │ │ │ │ │ │ ├── addobjectvisitor.cpp │ │ │ │ │ │ ├── addobjectvisitor.h │ │ │ │ │ │ ├── addpropertyvisitor.cpp │ │ │ │ │ │ ├── addpropertyvisitor.h │ │ │ │ │ │ ├── astobjecttextextractor.cpp │ │ │ │ │ │ ├── astobjecttextextractor.h │ │ │ │ │ │ ├── changeimportsvisitor.cpp │ │ │ │ │ │ ├── changeimportsvisitor.h │ │ │ │ │ │ ├── changeobjecttypevisitor.cpp │ │ │ │ │ │ ├── changeobjecttypevisitor.h │ │ │ │ │ │ ├── changepropertyvisitor.cpp │ │ │ │ │ │ ├── changepropertyvisitor.h │ │ │ │ │ │ ├── firstdefinitionfinder.cpp │ │ │ │ │ │ ├── firstdefinitionfinder.h │ │ │ │ │ │ ├── moveobjectbeforeobjectvisitor.cpp │ │ │ │ │ │ ├── moveobjectbeforeobjectvisitor.h │ │ │ │ │ │ ├── moveobjectvisitor.cpp │ │ │ │ │ │ ├── moveobjectvisitor.h │ │ │ │ │ │ ├── objectlengthcalculator.cpp │ │ │ │ │ │ ├── objectlengthcalculator.h │ │ │ │ │ │ ├── qmlrefactoring.cpp │ │ │ │ │ │ ├── qmlrefactoring.h │ │ │ │ │ │ ├── qmlrewriter.cpp │ │ │ │ │ │ ├── qmlrewriter.h │ │ │ │ │ │ ├── removepropertyvisitor.cpp │ │ │ │ │ │ ├── removepropertyvisitor.h │ │ │ │ │ │ ├── removeuiobjectmembervisitor.cpp │ │ │ │ │ │ └── removeuiobjectmembervisitor.h │ │ │ │ │ ├── imagecache/ │ │ │ │ │ │ ├── asynchronousexplicitimagecache.cpp │ │ │ │ │ │ ├── asynchronousimagecache.cpp │ │ │ │ │ │ ├── asynchronousimagefactory.cpp │ │ │ │ │ │ ├── asynchronousimagefactory.h │ │ │ │ │ │ ├── explicitimagecacheimageprovider.cpp │ │ │ │ │ │ ├── explicitimagecacheimageprovider.h │ │ │ │ │ │ ├── imagecachecollectorinterface.h │ │ │ │ │ │ ├── imagecachedispatchcollector.h │ │ │ │ │ │ ├── imagecachegenerator.cpp │ │ │ │ │ │ ├── imagecachegenerator.h │ │ │ │ │ │ ├── imagecachegeneratorinterface.h │ │ │ │ │ │ ├── imagecacheimageresponse.cpp │ │ │ │ │ │ ├── imagecacheimageresponse.h │ │ │ │ │ │ ├── imagecachestorage.h │ │ │ │ │ │ ├── imagecachestorageinterface.h │ │ │ │ │ │ ├── midsizeimagecacheprovider.cpp │ │ │ │ │ │ ├── midsizeimagecacheprovider.h │ │ │ │ │ │ ├── smallimagecacheprovider.cpp │ │ │ │ │ │ ├── smallimagecacheprovider.h │ │ │ │ │ │ ├── synchronousimagecache.cpp │ │ │ │ │ │ ├── taskqueue.h │ │ │ │ │ │ ├── timestampprovider.cpp │ │ │ │ │ │ ├── timestampprovider.h │ │ │ │ │ │ └── timestampproviderinterface.h │ │ │ │ │ ├── include/ │ │ │ │ │ │ ├── abstractproperty.h │ │ │ │ │ │ ├── abstractview.h │ │ │ │ │ │ ├── annotation.h │ │ │ │ │ │ ├── asynchronousexplicitimagecache.h │ │ │ │ │ │ ├── asynchronousimagecache.h │ │ │ │ │ │ ├── asynchronousimagecacheinterface.h │ │ │ │ │ │ ├── auxiliarydata.h │ │ │ │ │ │ ├── auxiliarydataproperties.h │ │ │ │ │ │ ├── bindingproperty.h │ │ │ │ │ │ ├── bytearraymodifier.h │ │ │ │ │ │ ├── componenttextmodifier.h │ │ │ │ │ │ ├── customnotificationpackage.h │ │ │ │ │ │ ├── customnotifications.h │ │ │ │ │ │ ├── designercoretr.h │ │ │ │ │ │ ├── documentmessage.h │ │ │ │ │ │ ├── enumerationmetainfo.h │ │ │ │ │ │ ├── exception.h │ │ │ │ │ │ ├── externaldependenciesinterface.h │ │ │ │ │ │ ├── filesystemfacadeinterface.h │ │ │ │ │ │ ├── forwardview.h │ │ │ │ │ │ ├── imagecacheauxiliarydata.h │ │ │ │ │ │ ├── import.h │ │ │ │ │ │ ├── invalidargumentexception.h │ │ │ │ │ │ ├── invalidmetainfoexception.h │ │ │ │ │ │ ├── itemlibraryentry.h │ │ │ │ │ │ ├── itemlibraryinfo.h │ │ │ │ │ │ ├── iwidgetplugin.h │ │ │ │ │ │ ├── mathutils.h │ │ │ │ │ │ ├── metainfo.h │ │ │ │ │ │ ├── metainforeader.h │ │ │ │ │ │ ├── model.h │ │ │ │ │ │ ├── modelcache.h │ │ │ │ │ │ ├── modelfwd.h │ │ │ │ │ │ ├── modelnode.h │ │ │ │ │ │ ├── modificationgroupexception.h │ │ │ │ │ │ ├── modificationgrouptoken.h │ │ │ │ │ │ ├── module.h │ │ │ │ │ │ ├── nodeabstractproperty.h │ │ │ │ │ │ ├── nodehints.h │ │ │ │ │ │ ├── nodelistproperty.h │ │ │ │ │ │ ├── nodemetainfo.h │ │ │ │ │ │ ├── nodeproperty.h │ │ │ │ │ │ ├── objectpropertybinding.h │ │ │ │ │ │ ├── plaintexteditmodifier.h │ │ │ │ │ │ ├── projectstorageids.h │ │ │ │ │ │ ├── propertybinding.h │ │ │ │ │ │ ├── propertycontainer.h │ │ │ │ │ │ ├── propertymetainfo.h │ │ │ │ │ │ ├── propertynode.h │ │ │ │ │ │ ├── propertyparser.h │ │ │ │ │ │ ├── puppetstartdata.h │ │ │ │ │ │ ├── qmldesignercoreconstants.h │ │ │ │ │ │ ├── qmldesignercorelib_exports.h │ │ │ │ │ │ ├── qmldesignercorelib_global.h │ │ │ │ │ │ ├── rewritertransaction.h │ │ │ │ │ │ ├── rewriterview.h │ │ │ │ │ │ ├── rewritingexception.h │ │ │ │ │ │ ├── signalhandlerproperty.h │ │ │ │ │ │ ├── sourcepathids.h │ │ │ │ │ │ ├── stringutils.h │ │ │ │ │ │ ├── subcomponentmanager.h │ │ │ │ │ │ ├── synchronousimagecache.h │ │ │ │ │ │ ├── textmodifier.h │ │ │ │ │ │ ├── variantproperty.h │ │ │ │ │ │ ├── widgetinfo.h │ │ │ │ │ │ └── widgetregistration.h │ │ │ │ │ ├── metainfo/ │ │ │ │ │ │ ├── itemlibraryentry.cpp │ │ │ │ │ │ ├── itemlibraryinfo.cpp │ │ │ │ │ │ ├── metainfo.cpp │ │ │ │ │ │ ├── metainforeader.cpp │ │ │ │ │ │ ├── nodehints.cpp │ │ │ │ │ │ ├── nodemetainfo.cpp │ │ │ │ │ │ └── subcomponentmanager.cpp │ │ │ │ │ ├── model/ │ │ │ │ │ │ ├── abstractproperty.cpp │ │ │ │ │ │ ├── abstractview.cpp │ │ │ │ │ │ ├── annotation.cpp │ │ │ │ │ │ ├── auxiliarypropertystorageview.cpp │ │ │ │ │ │ ├── auxiliarypropertystorageview.h │ │ │ │ │ │ ├── bindingproperty.cpp │ │ │ │ │ │ ├── documentmessage.cpp │ │ │ │ │ │ ├── import.cpp │ │ │ │ │ │ ├── internalbindingproperty.cpp │ │ │ │ │ │ ├── internalbindingproperty.h │ │ │ │ │ │ ├── internalnode.cpp │ │ │ │ │ │ ├── internalnode_p.h │ │ │ │ │ │ ├── internalnodeabstractproperty.cpp │ │ │ │ │ │ ├── internalnodeabstractproperty.h │ │ │ │ │ │ ├── internalnodelistproperty.cpp │ │ │ │ │ │ ├── internalnodelistproperty.h │ │ │ │ │ │ ├── internalnodeproperty.cpp │ │ │ │ │ │ ├── internalnodeproperty.h │ │ │ │ │ │ ├── internalproperty.cpp │ │ │ │ │ │ ├── internalproperty.h │ │ │ │ │ │ ├── internalsignalhandlerproperty.cpp │ │ │ │ │ │ ├── internalsignalhandlerproperty.h │ │ │ │ │ │ ├── internalvariantproperty.cpp │ │ │ │ │ │ ├── internalvariantproperty.h │ │ │ │ │ │ ├── model.cpp │ │ │ │ │ │ ├── model_p.h │ │ │ │ │ │ ├── modelnode.cpp │ │ │ │ │ │ ├── modelresourcemanagement.cpp │ │ │ │ │ │ ├── modelresourcemanagement.h │ │ │ │ │ │ ├── modelresourcemanagementfwd.h │ │ │ │ │ │ ├── modelresourcemanagementinterface.h │ │ │ │ │ │ ├── nodeabstractproperty.cpp │ │ │ │ │ │ ├── nodelistproperty.cpp │ │ │ │ │ │ ├── nodeproperty.cpp │ │ │ │ │ │ ├── signalhandlerproperty.cpp │ │ │ │ │ │ └── variantproperty.cpp │ │ │ │ │ ├── modulesstorage/ │ │ │ │ │ │ ├── modulesstorage.cpp │ │ │ │ │ │ ├── modulesstorage.h │ │ │ │ │ │ └── modulesstorageinterface.h │ │ │ │ │ ├── pluginmanager/ │ │ │ │ │ │ ├── widgetpluginmanager.cpp │ │ │ │ │ │ ├── widgetpluginmanager.h │ │ │ │ │ │ ├── widgetpluginpath.cpp │ │ │ │ │ │ └── widgetpluginpath.h │ │ │ │ │ ├── projectstorage/ │ │ │ │ │ │ ├── commontypecache.h │ │ │ │ │ │ ├── directorypathcompressor.h │ │ │ │ │ │ ├── filestatus.h │ │ │ │ │ │ ├── filestatuscache.cpp │ │ │ │ │ │ ├── filestatuscache.h │ │ │ │ │ │ ├── filesystem.cpp │ │ │ │ │ │ ├── filesystem.h │ │ │ │ │ │ ├── filesysteminterface.h │ │ │ │ │ │ ├── modulescanner.cpp │ │ │ │ │ │ ├── modulescanner.h │ │ │ │ │ │ ├── projectstorage.cpp │ │ │ │ │ │ ├── projectstorage.h │ │ │ │ │ │ ├── projectstorageerrornotifierinterface.h │ │ │ │ │ │ ├── projectstorageexceptions.cpp │ │ │ │ │ │ ├── projectstorageexceptions.h │ │ │ │ │ │ ├── projectstoragefwd.h │ │ │ │ │ │ ├── projectstorageinfotypes.h │ │ │ │ │ │ ├── projectstorageinterface.h │ │ │ │ │ │ ├── projectstorageobserver.h │ │ │ │ │ │ ├── projectstoragepathwatcher.h │ │ │ │ │ │ ├── projectstoragepathwatcherinterface.h │ │ │ │ │ │ ├── projectstoragepathwatchernotifierinterface.h │ │ │ │ │ │ ├── projectstoragepathwatchertypes.h │ │ │ │ │ │ ├── projectstorageprinting.h │ │ │ │ │ │ ├── projectstoragetracing.cpp │ │ │ │ │ │ ├── projectstoragetracing.h │ │ │ │ │ │ ├── projectstoragetriggerupdateinterface.h │ │ │ │ │ │ ├── projectstoragetypes.h │ │ │ │ │ │ ├── projectstorageupdater.cpp │ │ │ │ │ │ ├── projectstorageupdater.h │ │ │ │ │ │ ├── qmldocumentparser.cpp │ │ │ │ │ │ ├── qmldocumentparser.h │ │ │ │ │ │ ├── qmldocumentparserinterface.h │ │ │ │ │ │ ├── qmltypesparser.cpp │ │ │ │ │ │ ├── qmltypesparser.h │ │ │ │ │ │ ├── qmltypesparserinterface.h │ │ │ │ │ │ ├── typeannotationreader.cpp │ │ │ │ │ │ └── typeannotationreader.h │ │ │ │ │ ├── rewriter/ │ │ │ │ │ │ ├── componenttextmodifier.cpp │ │ │ │ │ │ ├── modelnodepositionrecalculator.cpp │ │ │ │ │ │ ├── modelnodepositionrecalculator.h │ │ │ │ │ │ ├── modelnodepositionstorage.cpp │ │ │ │ │ │ ├── modelnodepositionstorage.h │ │ │ │ │ │ ├── modeltotextmerger.cpp │ │ │ │ │ │ ├── modeltotextmerger.h │ │ │ │ │ │ ├── plaintexteditmodifier.cpp │ │ │ │ │ │ ├── propertycontainer.cpp │ │ │ │ │ │ ├── propertynode.cpp │ │ │ │ │ │ ├── propertyparser.cpp │ │ │ │ │ │ ├── qmltextgenerator.cpp │ │ │ │ │ │ ├── qmltextgenerator.h │ │ │ │ │ │ ├── rewriteaction.cpp │ │ │ │ │ │ ├── rewriteaction.h │ │ │ │ │ │ ├── rewriteactioncompressor.cpp │ │ │ │ │ │ ├── rewriteactioncompressor.h │ │ │ │ │ │ ├── rewritertracing.cpp │ │ │ │ │ │ ├── rewritertracing.h │ │ │ │ │ │ ├── rewritertransaction.cpp │ │ │ │ │ │ ├── rewriterview.cpp │ │ │ │ │ │ ├── textmodifier.cpp │ │ │ │ │ │ ├── texttomodelmerger.cpp │ │ │ │ │ │ └── texttomodelmerger.h │ │ │ │ │ ├── sourcepathstorage/ │ │ │ │ │ │ ├── nonlockingmutex.h │ │ │ │ │ │ ├── sourcepath.h │ │ │ │ │ │ ├── sourcepathcache.h │ │ │ │ │ │ ├── sourcepathcacheinterface.h │ │ │ │ │ │ ├── sourcepathcachetypes.h │ │ │ │ │ │ ├── sourcepathexceptions.cpp │ │ │ │ │ │ ├── sourcepathexceptions.h │ │ │ │ │ │ ├── sourcepathstorage.cpp │ │ │ │ │ │ ├── sourcepathstorage.h │ │ │ │ │ │ ├── sourcepathstoragetracing.cpp │ │ │ │ │ │ ├── sourcepathstoragetracing.h │ │ │ │ │ │ ├── sourcepathview.h │ │ │ │ │ │ ├── storagecache.h │ │ │ │ │ │ ├── storagecacheentry.h │ │ │ │ │ │ └── storagecachefwd.h │ │ │ │ │ └── tracing/ │ │ │ │ │ ├── qmldesignertracing.cpp │ │ │ │ │ └── qmldesignertracing.h │ │ │ │ ├── designsystem/ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── designsystem_global.h │ │ │ │ │ ├── dsconstants.h │ │ │ │ │ ├── dsstore.cpp │ │ │ │ │ ├── dsstore.h │ │ │ │ │ ├── dsthemegroup.cpp │ │ │ │ │ ├── dsthemegroup.h │ │ │ │ │ ├── dsthememanager.cpp │ │ │ │ │ └── dsthememanager.h │ │ │ │ └── qmldesignerutils/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── asset.cpp │ │ │ │ ├── asset.h │ │ │ │ ├── designeralgorithm.h │ │ │ │ ├── hdrimage.cpp │ │ │ │ ├── hdrimage.h │ │ │ │ ├── imageutils.cpp │ │ │ │ ├── imageutils.h │ │ │ │ ├── importutils.cpp │ │ │ │ ├── importutils.h │ │ │ │ ├── ktximage.cpp │ │ │ │ ├── ktximage.h │ │ │ │ ├── maputils.h │ │ │ │ ├── memory.h │ │ │ │ ├── qmldesignerutils_global.h │ │ │ │ ├── stringutils.cpp │ │ │ │ ├── stringutils.h │ │ │ │ ├── version.cpp │ │ │ │ └── version.h │ │ │ ├── openuiqmlfiledialog.cpp │ │ │ ├── openuiqmlfiledialog.h │ │ │ ├── project/ │ │ │ │ ├── projectstorageerrornotifier.cpp │ │ │ │ ├── projectstorageerrornotifier.h │ │ │ │ ├── qmldesignerprojectmanager.cpp │ │ │ │ └── qmldesignerprojectmanager.h │ │ │ ├── puppetenvironmentbuilder.cpp │ │ │ ├── puppetenvironmentbuilder.h │ │ │ ├── qmldesigner.qbs │ │ │ ├── qmldesigner_global.h │ │ │ ├── qmldesignerconstants.h │ │ │ ├── qmldesignerexternaldependencies.cpp │ │ │ ├── qmldesignerexternaldependencies.h │ │ │ ├── qmldesignericons.h │ │ │ ├── qmldesignerplugin.cpp │ │ │ ├── qmldesignerplugin.h │ │ │ ├── qmldesignertr.h │ │ │ ├── qmlpreviewplugin/ │ │ │ │ ├── qmlpreview.metainfo │ │ │ │ ├── qmlpreviewactions.cpp │ │ │ │ ├── qmlpreviewactions.h │ │ │ │ ├── qmlpreviewplugin.cpp │ │ │ │ ├── qmlpreviewplugin.h │ │ │ │ ├── qmlpreviewplugin.json │ │ │ │ └── qmlpreviewplugin.qrc │ │ │ ├── qmltools/ │ │ │ │ ├── anchorline.cpp │ │ │ │ ├── anchorline.h │ │ │ │ ├── qml3dnode.cpp │ │ │ │ ├── qml3dnode.h │ │ │ │ ├── qmlanchors.cpp │ │ │ │ ├── qmlanchors.h │ │ │ │ ├── qmlchangeset.cpp │ │ │ │ ├── qmlchangeset.h │ │ │ │ ├── qmlconnections.cpp │ │ │ │ ├── qmlconnections.h │ │ │ │ ├── qmlitemnode.cpp │ │ │ │ ├── qmlitemnode.h │ │ │ │ ├── qmlmodelnodefacade.cpp │ │ │ │ ├── qmlmodelnodefacade.h │ │ │ │ ├── qmlobjectnode.cpp │ │ │ │ ├── qmlobjectnode.h │ │ │ │ ├── qmlstate.cpp │ │ │ │ ├── qmlstate.h │ │ │ │ ├── qmltimeline.cpp │ │ │ │ ├── qmltimeline.h │ │ │ │ ├── qmltimelinekeyframegroup.cpp │ │ │ │ ├── qmltimelinekeyframegroup.h │ │ │ │ ├── qmlvisualnode.cpp │ │ │ │ └── qmlvisualnode.h │ │ │ ├── qtquickplugin/ │ │ │ │ ├── qtquickplugin.cpp │ │ │ │ ├── qtquickplugin.h │ │ │ │ ├── qtquickplugin.json │ │ │ │ ├── qtquickplugin.qrc │ │ │ │ ├── quick.metainfo │ │ │ │ └── source/ │ │ │ │ ├── component.qml │ │ │ │ ├── component3d.qml │ │ │ │ ├── extendedview3D_template.qml │ │ │ │ ├── gridview.qml │ │ │ │ ├── gridviewv2.qml │ │ │ │ ├── listview.qml │ │ │ │ ├── listviewv2.qml │ │ │ │ ├── pathview.qml │ │ │ │ ├── pathviewv2.qml │ │ │ │ ├── text.qml │ │ │ │ ├── textedit.qml │ │ │ │ ├── texteditv2.qml │ │ │ │ ├── textinput.qml │ │ │ │ ├── textinputv2.qml │ │ │ │ └── textv2.qml │ │ │ ├── richtexteditordialog.cpp │ │ │ ├── richtexteditordialog.h │ │ │ ├── settings/ │ │ │ │ ├── designersettings.cpp │ │ │ │ ├── designersettings.h │ │ │ │ ├── qmldesignersettings.qbs │ │ │ │ └── qmldesignersettings_global.h │ │ │ ├── settingspage.cpp │ │ │ ├── settingspage.h │ │ │ ├── shortcutmanager.cpp │ │ │ ├── shortcutmanager.h │ │ │ ├── studio/ │ │ │ │ ├── studioquickutils.cpp │ │ │ │ ├── studioquickutils.h │ │ │ │ ├── studioquickwidget.cpp │ │ │ │ ├── studioquickwidget.h │ │ │ │ ├── studiovalidator.cpp │ │ │ │ └── studiovalidator.h │ │ │ ├── textmodifier/ │ │ │ │ ├── basetexteditmodifier.cpp │ │ │ │ ├── basetexteditmodifier.h │ │ │ │ ├── indentingtexteditormodifier.cpp │ │ │ │ └── indentingtexteditormodifier.h │ │ │ └── utils/ │ │ │ ├── designerpaths.cpp │ │ │ ├── designerpaths.h │ │ │ ├── qmlpuppetpaths.cpp │ │ │ ├── qmlpuppetpaths.h │ │ │ ├── windowmanager.cpp │ │ │ └── windowmanager.h │ │ ├── qmljseditor/ │ │ │ ├── CMakeLists.txt │ │ │ ├── QmlJSEditor.json.in │ │ │ ├── qmlexpressionundercursor.cpp │ │ │ ├── qmlexpressionundercursor.h │ │ │ ├── qmljsautocompleter.cpp │ │ │ ├── qmljsautocompleter.h │ │ │ ├── qmljscompletionassist.cpp │ │ │ ├── qmljscompletionassist.h │ │ │ ├── qmljscomponentfromobjectdef.cpp │ │ │ ├── qmljscomponentfromobjectdef.h │ │ │ ├── qmljscomponentnamedialog.cpp │ │ │ ├── qmljscomponentnamedialog.h │ │ │ ├── qmljseditor.cpp │ │ │ ├── qmljseditor.h │ │ │ ├── qmljseditor.qbs │ │ │ ├── qmljseditor_global.h │ │ │ ├── qmljseditorconstants.h │ │ │ ├── qmljseditordocument.cpp │ │ │ ├── qmljseditordocument.h │ │ │ ├── qmljseditordocument_p.h │ │ │ ├── qmljseditorplugin.cpp │ │ │ ├── qmljseditorplugin.h │ │ │ ├── qmljseditorsettings.cpp │ │ │ ├── qmljseditorsettings.h │ │ │ ├── qmljseditortr.h │ │ │ ├── qmljsfilecomponentrenamehandler.cpp │ │ │ ├── qmljsfilecomponentrenamehandler.h │ │ │ ├── qmljsfindreferences.cpp │ │ │ ├── qmljsfindreferences.h │ │ │ ├── qmljshighlighter.cpp │ │ │ ├── qmljshighlighter.h │ │ │ ├── qmljshoverhandler.cpp │ │ │ ├── qmljshoverhandler.h │ │ │ ├── qmljsoutline.cpp │ │ │ ├── qmljsoutline.h │ │ │ ├── qmljsoutlinetreeview.cpp │ │ │ ├── qmljsoutlinetreeview.h │ │ │ ├── qmljsquickfix.cpp │ │ │ ├── qmljsquickfix.h │ │ │ ├── qmljsquickfixassist.cpp │ │ │ ├── qmljsquickfixassist.h │ │ │ ├── qmljsquickfixes.cpp │ │ │ ├── qmljsreuse.cpp │ │ │ ├── qmljsreuse.h │ │ │ ├── qmljssemantichighlighter.cpp │ │ │ ├── qmljssemantichighlighter.h │ │ │ ├── qmljssemanticinfoupdater.cpp │ │ │ ├── qmljssemanticinfoupdater.h │ │ │ ├── qmljstextmark.cpp │ │ │ ├── qmljstextmark.h │ │ │ ├── qmljswrapinloader.cpp │ │ │ ├── qmljswrapinloader.h │ │ │ ├── qmllsclient.cpp │ │ │ ├── qmllsclient.h │ │ │ ├── qmllsclientsettings.cpp │ │ │ ├── qmllsclientsettings.h │ │ │ ├── qmloutlinemodel.cpp │ │ │ ├── qmloutlinemodel.h │ │ │ ├── qmltaskmanager.cpp │ │ │ ├── qmltaskmanager.h │ │ │ ├── quicktoolbar.cpp │ │ │ └── quicktoolbar.h │ │ ├── qmljstools/ │ │ │ ├── CMakeLists.txt │ │ │ ├── QmlJSTools.json.in │ │ │ ├── qmlformatsettings.cpp │ │ │ ├── qmlformatsettings.h │ │ │ ├── qmlformatsettingswidget.cpp │ │ │ ├── qmlformatsettingswidget.h │ │ │ ├── qmljsbundleprovider.cpp │ │ │ ├── qmljsbundleprovider.h │ │ │ ├── qmljscodestylepreferenceswidget.cpp │ │ │ ├── qmljscodestylepreferenceswidget.h │ │ │ ├── qmljscodestylesettings.cpp │ │ │ ├── qmljscodestylesettings.h │ │ │ ├── qmljscustomformatterwidget.cpp │ │ │ ├── qmljscustomformatterwidget.h │ │ │ ├── qmljsformatterselectionwidget.cpp │ │ │ ├── qmljsformatterselectionwidget.h │ │ │ ├── qmljsfunctionfilter.cpp │ │ │ ├── qmljsfunctionfilter.h │ │ │ ├── qmljsindenter.cpp │ │ │ ├── qmljsindenter.h │ │ │ ├── qmljsmodelmanager.cpp │ │ │ ├── qmljsmodelmanager.h │ │ │ ├── qmljsqtstylecodeformatter.cpp │ │ │ ├── qmljsqtstylecodeformatter.h │ │ │ ├── qmljsrefactoringchanges.cpp │ │ │ ├── qmljsrefactoringchanges.h │ │ │ ├── qmljssemanticinfo.cpp │ │ │ ├── qmljssemanticinfo.h │ │ │ ├── qmljstools.qbs │ │ │ ├── qmljstools.qrc │ │ │ ├── qmljstools_global.h │ │ │ ├── qmljstools_test.cpp │ │ │ ├── qmljstools_test.h │ │ │ ├── qmljstoolsconstants.h │ │ │ ├── qmljstoolsplugin.cpp │ │ │ ├── qmljstoolssettings.cpp │ │ │ ├── qmljstoolssettings.h │ │ │ └── qmljstoolstr.h │ │ ├── qmlpreview/ │ │ │ ├── CMakeLists.txt │ │ │ ├── QmlPreview.json.in │ │ │ ├── qmldebugtranslationclient.cpp │ │ │ ├── qmldebugtranslationclient.h │ │ │ ├── qmlpreview.qbs │ │ │ ├── qmlpreview_global.h │ │ │ ├── qmlpreviewclient.cpp │ │ │ ├── qmlpreviewclient.h │ │ │ ├── qmlpreviewconnectionmanager.cpp │ │ │ ├── qmlpreviewconnectionmanager.h │ │ │ ├── qmlpreviewfileontargetfinder.cpp │ │ │ ├── qmlpreviewfileontargetfinder.h │ │ │ ├── qmlpreviewplugin.cpp │ │ │ ├── qmlpreviewplugin.h │ │ │ ├── qmlpreviewruncontrol.cpp │ │ │ ├── qmlpreviewruncontrol.h │ │ │ ├── qmlpreviewtr.h │ │ │ └── tests/ │ │ │ ├── qiopipe.cpp │ │ │ ├── qiopipe.h │ │ │ ├── qmlpreviewclient_test.cpp │ │ │ ├── qmlpreviewclient_test.h │ │ │ ├── qmlpreviewplugin_test.cpp │ │ │ └── qmlpreviewplugin_test.h │ │ ├── qmlprofiler/ │ │ │ ├── CMakeLists.txt │ │ │ ├── QmlProfiler.json.in │ │ │ ├── debugmessagesmodel.cpp │ │ │ ├── debugmessagesmodel.h │ │ │ ├── flamegraphmodel.cpp │ │ │ ├── flamegraphmodel.h │ │ │ ├── flamegraphview.cpp │ │ │ ├── flamegraphview.h │ │ │ ├── inputeventsmodel.cpp │ │ │ ├── inputeventsmodel.h │ │ │ ├── memoryusagemodel.cpp │ │ │ ├── memoryusagemodel.h │ │ │ ├── pixmapcachemodel.cpp │ │ │ ├── pixmapcachemodel.h │ │ │ ├── qml/ │ │ │ │ ├── QmlProfilerFlameGraphView.qml │ │ │ │ ├── bindingloops_qt6.frag │ │ │ │ └── bindingloops_qt6.vert │ │ │ ├── qmlnote.cpp │ │ │ ├── qmlnote.h │ │ │ ├── qmlprofiler.qbs │ │ │ ├── qmlprofiler_global.h │ │ │ ├── qmlprofileranimationsmodel.cpp │ │ │ ├── qmlprofileranimationsmodel.h │ │ │ ├── qmlprofilerattachdialog.cpp │ │ │ ├── qmlprofilerattachdialog.h │ │ │ ├── qmlprofilerbindingloopsrenderpass.cpp │ │ │ ├── qmlprofilerbindingloopsrenderpass.h │ │ │ ├── qmlprofilerclientmanager.cpp │ │ │ ├── qmlprofilerclientmanager.h │ │ │ ├── qmlprofilerconstants.h │ │ │ ├── qmlprofilerdetailsrewriter.cpp │ │ │ ├── qmlprofilerdetailsrewriter.h │ │ │ ├── qmlprofilereventsview.h │ │ │ ├── qmlprofilermodelmanager.cpp │ │ │ ├── qmlprofilermodelmanager.h │ │ │ ├── qmlprofilernotesmodel.cpp │ │ │ ├── qmlprofilernotesmodel.h │ │ │ ├── qmlprofilerplainviewmanager.cpp │ │ │ ├── qmlprofilerplainviewmanager.h │ │ │ ├── qmlprofilerplugin.cpp │ │ │ ├── qmlprofilerrangemodel.cpp │ │ │ ├── qmlprofilerrangemodel.h │ │ │ ├── qmlprofilerrunconfigurationaspect.cpp │ │ │ ├── qmlprofilerrunconfigurationaspect.h │ │ │ ├── qmlprofilerruncontrol.cpp │ │ │ ├── qmlprofilerruncontrol.h │ │ │ ├── qmlprofilersettings.cpp │ │ │ ├── qmlprofilersettings.h │ │ │ ├── qmlprofilerstatemanager.cpp │ │ │ ├── qmlprofilerstatemanager.h │ │ │ ├── qmlprofilerstatewidget.cpp │ │ │ ├── qmlprofilerstatewidget.h │ │ │ ├── qmlprofilerstatisticsmodel.cpp │ │ │ ├── qmlprofilerstatisticsmodel.h │ │ │ ├── qmlprofilerstatisticsview.cpp │ │ │ ├── qmlprofilerstatisticsview.h │ │ │ ├── qmlprofilertextmark.cpp │ │ │ ├── qmlprofilertextmark.h │ │ │ ├── qmlprofilertimelinemodel.cpp │ │ │ ├── qmlprofilertimelinemodel.h │ │ │ ├── qmlprofilertool.cpp │ │ │ ├── qmlprofilertool.h │ │ │ ├── qmlprofilertr.h │ │ │ ├── qmlprofilertracefile.cpp │ │ │ ├── qmlprofilertracefile.h │ │ │ ├── qmlprofilertraceview.cpp │ │ │ ├── qmlprofilertraceview.h │ │ │ ├── qmlprofilerviewmanager.cpp │ │ │ ├── qmlprofilerviewmanager.h │ │ │ ├── quick3dframemodel.cpp │ │ │ ├── quick3dframemodel.h │ │ │ ├── quick3dframeview.cpp │ │ │ ├── quick3dframeview.h │ │ │ ├── quick3dmodel.cpp │ │ │ ├── quick3dmodel.h │ │ │ ├── scenegraphtimelinemodel.cpp │ │ │ ├── scenegraphtimelinemodel.h │ │ │ └── tests/ │ │ │ ├── Test.qml │ │ │ ├── debugmessagesmodel_test.cpp │ │ │ ├── debugmessagesmodel_test.h │ │ │ ├── fakedebugserver.cpp │ │ │ ├── fakedebugserver.h │ │ │ ├── flamegraphmodel_test.cpp │ │ │ ├── flamegraphmodel_test.h │ │ │ ├── flamegraphview_test.cpp │ │ │ ├── flamegraphview_test.h │ │ │ ├── inputeventsmodel_test.cpp │ │ │ ├── inputeventsmodel_test.h │ │ │ ├── localqmlprofilerrunner_test.cpp │ │ │ ├── localqmlprofilerrunner_test.h │ │ │ ├── memoryusagemodel_test.cpp │ │ │ ├── memoryusagemodel_test.h │ │ │ ├── pixmapcachemodel_test.cpp │ │ │ ├── pixmapcachemodel_test.h │ │ │ ├── qmlnote_test.cpp │ │ │ ├── qmlnote_test.h │ │ │ ├── qmlprofileranimationsmodel_test.cpp │ │ │ ├── qmlprofileranimationsmodel_test.h │ │ │ ├── qmlprofilerattachdialog_test.cpp │ │ │ ├── qmlprofilerattachdialog_test.h │ │ │ ├── qmlprofilerbindingloopsrenderpass_test.cpp │ │ │ ├── qmlprofilerbindingloopsrenderpass_test.h │ │ │ ├── qmlprofilerclientmanager_test.cpp │ │ │ ├── qmlprofilerclientmanager_test.h │ │ │ ├── qmlprofilerdetailsrewriter_test.cpp │ │ │ ├── qmlprofilerdetailsrewriter_test.h │ │ │ ├── qmlprofilertool_test.cpp │ │ │ ├── qmlprofilertool_test.h │ │ │ ├── qmlprofilertraceview_test.cpp │ │ │ ├── qmlprofilertraceview_test.h │ │ │ └── tests.qrc │ │ ├── qmlprojectmanager/ │ │ │ ├── .clang-format │ │ │ ├── CMakeLists.txt │ │ │ ├── QmlProjectManager.json.in │ │ │ ├── buildsystem/ │ │ │ │ ├── projectitem/ │ │ │ │ │ ├── converters.cpp │ │ │ │ │ ├── converters.h │ │ │ │ │ ├── filefilteritems.cpp │ │ │ │ │ ├── filefilteritems.h │ │ │ │ │ ├── qmlprojectitem.cpp │ │ │ │ │ └── qmlprojectitem.h │ │ │ │ ├── projectnode/ │ │ │ │ │ ├── qmlprojectnodes.cpp │ │ │ │ │ └── qmlprojectnodes.h │ │ │ │ ├── qmlbuildsystem.cpp │ │ │ │ └── qmlbuildsystem.h │ │ │ ├── projectfilecontenttools.cpp │ │ │ ├── projectfilecontenttools.h │ │ │ ├── qdslandingpage.cpp │ │ │ ├── qdslandingpage.h │ │ │ ├── qdslandingpagetheme.cpp │ │ │ ├── qdslandingpagetheme.h │ │ │ ├── qmldirtoqmlproject/ │ │ │ │ ├── mcumoduleprojectitem.cpp │ │ │ │ └── mcumoduleprojectitem.h │ │ │ ├── qmlmainfileaspect.cpp │ │ │ ├── qmlmainfileaspect.h │ │ │ ├── qmlmultilanguageaspect.cpp │ │ │ ├── qmlmultilanguageaspect.h │ │ │ ├── qmlproject.cpp │ │ │ ├── qmlproject.h │ │ │ ├── qmlproject.qrc │ │ │ ├── qmlprojectconstants.h │ │ │ ├── qmlprojectexporter/ │ │ │ │ ├── boilerplate.qrc │ │ │ │ ├── cmakegenerator.cpp │ │ │ │ ├── cmakegenerator.h │ │ │ │ ├── cmakewriter.cpp │ │ │ │ ├── cmakewriter.h │ │ │ │ ├── cmakewriterlib.cpp │ │ │ │ ├── cmakewriterlib.h │ │ │ │ ├── cmakewriterv0.cpp │ │ │ │ ├── cmakewriterv0.h │ │ │ │ ├── cmakewriterv1.cpp │ │ │ │ ├── cmakewriterv1.h │ │ │ │ ├── exporter.cpp │ │ │ │ ├── exporter.h │ │ │ │ ├── filegenerator.cpp │ │ │ │ ├── filegenerator.h │ │ │ │ ├── filetypes.cpp │ │ │ │ ├── filetypes.h │ │ │ │ ├── pythongenerator.cpp │ │ │ │ ├── pythongenerator.h │ │ │ │ ├── resourcegenerator.cpp │ │ │ │ ├── resourcegenerator.h │ │ │ │ └── templates/ │ │ │ │ ├── cmakelists_txt_shared.tpl │ │ │ │ ├── cmakemodule_v1.tpl │ │ │ │ ├── cmakeroot_lib.tpl │ │ │ │ ├── cmakeroot_v0.tpl │ │ │ │ ├── cmakeroot_v1.tpl │ │ │ │ ├── environment_h.tpl │ │ │ │ ├── import_qml_components_h.tpl │ │ │ │ ├── insight.tpl │ │ │ │ ├── main_cpp_v0.tpl │ │ │ │ ├── main_cpp_v1.tpl │ │ │ │ ├── python_generator_main.tpl │ │ │ │ ├── python_generator_settings.tpl │ │ │ │ ├── python_pyproject_toml.tpl │ │ │ │ ├── qmlcomponents.tpl │ │ │ │ └── qtquickcontrols2_conf.tpl │ │ │ ├── qmlprojectgen/ │ │ │ │ ├── qmlproject.tpl │ │ │ │ ├── qmlprojectgenerator.cpp │ │ │ │ ├── qmlprojectgenerator.h │ │ │ │ └── templates.qrc │ │ │ ├── qmlprojectmanager.qbs │ │ │ ├── qmlprojectmanager_global.h │ │ │ ├── qmlprojectmanagertr.h │ │ │ ├── qmlprojectplugin.cpp │ │ │ ├── qmlprojectplugin.h │ │ │ ├── qmlprojectrunconfiguration.cpp │ │ │ ├── qmlprojectrunconfiguration.h │ │ │ ├── qmlprojectwizardpage.cpp │ │ │ └── qmlprojectwizardpage.h │ │ ├── qnx/ │ │ │ ├── CMakeLists.txt │ │ │ ├── Qnx.json.in │ │ │ ├── qnx.qbs │ │ │ ├── qnx.qrc │ │ │ ├── qnxanalyzesupport.cpp │ │ │ ├── qnxanalyzesupport.h │ │ │ ├── qnxconstants.h │ │ │ ├── qnxdebugsupport.cpp │ │ │ ├── qnxdebugsupport.h │ │ │ ├── qnxdeployqtlibrariesdialog.cpp │ │ │ ├── qnxdeployqtlibrariesdialog.h │ │ │ ├── qnxdevice.cpp │ │ │ ├── qnxdevice.h │ │ │ ├── qnxdevicetester.cpp │ │ │ ├── qnxdevicetester.h │ │ │ ├── qnxplugin.cpp │ │ │ ├── qnxqtversion.cpp │ │ │ ├── qnxqtversion.h │ │ │ ├── qnxrunconfiguration.cpp │ │ │ ├── qnxrunconfiguration.h │ │ │ ├── qnxsettingspage.cpp │ │ │ ├── qnxsettingspage.h │ │ │ ├── qnxtoolchain.cpp │ │ │ ├── qnxtoolchain.h │ │ │ ├── qnxtr.h │ │ │ ├── qnxutils.cpp │ │ │ ├── qnxutils.h │ │ │ ├── slog2inforunner.cpp │ │ │ └── slog2inforunner.h │ │ ├── qtapplicationmanager/ │ │ │ ├── CMakeLists.txt │ │ │ ├── QtApplicationManagerIntegration.json.in │ │ │ ├── appmanagercmakepackagestep.cpp │ │ │ ├── appmanagercmakepackagestep.h │ │ │ ├── appmanagerconstants.h │ │ │ ├── appmanagercreatepackagestep.cpp │ │ │ ├── appmanagercreatepackagestep.h │ │ │ ├── appmanagerdeployconfigurationautoswitcher.cpp │ │ │ ├── appmanagerdeployconfigurationautoswitcher.h │ │ │ ├── appmanagerdeployconfigurationfactory.cpp │ │ │ ├── appmanagerdeployconfigurationfactory.h │ │ │ ├── appmanagerdeploypackagestep.cpp │ │ │ ├── appmanagerdeploypackagestep.h │ │ │ ├── appmanagerinstallpackagestep.cpp │ │ │ ├── appmanagerinstallpackagestep.h │ │ │ ├── appmanagerplugin.cpp │ │ │ ├── appmanagerrunconfiguration.cpp │ │ │ ├── appmanagerrunconfiguration.h │ │ │ ├── appmanagerruncontrol.cpp │ │ │ ├── appmanagerruncontrol.h │ │ │ ├── appmanagerstringaspect.cpp │ │ │ ├── appmanagerstringaspect.h │ │ │ ├── appmanagertargetinformation.cpp │ │ │ ├── appmanagertargetinformation.h │ │ │ ├── appmanagertr.h │ │ │ ├── appmanagerutilities.cpp │ │ │ ├── appmanagerutilities.h │ │ │ └── qtapplicationmanager.qbs │ │ ├── qtsupport/ │ │ │ ├── CMakeLists.txt │ │ │ ├── QtSupport.json.in │ │ │ ├── baseqtversion.cpp │ │ │ ├── baseqtversion.h │ │ │ ├── codegenerator.cpp │ │ │ ├── codegenerator.h │ │ │ ├── codegensettings.cpp │ │ │ ├── codegensettings.h │ │ │ ├── exampleslistmodel.cpp │ │ │ ├── exampleslistmodel.h │ │ │ ├── examplesparser.cpp │ │ │ ├── examplesparser.h │ │ │ ├── externaleditors.cpp │ │ │ ├── externaleditors.h │ │ │ ├── gettingstartedwelcomepage.cpp │ │ │ ├── gettingstartedwelcomepage.h │ │ │ ├── profilereader.cpp │ │ │ ├── profilereader.h │ │ │ ├── qscxmlcgenerator.cpp │ │ │ ├── qscxmlcgenerator.h │ │ │ ├── qtabiextractor.cpp │ │ │ ├── qtabiextractor.h │ │ │ ├── qtbuildaspects.cpp │ │ │ ├── qtbuildaspects.h │ │ │ ├── qtconfigwidget.cpp │ │ │ ├── qtconfigwidget.h │ │ │ ├── qtcppkitinfo.cpp │ │ │ ├── qtcppkitinfo.h │ │ │ ├── qtcreator_tutorials.xml │ │ │ ├── qtkitaspect.cpp │ │ │ ├── qtkitaspect.h │ │ │ ├── qtoptionspage.cpp │ │ │ ├── qtoptionspage.h │ │ │ ├── qtoutputformatter.cpp │ │ │ ├── qtoutputformatter.h │ │ │ ├── qtparser.cpp │ │ │ ├── qtparser.h │ │ │ ├── qtprojectimporter.cpp │ │ │ ├── qtprojectimporter.h │ │ │ ├── qtsupport.qbs │ │ │ ├── qtsupport.qrc │ │ │ ├── qtsupport_global.h │ │ │ ├── qtsupportconstants.h │ │ │ ├── qtsupportplugin.cpp │ │ │ ├── qtsupporttr.h │ │ │ ├── qttestparser.cpp │ │ │ ├── qttestparser.h │ │ │ ├── qtversionfactory.h │ │ │ ├── qtversionmanager.cpp │ │ │ ├── qtversionmanager.h │ │ │ ├── qtversions.cpp │ │ │ ├── qtversions.h │ │ │ ├── translationwizardpage.cpp │ │ │ ├── translationwizardpage.h │ │ │ ├── uicgenerator.cpp │ │ │ └── uicgenerator.h │ │ ├── remotelinux/ │ │ │ ├── CMakeLists.txt │ │ │ ├── RemoteLinux.json.in │ │ │ ├── abstractremotelinuxdeploystep.cpp │ │ │ ├── abstractremotelinuxdeploystep.h │ │ │ ├── connectdevicestep.cpp │ │ │ ├── connectdevicestep.h │ │ │ ├── customcommanddeploystep.cpp │ │ │ ├── customcommanddeploystep.h │ │ │ ├── deploymenttimeinfo.cpp │ │ │ ├── deploymenttimeinfo.h │ │ │ ├── filesystemaccess_test.cpp │ │ │ ├── filesystemaccess_test.h │ │ │ ├── genericdeploystep.cpp │ │ │ ├── genericdeploystep.h │ │ │ ├── genericdirectuploadstep.cpp │ │ │ ├── genericdirectuploadstep.h │ │ │ ├── killappstep.cpp │ │ │ ├── killappstep.h │ │ │ ├── linuxdevice.cpp │ │ │ ├── linuxdevice.h │ │ │ ├── linuxdevicetester.cpp │ │ │ ├── linuxdevicetester.h │ │ │ ├── linuxprocessinterface.h │ │ │ ├── makeinstallstep.cpp │ │ │ ├── makeinstallstep.h │ │ │ ├── publickeydeploymentdialog.cpp │ │ │ ├── publickeydeploymentdialog.h │ │ │ ├── remotelinux.qbs │ │ │ ├── remotelinux.qrc │ │ │ ├── remotelinux_constants.h │ │ │ ├── remotelinux_export.h │ │ │ ├── remotelinuxcustomrunconfiguration.cpp │ │ │ ├── remotelinuxcustomrunconfiguration.h │ │ │ ├── remotelinuxdebugsupport.cpp │ │ │ ├── remotelinuxdebugsupport.h │ │ │ ├── remotelinuxdeploysupport.cpp │ │ │ ├── remotelinuxdeploysupport.h │ │ │ ├── remotelinuxenvironmentaspect.cpp │ │ │ ├── remotelinuxenvironmentaspect.h │ │ │ ├── remotelinuxfiletransfer.cpp │ │ │ ├── remotelinuxfiletransfer.h │ │ │ ├── remotelinuxplugin.cpp │ │ │ ├── remotelinuxrunconfiguration.cpp │ │ │ ├── remotelinuxrunconfiguration.h │ │ │ ├── remotelinuxtr.h │ │ │ ├── sshdevicewizard.cpp │ │ │ ├── sshdevicewizard.h │ │ │ ├── sshkeycreationdialog.cpp │ │ │ ├── sshkeycreationdialog.h │ │ │ ├── tarpackagecreationstep.cpp │ │ │ ├── tarpackagecreationstep.h │ │ │ ├── tarpackagedeploystep.cpp │ │ │ └── tarpackagedeploystep.h │ │ ├── resourceeditor/ │ │ │ ├── CMakeLists.txt │ │ │ ├── ResourceEditor.json.in │ │ │ ├── qrceditor/ │ │ │ │ ├── qrceditor.cpp │ │ │ │ ├── qrceditor.h │ │ │ │ ├── resourcefile.cpp │ │ │ │ └── resourcefile_p.h │ │ │ ├── resource_global.h │ │ │ ├── resourceeditor.cpp │ │ │ ├── resourceeditor.h │ │ │ ├── resourceeditor.qbs │ │ │ ├── resourceeditorconstants.h │ │ │ ├── resourceeditorplugin.cpp │ │ │ ├── resourceeditortr.h │ │ │ ├── resourcenode.cpp │ │ │ └── resourcenode.h │ │ ├── saferenderer/ │ │ │ ├── CMakeLists.txt │ │ │ ├── SafeRenderer.json.in │ │ │ ├── saferenderer.h │ │ │ ├── saferenderer.qbs │ │ │ ├── saferenderer.qrc │ │ │ └── wizards/ │ │ │ ├── qsrapp/ │ │ │ │ ├── file.pro │ │ │ │ ├── main.cpp.tpl │ │ │ │ ├── main.qml.tpl │ │ │ │ ├── qml.qrc.tpl │ │ │ │ ├── safeasset.qrc.tpl │ │ │ │ └── wizard.json │ │ │ ├── qsrapp2_1/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── file.pro │ │ │ │ ├── main.cpp.tpl │ │ │ │ ├── main.qml.tpl │ │ │ │ ├── qml.qrc.tpl │ │ │ │ ├── safeasset.qrc.tpl │ │ │ │ └── wizard.json │ │ │ └── qsrapp2_2/ │ │ │ ├── CMakeLists.txt │ │ │ ├── file.pro │ │ │ ├── main.cpp.tpl │ │ │ ├── main.qml.tpl │ │ │ ├── qml.qrc.tpl │ │ │ ├── safeasset.qrc.tpl │ │ │ └── wizard.json │ │ ├── screenrecorder/ │ │ │ ├── CMakeLists.txt │ │ │ ├── ScreenRecorder.json.in │ │ │ ├── cropandtrim.cpp │ │ │ ├── cropandtrim.h │ │ │ ├── export.cpp │ │ │ ├── export.h │ │ │ ├── ffmpegutils.cpp │ │ │ ├── ffmpegutils.h │ │ │ ├── record.cpp │ │ │ ├── record.h │ │ │ ├── screenrecorder.qbs │ │ │ ├── screenrecorder_test.cpp │ │ │ ├── screenrecorder_test.h │ │ │ ├── screenrecorderconstants.h │ │ │ ├── screenrecorderplugin.cpp │ │ │ ├── screenrecordersettings.cpp │ │ │ ├── screenrecordersettings.h │ │ │ └── screenrecordertr.h │ │ ├── scxmleditor/ │ │ │ ├── CMakeLists.txt │ │ │ ├── ScxmlEditor.json.in │ │ │ ├── common/ │ │ │ │ ├── colorpicker.cpp │ │ │ │ ├── colorpicker.h │ │ │ │ ├── colorsettings.cpp │ │ │ │ ├── colorsettings.h │ │ │ │ ├── colorthemedialog.cpp │ │ │ │ ├── colorthemedialog.h │ │ │ │ ├── colorthemes.cpp │ │ │ │ ├── colorthemes.h │ │ │ │ ├── colorthemeview.cpp │ │ │ │ ├── colorthemeview.h │ │ │ │ ├── colortoolbutton.cpp │ │ │ │ ├── colortoolbutton.h │ │ │ │ ├── dragshapebutton.cpp │ │ │ │ ├── dragshapebutton.h │ │ │ │ ├── graphicsview.cpp │ │ │ │ ├── graphicsview.h │ │ │ │ ├── magnifier.cpp │ │ │ │ ├── magnifier.h │ │ │ │ ├── mainwidget.cpp │ │ │ │ ├── mainwidget.h │ │ │ │ ├── movableframe.cpp │ │ │ │ ├── movableframe.h │ │ │ │ ├── navigator.cpp │ │ │ │ ├── navigator.h │ │ │ │ ├── navigatorgraphicsview.cpp │ │ │ │ ├── navigatorgraphicsview.h │ │ │ │ ├── navigatorslider.cpp │ │ │ │ ├── navigatorslider.h │ │ │ │ ├── search.cpp │ │ │ │ ├── search.h │ │ │ │ ├── searchmodel.cpp │ │ │ │ ├── searchmodel.h │ │ │ │ ├── shapegroupwidget.cpp │ │ │ │ ├── shapegroupwidget.h │ │ │ │ ├── shapestoolbox.cpp │ │ │ │ ├── shapestoolbox.h │ │ │ │ ├── sizegrip.cpp │ │ │ │ ├── sizegrip.h │ │ │ │ ├── stateproperties.cpp │ │ │ │ ├── stateproperties.h │ │ │ │ ├── stateview.cpp │ │ │ │ ├── stateview.h │ │ │ │ ├── statistics.cpp │ │ │ │ ├── statistics.h │ │ │ │ ├── statisticsdialog.cpp │ │ │ │ ├── statisticsdialog.h │ │ │ │ ├── structure.cpp │ │ │ │ ├── structure.h │ │ │ │ ├── structuremodel.cpp │ │ │ │ ├── structuremodel.h │ │ │ │ ├── treeview.cpp │ │ │ │ └── treeview.h │ │ │ ├── outputpane/ │ │ │ │ ├── errorwidget.cpp │ │ │ │ ├── errorwidget.h │ │ │ │ ├── outputpane.h │ │ │ │ ├── outputtabwidget.cpp │ │ │ │ ├── outputtabwidget.h │ │ │ │ ├── tableview.cpp │ │ │ │ ├── tableview.h │ │ │ │ ├── warning.cpp │ │ │ │ ├── warning.h │ │ │ │ ├── warningmodel.cpp │ │ │ │ └── warningmodel.h │ │ │ ├── plugin_interface/ │ │ │ │ ├── actionhandler.cpp │ │ │ │ ├── actionhandler.h │ │ │ │ ├── actionprovider.h │ │ │ │ ├── attributeitemdelegate.cpp │ │ │ │ ├── attributeitemdelegate.h │ │ │ │ ├── attributeitemmodel.cpp │ │ │ │ ├── attributeitemmodel.h │ │ │ │ ├── baseitem.cpp │ │ │ │ ├── baseitem.h │ │ │ │ ├── connectableitem.cpp │ │ │ │ ├── connectableitem.h │ │ │ │ ├── cornergrabberitem.cpp │ │ │ │ ├── cornergrabberitem.h │ │ │ │ ├── eventitem.cpp │ │ │ │ ├── eventitem.h │ │ │ │ ├── finalstateitem.cpp │ │ │ │ ├── finalstateitem.h │ │ │ │ ├── genericscxmlplugin.cpp │ │ │ │ ├── genericscxmlplugin.h │ │ │ │ ├── graphicsitemprovider.h │ │ │ │ ├── graphicsscene.cpp │ │ │ │ ├── graphicsscene.h │ │ │ │ ├── highlightitem.cpp │ │ │ │ ├── highlightitem.h │ │ │ │ ├── historyitem.cpp │ │ │ │ ├── historyitem.h │ │ │ │ ├── idwarningitem.cpp │ │ │ │ ├── idwarningitem.h │ │ │ │ ├── imageprovider.cpp │ │ │ │ ├── imageprovider.h │ │ │ │ ├── initialstateitem.cpp │ │ │ │ ├── initialstateitem.h │ │ │ │ ├── initialwarningitem.cpp │ │ │ │ ├── initialwarningitem.h │ │ │ │ ├── isceditor.h │ │ │ │ ├── layoutitem.cpp │ │ │ │ ├── layoutitem.h │ │ │ │ ├── mytypes.h │ │ │ │ ├── parallelitem.cpp │ │ │ │ ├── parallelitem.h │ │ │ │ ├── quicktransitionitem.cpp │ │ │ │ ├── quicktransitionitem.h │ │ │ │ ├── scattributeitemdelegate.cpp │ │ │ │ ├── scattributeitemdelegate.h │ │ │ │ ├── scattributeitemmodel.cpp │ │ │ │ ├── scattributeitemmodel.h │ │ │ │ ├── sceneutils.cpp │ │ │ │ ├── sceneutils.h │ │ │ │ ├── scgraphicsitemprovider.cpp │ │ │ │ ├── scgraphicsitemprovider.h │ │ │ │ ├── scshapeprovider.cpp │ │ │ │ ├── scshapeprovider.h │ │ │ │ ├── scutilsprovider.cpp │ │ │ │ ├── scutilsprovider.h │ │ │ │ ├── scxmldocument.cpp │ │ │ │ ├── scxmldocument.h │ │ │ │ ├── scxmlnamespace.cpp │ │ │ │ ├── scxmlnamespace.h │ │ │ │ ├── scxmltag.cpp │ │ │ │ ├── scxmltag.h │ │ │ │ ├── scxmltagutils.cpp │ │ │ │ ├── scxmltagutils.h │ │ │ │ ├── scxmltypes.h │ │ │ │ ├── scxmluifactory.cpp │ │ │ │ ├── scxmluifactory.h │ │ │ │ ├── serializer.cpp │ │ │ │ ├── serializer.h │ │ │ │ ├── shapeprovider.cpp │ │ │ │ ├── shapeprovider.h │ │ │ │ ├── snapline.cpp │ │ │ │ ├── snapline.h │ │ │ │ ├── stateitem.cpp │ │ │ │ ├── stateitem.h │ │ │ │ ├── statewarningitem.cpp │ │ │ │ ├── statewarningitem.h │ │ │ │ ├── tagtextitem.cpp │ │ │ │ ├── tagtextitem.h │ │ │ │ ├── textitem.cpp │ │ │ │ ├── textitem.h │ │ │ │ ├── transitionitem.cpp │ │ │ │ ├── transitionitem.h │ │ │ │ ├── transitionwarningitem.cpp │ │ │ │ ├── transitionwarningitem.h │ │ │ │ ├── undocommands.cpp │ │ │ │ ├── undocommands.h │ │ │ │ ├── utilsprovider.cpp │ │ │ │ ├── utilsprovider.h │ │ │ │ ├── warningitem.cpp │ │ │ │ ├── warningitem.h │ │ │ │ └── warningprovider.h │ │ │ ├── scxmleditor.cpp │ │ │ ├── scxmleditor.h │ │ │ ├── scxmleditor.qbs │ │ │ ├── scxmleditor_global.h │ │ │ ├── scxmleditorconstants.h │ │ │ ├── scxmleditordocument.cpp │ │ │ ├── scxmleditordocument.h │ │ │ ├── scxmleditoricons.h │ │ │ ├── scxmleditorplugin.cpp │ │ │ ├── scxmleditortr.h │ │ │ ├── scxmltexteditor.cpp │ │ │ └── scxmltexteditor.h │ │ ├── serialterminal/ │ │ │ ├── CMakeLists.txt │ │ │ ├── SerialTerminal.json.in │ │ │ ├── consolelineedit.cpp │ │ │ ├── consolelineedit.h │ │ │ ├── serialcontrol.cpp │ │ │ ├── serialcontrol.h │ │ │ ├── serialdevicemodel.cpp │ │ │ ├── serialdevicemodel.h │ │ │ ├── serialoutputpane.cpp │ │ │ ├── serialoutputpane.h │ │ │ ├── serialterminal.qbs │ │ │ ├── serialterminalconstants.h │ │ │ ├── serialterminalplugin.cpp │ │ │ ├── serialterminalsettings.cpp │ │ │ ├── serialterminalsettings.h │ │ │ └── serialterminaltr.h │ │ ├── silversearcher/ │ │ │ ├── CMakeLists.txt │ │ │ ├── SilverSearcher.json.in │ │ │ ├── findinfilessilversearcher.cpp │ │ │ ├── findinfilessilversearcher.h │ │ │ ├── silversearcher.qbs │ │ │ ├── silversearcherparser.cpp │ │ │ ├── silversearcherparser.h │ │ │ ├── silversearcherparser_test.cpp │ │ │ ├── silversearcherparser_test.h │ │ │ ├── silversearcherplugin.cpp │ │ │ └── silversearchertr.h │ │ ├── squish/ │ │ │ ├── CMakeLists.txt │ │ │ ├── Squish.json.in │ │ │ ├── deletesymbolicnamedialog.cpp │ │ │ ├── deletesymbolicnamedialog.h │ │ │ ├── objectsmapdocument.cpp │ │ │ ├── objectsmapdocument.h │ │ │ ├── objectsmapeditor.cpp │ │ │ ├── objectsmapeditor.h │ │ │ ├── objectsmapeditorwidget.cpp │ │ │ ├── objectsmapeditorwidget.h │ │ │ ├── objectsmaptreeitem.cpp │ │ │ ├── objectsmaptreeitem.h │ │ │ ├── opensquishsuitesdialog.cpp │ │ │ ├── opensquishsuitesdialog.h │ │ │ ├── propertyitemdelegate.cpp │ │ │ ├── propertyitemdelegate.h │ │ │ ├── propertytreeitem.cpp │ │ │ ├── propertytreeitem.h │ │ │ ├── scripthelper.cpp │ │ │ ├── scripthelper.h │ │ │ ├── squish.qbs │ │ │ ├── squish.qrc │ │ │ ├── squishconstants.h │ │ │ ├── squishfilehandler.cpp │ │ │ ├── squishfilehandler.h │ │ │ ├── squishmessages.cpp │ │ │ ├── squishmessages.h │ │ │ ├── squishnavigationwidget.cpp │ │ │ ├── squishnavigationwidget.h │ │ │ ├── squishoutputpane.cpp │ │ │ ├── squishoutputpane.h │ │ │ ├── squishperspective.cpp │ │ │ ├── squishperspective.h │ │ │ ├── squishplugin.cpp │ │ │ ├── squishplugin_global.h │ │ │ ├── squishprocessbase.cpp │ │ │ ├── squishprocessbase.h │ │ │ ├── squishresultmodel.cpp │ │ │ ├── squishresultmodel.h │ │ │ ├── squishrunnerprocess.cpp │ │ │ ├── squishrunnerprocess.h │ │ │ ├── squishserverprocess.cpp │ │ │ ├── squishserverprocess.h │ │ │ ├── squishsettings.cpp │ │ │ ├── squishsettings.h │ │ │ ├── squishtesttreemodel.cpp │ │ │ ├── squishtesttreemodel.h │ │ │ ├── squishtesttreeview.cpp │ │ │ ├── squishtesttreeview.h │ │ │ ├── squishtools.cpp │ │ │ ├── squishtools.h │ │ │ ├── squishtr.h │ │ │ ├── squishwizardpages.cpp │ │ │ ├── squishwizardpages.h │ │ │ ├── squishxmloutputhandler.cpp │ │ │ ├── squishxmloutputhandler.h │ │ │ ├── suiteconf.cpp │ │ │ ├── suiteconf.h │ │ │ ├── symbolnameitemdelegate.cpp │ │ │ ├── symbolnameitemdelegate.h │ │ │ ├── testresult.cpp │ │ │ ├── testresult.h │ │ │ └── wizard/ │ │ │ └── suite/ │ │ │ └── wizard.json │ │ ├── subversion/ │ │ │ ├── CMakeLists.txt │ │ │ ├── Subversion.json.in │ │ │ ├── annotationhighlighter.cpp │ │ │ ├── annotationhighlighter.h │ │ │ ├── subversion.qbs │ │ │ ├── subversionclient.cpp │ │ │ ├── subversionclient.h │ │ │ ├── subversionconstants.h │ │ │ ├── subversioneditor.cpp │ │ │ ├── subversioneditor.h │ │ │ ├── subversionplugin.cpp │ │ │ ├── subversionplugin.h │ │ │ ├── subversionsettings.cpp │ │ │ ├── subversionsettings.h │ │ │ ├── subversionsubmiteditor.cpp │ │ │ ├── subversionsubmiteditor.h │ │ │ └── subversiontr.h │ │ ├── swift/ │ │ │ ├── CMakeLists.txt │ │ │ ├── Swift.json.in │ │ │ ├── swift.qbs │ │ │ ├── swiftplugin.cpp │ │ │ ├── swiftproject.cpp │ │ │ ├── swiftproject.h │ │ │ └── swifttr.h │ │ ├── terminal/ │ │ │ ├── CMakeLists.txt │ │ │ ├── Terminal.json.in │ │ │ ├── shellintegration.cpp │ │ │ ├── shellintegration.h │ │ │ ├── shellintegrations/ │ │ │ │ ├── LICENSE.clink │ │ │ │ ├── LICENSE.vscode │ │ │ │ ├── shellintegration-bash.sh │ │ │ │ ├── shellintegration-clink.lua │ │ │ │ ├── shellintegration-env.zsh │ │ │ │ ├── shellintegration-login.zsh │ │ │ │ ├── shellintegration-profile.zsh │ │ │ │ ├── shellintegration-rc.zsh │ │ │ │ ├── shellintegration.fish │ │ │ │ └── shellintegration.ps1 │ │ │ ├── shellmodel.cpp │ │ │ ├── shellmodel.h │ │ │ ├── shortcutmap.cpp │ │ │ ├── shortcutmap.h │ │ │ ├── terminal.qbs │ │ │ ├── terminal.qrc │ │ │ ├── terminalconstants.h │ │ │ ├── terminalicons.h │ │ │ ├── terminalpane.cpp │ │ │ ├── terminalpane.h │ │ │ ├── terminalplugin.cpp │ │ │ ├── terminalprocessimpl.cpp │ │ │ ├── terminalprocessimpl.h │ │ │ ├── terminalsettings.cpp │ │ │ ├── terminalsettings.h │ │ │ ├── terminaltr.h │ │ │ ├── terminalwidget.cpp │ │ │ ├── terminalwidget.h │ │ │ └── tests/ │ │ │ ├── colors │ │ │ ├── copy │ │ │ ├── cursor/ │ │ │ │ ├── bar │ │ │ │ ├── blinkbar │ │ │ │ ├── blinkblock │ │ │ │ ├── blinkunderline │ │ │ │ ├── block │ │ │ │ └── underline │ │ │ ├── decoration │ │ │ ├── filenames │ │ │ ├── integration │ │ │ ├── mouse │ │ │ └── title │ │ ├── texteditor/ │ │ │ ├── CMakeLists.txt │ │ │ ├── TextEditor.json.in │ │ │ ├── autocompleter.cpp │ │ │ ├── autocompleter.h │ │ │ ├── basefilefind.cpp │ │ │ ├── basefilefind.h │ │ │ ├── basehoverhandler.cpp │ │ │ ├── basehoverhandler.h │ │ │ ├── behaviorsettings.cpp │ │ │ ├── behaviorsettings.h │ │ │ ├── behaviorsettingspage.cpp │ │ │ ├── behaviorsettingspage.h │ │ │ ├── behaviorsettingswidget.cpp │ │ │ ├── behaviorsettingswidget.h │ │ │ ├── blockrange.h │ │ │ ├── bookmark.cpp │ │ │ ├── bookmark.h │ │ │ ├── bookmarkfilter.cpp │ │ │ ├── bookmarkfilter.h │ │ │ ├── bookmarkmanager.cpp │ │ │ ├── bookmarkmanager.h │ │ │ ├── circularclipboard.cpp │ │ │ ├── circularclipboard.h │ │ │ ├── circularclipboardassist.cpp │ │ │ ├── circularclipboardassist.h │ │ │ ├── codeassist/ │ │ │ │ ├── assistenums.h │ │ │ │ ├── assistinterface.cpp │ │ │ │ ├── assistinterface.h │ │ │ │ ├── assistproposalitem.cpp │ │ │ │ ├── assistproposalitem.h │ │ │ │ ├── assistproposaliteminterface.h │ │ │ │ ├── asyncprocessor.cpp │ │ │ │ ├── asyncprocessor.h │ │ │ │ ├── codeassist_test.cpp │ │ │ │ ├── codeassist_test.h │ │ │ │ ├── codeassistant.cpp │ │ │ │ ├── codeassistant.h │ │ │ │ ├── completionassistprovider.cpp │ │ │ │ ├── completionassistprovider.h │ │ │ │ ├── documentcontentcompletion.cpp │ │ │ │ ├── documentcontentcompletion.h │ │ │ │ ├── functionhintproposal.cpp │ │ │ │ ├── functionhintproposal.h │ │ │ │ ├── functionhintproposalwidget.cpp │ │ │ │ ├── functionhintproposalwidget.h │ │ │ │ ├── genericproposal.cpp │ │ │ │ ├── genericproposal.h │ │ │ │ ├── genericproposalmodel.cpp │ │ │ │ ├── genericproposalmodel.h │ │ │ │ ├── genericproposalwidget.cpp │ │ │ │ ├── genericproposalwidget.h │ │ │ │ ├── iassistprocessor.cpp │ │ │ │ ├── iassistprocessor.h │ │ │ │ ├── iassistproposal.cpp │ │ │ │ ├── iassistproposal.h │ │ │ │ ├── iassistproposalmodel.cpp │ │ │ │ ├── iassistproposalmodel.h │ │ │ │ ├── iassistproposalwidget.cpp │ │ │ │ ├── iassistproposalwidget.h │ │ │ │ ├── iassistprovider.cpp │ │ │ │ ├── iassistprovider.h │ │ │ │ ├── ifunctionhintproposalmodel.cpp │ │ │ │ ├── ifunctionhintproposalmodel.h │ │ │ │ ├── keywordscompletionassist.cpp │ │ │ │ └── keywordscompletionassist.h │ │ │ ├── codecchooser.cpp │ │ │ ├── codecchooser.h │ │ │ ├── codestyleeditor.cpp │ │ │ ├── codestyleeditor.h │ │ │ ├── codestylepool.cpp │ │ │ ├── codestylepool.h │ │ │ ├── codestyleselectorwidget.cpp │ │ │ ├── codestyleselectorwidget.h │ │ │ ├── colorpreviewhoverhandler.cpp │ │ │ ├── colorpreviewhoverhandler.h │ │ │ ├── colorscheme.cpp │ │ │ ├── colorscheme.h │ │ │ ├── colorschemeedit.cpp │ │ │ ├── colorschemeedit.h │ │ │ ├── command.cpp │ │ │ ├── command.h │ │ │ ├── commentssettings.cpp │ │ │ ├── commentssettings.h │ │ │ ├── completionsettings.cpp │ │ │ ├── completionsettings.h │ │ │ ├── displaysettings.cpp │ │ │ ├── displaysettings.h │ │ │ ├── extraencodingsettings.cpp │ │ │ ├── extraencodingsettings.h │ │ │ ├── findincurrentfile.cpp │ │ │ ├── findincurrentfile.h │ │ │ ├── findinfiles.cpp │ │ │ ├── findinfiles.h │ │ │ ├── findinopenfiles.cpp │ │ │ ├── findinopenfiles.h │ │ │ ├── fontsettings.cpp │ │ │ ├── fontsettings.h │ │ │ ├── fontsettingspage.cpp │ │ │ ├── fontsettingspage.h │ │ │ ├── formatter.h │ │ │ ├── formattexteditor.cpp │ │ │ ├── formattexteditor.h │ │ │ ├── highlighter.cpp │ │ │ ├── highlighter.h │ │ │ ├── highlighter_test.cpp │ │ │ ├── highlighter_test.h │ │ │ ├── highlighterhelper.cpp │ │ │ ├── highlighterhelper.h │ │ │ ├── highlightersettings.cpp │ │ │ ├── highlightersettings.h │ │ │ ├── icodestylepreferences.cpp │ │ │ ├── icodestylepreferences.h │ │ │ ├── icodestylepreferencesfactory.h │ │ │ ├── indenter.h │ │ │ ├── ioutlinewidget.h │ │ │ ├── jsoneditor.cpp │ │ │ ├── jsoneditor.h │ │ │ ├── linenumberfilter.cpp │ │ │ ├── linenumberfilter.h │ │ │ ├── marginsettings.cpp │ │ │ ├── marginsettings.h │ │ │ ├── markdowneditor.cpp │ │ │ ├── markdowneditor.h │ │ │ ├── outlinefactory.cpp │ │ │ ├── outlinefactory.h │ │ │ ├── plaintexteditorfactory.cpp │ │ │ ├── plaintexteditorfactory.h │ │ │ ├── quickfix.cpp │ │ │ ├── quickfix.h │ │ │ ├── refactoringchanges.cpp │ │ │ ├── refactoringchanges.h │ │ │ ├── refactoroverlay.cpp │ │ │ ├── refactoroverlay.h │ │ │ ├── semantichighlighter.cpp │ │ │ ├── semantichighlighter.h │ │ │ ├── simplecodestylepreferences.cpp │ │ │ ├── simplecodestylepreferences.h │ │ │ ├── simplecodestylepreferenceswidget.cpp │ │ │ ├── simplecodestylepreferenceswidget.h │ │ │ ├── snippets/ │ │ │ │ ├── reuse.h │ │ │ │ ├── snippet.cpp │ │ │ │ ├── snippet.h │ │ │ │ ├── snippetassistcollector.cpp │ │ │ │ ├── snippetassistcollector.h │ │ │ │ ├── snippeteditor.cpp │ │ │ │ ├── snippeteditor.h │ │ │ │ ├── snippetoverlay.cpp │ │ │ │ ├── snippetoverlay.h │ │ │ │ ├── snippetparser.cpp │ │ │ │ ├── snippetparser.h │ │ │ │ ├── snippetprovider.cpp │ │ │ │ ├── snippetprovider.h │ │ │ │ ├── snippetscollection.cpp │ │ │ │ ├── snippetscollection.h │ │ │ │ ├── snippetssettingspage.cpp │ │ │ │ └── snippetssettingspage.h │ │ │ ├── storagesettings.cpp │ │ │ ├── storagesettings.h │ │ │ ├── syntaxhighlighter.cpp │ │ │ ├── syntaxhighlighter.h │ │ │ ├── tabsettings.cpp │ │ │ ├── tabsettings.h │ │ │ ├── tabsettingswidget.cpp │ │ │ ├── tabsettingswidget.h │ │ │ ├── textdocument.cpp │ │ │ ├── textdocument.h │ │ │ ├── textdocumentlayout.cpp │ │ │ ├── textdocumentlayout.h │ │ │ ├── texteditor.cpp │ │ │ ├── texteditor.h │ │ │ ├── texteditor.qbs │ │ │ ├── texteditor_global.h │ │ │ ├── texteditor_test.cpp │ │ │ ├── texteditor_test.h │ │ │ ├── texteditorconstants.cpp │ │ │ ├── texteditorconstants.h │ │ │ ├── texteditoroverlay.cpp │ │ │ ├── texteditoroverlay.h │ │ │ ├── texteditorplugin.cpp │ │ │ ├── texteditorsettings.cpp │ │ │ ├── texteditorsettings.h │ │ │ ├── texteditorsupport.qbs │ │ │ ├── texteditorsupport_global.h │ │ │ ├── texteditortr.h │ │ │ ├── textindenter.cpp │ │ │ ├── textindenter.h │ │ │ ├── textmark.cpp │ │ │ ├── textmark.h │ │ │ ├── textstyles.h │ │ │ ├── textsuggestion.cpp │ │ │ ├── textsuggestion.h │ │ │ ├── typehierarchy.cpp │ │ │ ├── typehierarchy.h │ │ │ ├── typingsettings.cpp │ │ │ └── typingsettings.h │ │ ├── todo/ │ │ │ ├── CMakeLists.txt │ │ │ ├── Todo.json.in │ │ │ ├── constants.h │ │ │ ├── cpptodoitemsscanner.cpp │ │ │ ├── cpptodoitemsscanner.h │ │ │ ├── keyword.cpp │ │ │ ├── keyword.h │ │ │ ├── keyworddialog.cpp │ │ │ ├── keyworddialog.h │ │ │ ├── lineparser.cpp │ │ │ ├── lineparser.h │ │ │ ├── qmljstodoitemsscanner.cpp │ │ │ ├── qmljstodoitemsscanner.h │ │ │ ├── settings.cpp │ │ │ ├── settings.h │ │ │ ├── todo.qbs │ │ │ ├── todoicons.cpp │ │ │ ├── todoicons.h │ │ │ ├── todoitem.h │ │ │ ├── todoitemsmodel.cpp │ │ │ ├── todoitemsmodel.h │ │ │ ├── todoitemsprovider.cpp │ │ │ ├── todoitemsprovider.h │ │ │ ├── todoitemsscanner.cpp │ │ │ ├── todoitemsscanner.h │ │ │ ├── todooutputpane.cpp │ │ │ ├── todooutputpane.h │ │ │ ├── todooutputtreeview.cpp │ │ │ ├── todooutputtreeview.h │ │ │ ├── todooutputtreeviewdelegate.cpp │ │ │ ├── todooutputtreeviewdelegate.h │ │ │ ├── todoplugin.cpp │ │ │ ├── todoplugin.qrc │ │ │ ├── todoprojectpanel.cpp │ │ │ ├── todoprojectpanel.h │ │ │ └── todotr.h │ │ ├── updateinfo/ │ │ │ ├── CMakeLists.txt │ │ │ ├── UpdateInfo.json.in │ │ │ ├── updateinfo.qbs │ │ │ ├── updateinfoplugin.cpp │ │ │ ├── updateinfoplugin.h │ │ │ ├── updateinfoservice.h │ │ │ ├── updateinfosettings.cpp │ │ │ ├── updateinfosettings.h │ │ │ ├── updateinfotools.h │ │ │ └── updateinfotr.h │ │ ├── valgrind/ │ │ │ ├── CMakeLists.txt │ │ │ ├── Valgrind.json.in │ │ │ ├── callgrind/ │ │ │ │ ├── callgrindabstractmodel.h │ │ │ │ ├── callgrindcallmodel.cpp │ │ │ │ ├── callgrindcallmodel.h │ │ │ │ ├── callgrindcostitem.cpp │ │ │ │ ├── callgrindcostitem.h │ │ │ │ ├── callgrindcycledetection.cpp │ │ │ │ ├── callgrindcycledetection.h │ │ │ │ ├── callgrinddatamodel.cpp │ │ │ │ ├── callgrinddatamodel.h │ │ │ │ ├── callgrindfunction.cpp │ │ │ │ ├── callgrindfunction.h │ │ │ │ ├── callgrindfunction_p.h │ │ │ │ ├── callgrindfunctioncall.cpp │ │ │ │ ├── callgrindfunctioncall.h │ │ │ │ ├── callgrindfunctioncycle.cpp │ │ │ │ ├── callgrindfunctioncycle.h │ │ │ │ ├── callgrindparsedata.cpp │ │ │ │ ├── callgrindparsedata.h │ │ │ │ ├── callgrindparser.cpp │ │ │ │ ├── callgrindparser.h │ │ │ │ ├── callgrindproxymodel.cpp │ │ │ │ ├── callgrindproxymodel.h │ │ │ │ ├── callgrindstackbrowser.cpp │ │ │ │ └── callgrindstackbrowser.h │ │ │ ├── callgrindcostdelegate.cpp │ │ │ ├── callgrindcostdelegate.h │ │ │ ├── callgrindcostview.cpp │ │ │ ├── callgrindcostview.h │ │ │ ├── callgrindhelper.cpp │ │ │ ├── callgrindhelper.h │ │ │ ├── callgrindnamedelegate.cpp │ │ │ ├── callgrindnamedelegate.h │ │ │ ├── callgrindtextmark.cpp │ │ │ ├── callgrindtextmark.h │ │ │ ├── callgrindtool.cpp │ │ │ ├── callgrindtool.h │ │ │ ├── callgrindvisualisation.cpp │ │ │ ├── callgrindvisualisation.h │ │ │ ├── memcheckerrorview.cpp │ │ │ ├── memcheckerrorview.h │ │ │ ├── memchecktool.cpp │ │ │ ├── memchecktool.h │ │ │ ├── startremotedialog.cpp │ │ │ ├── startremotedialog.h │ │ │ ├── unit_testdata/ │ │ │ │ └── memcheck-output-sample1.xml │ │ │ ├── valgrind.qbs │ │ │ ├── valgrind.qrc │ │ │ ├── valgrindmemcheckparsertest.cpp │ │ │ ├── valgrindmemcheckparsertest.h │ │ │ ├── valgrindplugin.cpp │ │ │ ├── valgrindprocess.cpp │ │ │ ├── valgrindprocess.h │ │ │ ├── valgrindsettings.cpp │ │ │ ├── valgrindsettings.h │ │ │ ├── valgrindtestrunnertest.cpp │ │ │ ├── valgrindtestrunnertest.h │ │ │ ├── valgrindtr.h │ │ │ ├── valgrindutils.cpp │ │ │ ├── valgrindutils.h │ │ │ └── xmlprotocol/ │ │ │ ├── announcethread.cpp │ │ │ ├── announcethread.h │ │ │ ├── error.cpp │ │ │ ├── error.h │ │ │ ├── errorlistmodel.cpp │ │ │ ├── errorlistmodel.h │ │ │ ├── frame.cpp │ │ │ ├── frame.h │ │ │ ├── parser.cpp │ │ │ ├── parser.h │ │ │ ├── stack.cpp │ │ │ ├── stack.h │ │ │ ├── stackmodel.cpp │ │ │ ├── stackmodel.h │ │ │ ├── status.cpp │ │ │ ├── status.h │ │ │ ├── suppression.cpp │ │ │ └── suppression.h │ │ ├── vcpkg/ │ │ │ ├── CMakeLists.txt │ │ │ ├── Vcpkg.json.in │ │ │ ├── vcpkg.qbs │ │ │ ├── vcpkg.qrc │ │ │ ├── vcpkg_test.cpp │ │ │ ├── vcpkg_test.h │ │ │ ├── vcpkgconstants.h │ │ │ ├── vcpkgmanifesteditor.cpp │ │ │ ├── vcpkgmanifesteditor.h │ │ │ ├── vcpkgplugin.cpp │ │ │ ├── vcpkgsearch.cpp │ │ │ ├── vcpkgsearch.h │ │ │ ├── vcpkgsettings.cpp │ │ │ ├── vcpkgsettings.h │ │ │ ├── vcpkgtr.h │ │ │ └── wizards/ │ │ │ └── manifest/ │ │ │ ├── vcpkg.json.tpl │ │ │ └── wizard.json │ │ ├── vcsbase/ │ │ │ ├── CMakeLists.txt │ │ │ ├── VcsBase.json.in │ │ │ ├── baseannotationhighlighter.cpp │ │ │ ├── baseannotationhighlighter.h │ │ │ ├── cleandialog.cpp │ │ │ ├── cleandialog.h │ │ │ ├── commonvcssettings.cpp │ │ │ ├── commonvcssettings.h │ │ │ ├── diffandloghighlighter.cpp │ │ │ ├── diffandloghighlighter.h │ │ │ ├── nicknamedialog.cpp │ │ │ ├── nicknamedialog.h │ │ │ ├── submiteditorfile.cpp │ │ │ ├── submiteditorfile.h │ │ │ ├── submiteditorwidget.cpp │ │ │ ├── submiteditorwidget.h │ │ │ ├── submitfieldwidget.cpp │ │ │ ├── submitfieldwidget.h │ │ │ ├── submitfilemodel.cpp │ │ │ ├── submitfilemodel.h │ │ │ ├── vcsbase.qbs │ │ │ ├── vcsbase.qrc │ │ │ ├── vcsbase_global.h │ │ │ ├── vcsbaseclient.cpp │ │ │ ├── vcsbaseclient.h │ │ │ ├── vcsbaseclientsettings.cpp │ │ │ ├── vcsbaseclientsettings.h │ │ │ ├── vcsbaseconstants.h │ │ │ ├── vcsbasediffeditorcontroller.cpp │ │ │ ├── vcsbasediffeditorcontroller.h │ │ │ ├── vcsbaseeditor.cpp │ │ │ ├── vcsbaseeditor.h │ │ │ ├── vcsbaseeditorconfig.cpp │ │ │ ├── vcsbaseeditorconfig.h │ │ │ ├── vcsbaseplugin.cpp │ │ │ ├── vcsbaseplugin.h │ │ │ ├── vcsbasesubmiteditor.cpp │ │ │ ├── vcsbasesubmiteditor.h │ │ │ ├── vcsbasetr.h │ │ │ ├── vcscommand.cpp │ │ │ ├── vcscommand.h │ │ │ ├── vcsenums.h │ │ │ ├── vcsoutputformatter.cpp │ │ │ ├── vcsoutputformatter.h │ │ │ ├── vcsoutputwindow.cpp │ │ │ ├── vcsoutputwindow.h │ │ │ ├── vcsplugin.cpp │ │ │ ├── vcsplugin.h │ │ │ └── wizard/ │ │ │ ├── vcscommandpage.cpp │ │ │ ├── vcscommandpage.h │ │ │ ├── vcsconfigurationpage.cpp │ │ │ ├── vcsconfigurationpage.h │ │ │ ├── vcsjsextension.cpp │ │ │ └── vcsjsextension.h │ │ ├── webassembly/ │ │ │ ├── CMakeLists.txt │ │ │ ├── WebAssembly.json.in │ │ │ ├── webassembly.qbs │ │ │ ├── webassembly_global.h │ │ │ ├── webassembly_test.cpp │ │ │ ├── webassembly_test.h │ │ │ ├── webassemblyconstants.h │ │ │ ├── webassemblydevice.cpp │ │ │ ├── webassemblydevice.h │ │ │ ├── webassemblyemsdk.cpp │ │ │ ├── webassemblyemsdk.h │ │ │ ├── webassemblyplugin.cpp │ │ │ ├── webassemblyqtversion.cpp │ │ │ ├── webassemblyqtversion.h │ │ │ ├── webassemblyrunconfiguration.cpp │ │ │ ├── webassemblyrunconfiguration.h │ │ │ ├── webassemblysettings.cpp │ │ │ ├── webassemblysettings.h │ │ │ ├── webassemblytoolchain.cpp │ │ │ ├── webassemblytoolchain.h │ │ │ └── webassemblytr.h │ │ ├── welcome/ │ │ │ ├── CMakeLists.txt │ │ │ ├── Welcome.json.in │ │ │ ├── introductionwidget.cpp │ │ │ ├── introductionwidget.h │ │ │ ├── welcome.qbs │ │ │ ├── welcomeplugin.cpp │ │ │ └── welcometr.h │ │ └── zenmode/ │ │ ├── CMakeLists.txt │ │ ├── ZenModePlugin.json.in │ │ ├── ZenModePlugin_en_001.ts │ │ ├── zenmode.qbs │ │ ├── zenmode.qrc │ │ ├── zenmodeplugin.cpp │ │ ├── zenmodeplugin.h │ │ ├── zenmodepluginconstants.h │ │ ├── zenmodeplugintr.h │ │ ├── zenmodesettings.cpp │ │ └── zenmodesettings.h │ ├── share/ │ │ ├── 3rdparty/ │ │ │ ├── CMakeLists.txt │ │ │ ├── cmake-helper/ │ │ │ │ ├── LICENSE.conan │ │ │ │ ├── conan.cmake │ │ │ │ ├── conan_provider.cmake │ │ │ │ ├── maintenance_tool_provider.cmake │ │ │ │ ├── package-manager.cmake │ │ │ │ └── qtcreator-project.cmake │ │ │ ├── fonts/ │ │ │ │ └── SourceCodePro.txt │ │ │ └── studiofonts/ │ │ │ ├── StudioFonts/ │ │ │ │ ├── StudioFonts.qml │ │ │ │ └── qmldir │ │ │ ├── TitilliumWeb.txt │ │ │ └── studiofonts.qrc │ │ ├── CMakeLists.txt │ │ ├── qtcreator/ │ │ │ ├── CMakeLists.txt │ │ │ └── externaltools/ │ │ │ ├── CMakeLists.txt │ │ │ ├── notepad_win.xml │ │ │ ├── qml.xml │ │ │ ├── qmlscene.xml │ │ │ ├── vi.xml │ │ │ └── vi_mac.xml │ │ └── share.qbs │ ├── shared/ │ │ ├── CMakeLists.txt │ │ ├── cpaster/ │ │ │ ├── cgi.cpp │ │ │ ├── cgi.h │ │ │ ├── splitter.cpp │ │ │ └── splitter.h │ │ ├── designerintegrationv2/ │ │ │ ├── CMakeLists.txt │ │ │ ├── README.txt │ │ │ ├── formresizer.cpp │ │ │ ├── formresizer.h │ │ │ ├── sizehandlerect.cpp │ │ │ ├── sizehandlerect.h │ │ │ ├── widgethost.cpp │ │ │ ├── widgethost.h │ │ │ └── widgethostconstants.h │ │ ├── help/ │ │ │ ├── CMakeLists.txt │ │ │ ├── bookmarkmanager.cpp │ │ │ ├── bookmarkmanager.h │ │ │ ├── contentwindow.cpp │ │ │ ├── contentwindow.h │ │ │ ├── helpicons.h │ │ │ ├── indexwindow.cpp │ │ │ ├── indexwindow.h │ │ │ ├── topicchooser.cpp │ │ │ └── topicchooser.h │ │ ├── json/ │ │ │ ├── README.md │ │ │ ├── json.cpp │ │ │ ├── json.h │ │ │ ├── json.pri │ │ │ └── json.qbs │ │ ├── modeltest/ │ │ │ ├── modeltest.cpp │ │ │ ├── modeltest.h │ │ │ └── modeltest.pri │ │ ├── proparser/ │ │ │ ├── CMakeLists.txt │ │ │ ├── ioutils.cpp │ │ │ ├── ioutils.h │ │ │ ├── objective_c.prf │ │ │ ├── profileevaluator.cpp │ │ │ ├── profileevaluator.h │ │ │ ├── proitems.cpp │ │ │ ├── proitems.h │ │ │ ├── proparser.qbs │ │ │ ├── proparser.qrc │ │ │ ├── prowriter.cpp │ │ │ ├── prowriter.h │ │ │ ├── qmake_global.h │ │ │ ├── qmakebuiltins.cpp │ │ │ ├── qmakeevaluator.cpp │ │ │ ├── qmakeevaluator.h │ │ │ ├── qmakeevaluator_p.h │ │ │ ├── qmakeglobals.cpp │ │ │ ├── qmakeglobals.h │ │ │ ├── qmakeparser.cpp │ │ │ ├── qmakeparser.h │ │ │ ├── qmakevfs.cpp │ │ │ ├── qmakevfs.h │ │ │ ├── registry.cpp │ │ │ ├── registry_p.h │ │ │ ├── spec_post.prf │ │ │ └── spec_pre.prf │ │ ├── qtcreator_gui_pch.h │ │ ├── qtcreator_pch.h │ │ ├── qtsingleapplication/ │ │ │ ├── CMakeLists.txt │ │ │ ├── README.txt │ │ │ ├── namespace.patch │ │ │ ├── qtlocalpeer.cpp │ │ │ ├── qtlocalpeer.h │ │ │ ├── qtsingleapplication.cpp │ │ │ └── qtsingleapplication.h │ │ └── registryaccess/ │ │ ├── CMakeLists.txt │ │ ├── registryaccess.cpp │ │ └── registryaccess.h │ ├── src.qbs │ └── tools/ │ ├── 3rdparty/ │ │ ├── CMakeLists.txt │ │ └── cplusplus-keywordgen/ │ │ ├── CMakeLists.txt │ │ ├── LICENSE.txt │ │ ├── cplusplus-keywordgen.cpp │ │ └── cplusplus-keywordgen.qbs │ ├── CMakeLists.txt │ ├── buildoutputparser/ │ │ ├── CMakeLists.txt │ │ ├── buildoutputparser.qbs │ │ ├── main.cpp │ │ ├── outputprocessor.cpp │ │ └── outputprocessor.h │ ├── cplusplus-ast2png/ │ │ ├── cplusplus-ast2png.cpp │ │ ├── cplusplus-ast2png.qbs │ │ ├── dumpers.inc │ │ └── tests/ │ │ └── templ01.cpp │ ├── cplusplus-frontend/ │ │ ├── cplusplus-frontend.cpp │ │ ├── cplusplus-frontend.qbs │ │ └── tests/ │ │ └── t1.cpp │ ├── cplusplus-mkvisitor/ │ │ ├── cplusplus-mkvisitor.cpp │ │ └── cplusplus-mkvisitor.qbs │ ├── cplusplus-shared/ │ │ ├── CPlusPlusTool.qbs │ │ ├── CPlusPlusToolUsingCustomUtils.qbs │ │ ├── pp-configuration.inc │ │ ├── utils.cpp │ │ └── utils.h │ ├── cplusplus-update-frontend/ │ │ ├── cplusplus-update-frontend.cpp │ │ └── cplusplus-update-frontend.qbs │ ├── cplusplustools.qbs │ ├── disclaim/ │ │ ├── CMakeLists.txt │ │ ├── disclaim.mm │ │ └── disclaim.qbs │ ├── dlwrapper/ │ │ ├── CMakeLists.txt │ │ └── dlwrapper.cpp │ ├── icons/ │ │ ├── README.md │ │ ├── downloadytthumbnails.py │ │ ├── export.py │ │ └── recolordocsicons.py │ ├── iostool/ │ │ ├── CMakeLists.txt │ │ ├── Info.plist │ │ ├── cfutils.h │ │ ├── gdbrunner.cpp │ │ ├── gdbrunner.h │ │ ├── iosdevicemanager.cpp │ │ ├── iosdevicemanager.h │ │ ├── iostool.cpp │ │ ├── iostool.h │ │ ├── iostool.qbs │ │ ├── iostooltypes.h │ │ ├── main.cpp │ │ ├── mobiledevicelib.cpp │ │ ├── mobiledevicelib.h │ │ ├── relayserver.cpp │ │ └── relayserver.h │ ├── process_stub/ │ │ ├── CMakeLists.txt │ │ ├── main.cpp │ │ └── process_stub.qbs │ ├── qmlpuppet/ │ │ ├── AutoInstallDesignerComponents.cmake │ │ ├── CMakeLists.txt │ │ ├── editor3d_qt6.qrc │ │ ├── html/ │ │ │ └── welcome.html │ │ ├── instances/ │ │ │ ├── instances.pri │ │ │ ├── nodeinstanceclientproxy.cpp │ │ │ └── nodeinstanceclientproxy.h │ │ ├── mockfiles/ │ │ │ ├── Dialog.qml │ │ │ ├── SwipeView.qml │ │ │ ├── ToggleButton.qml │ │ │ ├── ToolBarButton.qml │ │ │ ├── Window.qml │ │ │ ├── images/ │ │ │ │ ├── preview_landscape.hdr │ │ │ │ └── preview_studio.hdr │ │ │ ├── meshes/ │ │ │ │ ├── arrow.mesh │ │ │ │ ├── ring.mesh │ │ │ │ ├── ringselect.mesh │ │ │ │ └── scalerod.mesh │ │ │ ├── qt6/ │ │ │ │ ├── AdjustableArrow.qml │ │ │ │ ├── Arrow.qml │ │ │ │ ├── AutoScaleHelper.qml │ │ │ │ ├── CameraDisplay.qml │ │ │ │ ├── CameraFrustum.qml │ │ │ │ ├── CameraGizmo.qml │ │ │ │ ├── CameraView.qml │ │ │ │ ├── DirectionalDraggable.qml │ │ │ │ ├── EditCameraController.qml │ │ │ │ ├── EditView3D.qml │ │ │ │ ├── FadeHandle.qml │ │ │ │ ├── GridMaterial.qml │ │ │ │ ├── HelperGrid.qml │ │ │ │ ├── IconGizmo.qml │ │ │ │ ├── LightGizmo.qml │ │ │ │ ├── LightIconGizmo.qml │ │ │ │ ├── LightModel.qml │ │ │ │ ├── Line3D.qml │ │ │ │ ├── LookAtGizmo.qml │ │ │ │ ├── MaterialNodeView.qml │ │ │ │ ├── ModelNode2DImageView.qml │ │ │ │ ├── ModelNode3DImageView.qml │ │ │ │ ├── ModelNodeView.qml │ │ │ │ ├── MoveGizmo.qml │ │ │ │ ├── NodeNodeView.qml │ │ │ │ ├── OriginGizmo.qml │ │ │ │ ├── Overlay2D.qml │ │ │ │ ├── OverlayView3D.qml │ │ │ │ ├── ParticleEmitterGizmo.qml │ │ │ │ ├── ParticleSystemGizmo.qml │ │ │ │ ├── PlanarDraggable.qml │ │ │ │ ├── PlanarMoveHandle.qml │ │ │ │ ├── PlanarScaleHandle.qml │ │ │ │ ├── ReflectionProbeBox.qml │ │ │ │ ├── ReflectionProbeGizmo.qml │ │ │ │ ├── RotateGizmo.qml │ │ │ │ ├── RotateRing.qml │ │ │ │ ├── ScaleGizmo.qml │ │ │ │ ├── ScaleRod.qml │ │ │ │ ├── SceneView3D.qml │ │ │ │ ├── SelectionBox.qml │ │ │ │ ├── SpotLightHandle.qml │ │ │ │ └── ViewportResizer.qml │ │ │ └── shaders/ │ │ │ ├── gridmaterial.frag │ │ │ └── gridmaterial.vert │ │ ├── qmlprivategate/ │ │ │ ├── qmlprivategate.cpp │ │ │ ├── qmlprivategate.h │ │ │ └── qmlprivategate.pri │ │ ├── qmlpuppet/ │ │ │ ├── Info.plist │ │ │ ├── editor3d/ │ │ │ │ ├── boxgeometry.cpp │ │ │ │ ├── boxgeometry.h │ │ │ │ ├── camerageometry.cpp │ │ │ │ ├── camerageometry.h │ │ │ │ ├── generalhelper.cpp │ │ │ │ ├── generalhelper.h │ │ │ │ ├── geometrybase.cpp │ │ │ │ ├── geometrybase.h │ │ │ │ ├── gridgeometry.cpp │ │ │ │ ├── gridgeometry.h │ │ │ │ ├── icongizmoimageprovider.cpp │ │ │ │ ├── icongizmoimageprovider.h │ │ │ │ ├── lightgeometry.cpp │ │ │ │ ├── lightgeometry.h │ │ │ │ ├── linegeometry.cpp │ │ │ │ ├── linegeometry.h │ │ │ │ ├── lookatgeometry.cpp │ │ │ │ ├── lookatgeometry.h │ │ │ │ ├── mousearea3d.cpp │ │ │ │ ├── mousearea3d.h │ │ │ │ ├── selectionboxgeometry.cpp │ │ │ │ └── selectionboxgeometry.h │ │ │ ├── import3d/ │ │ │ │ ├── import3d.cpp │ │ │ │ ├── import3d.h │ │ │ │ └── import3d.pri │ │ │ ├── instances/ │ │ │ │ ├── anchorchangesnodeinstance.cpp │ │ │ │ ├── anchorchangesnodeinstance.h │ │ │ │ ├── animationdriver.cpp │ │ │ │ ├── animationdriver.h │ │ │ │ ├── behaviornodeinstance.cpp │ │ │ │ ├── behaviornodeinstance.h │ │ │ │ ├── capturenodeinstanceserverdispatcher.cpp │ │ │ │ ├── capturenodeinstanceserverdispatcher.h │ │ │ │ ├── childrenchangeeventfilter.cpp │ │ │ │ ├── childrenchangeeventfilter.h │ │ │ │ ├── componentnodeinstance.cpp │ │ │ │ ├── componentnodeinstance.h │ │ │ │ ├── dummycontextobject.cpp │ │ │ │ ├── dummycontextobject.h │ │ │ │ ├── dummynodeinstance.cpp │ │ │ │ ├── dummynodeinstance.h │ │ │ │ ├── instances.pri │ │ │ │ ├── layoutnodeinstance.cpp │ │ │ │ ├── layoutnodeinstance.h │ │ │ │ ├── nodeinstanceserver.cpp │ │ │ │ ├── nodeinstanceserver.h │ │ │ │ ├── nodeinstanceserverdispatcher.cpp │ │ │ │ ├── nodeinstanceserverdispatcher.h │ │ │ │ ├── nodeinstancesignalspy.cpp │ │ │ │ ├── nodeinstancesignalspy.h │ │ │ │ ├── objectnodeinstance.cpp │ │ │ │ ├── objectnodeinstance.h │ │ │ │ ├── positionernodeinstance.cpp │ │ │ │ ├── positionernodeinstance.h │ │ │ │ ├── qmlpropertychangesnodeinstance.cpp │ │ │ │ ├── qmlpropertychangesnodeinstance.h │ │ │ │ ├── qmlstatenodeinstance.cpp │ │ │ │ ├── qmlstatenodeinstance.h │ │ │ │ ├── qmltransitionnodeinstance.cpp │ │ │ │ ├── qmltransitionnodeinstance.h │ │ │ │ ├── qt3dpresentationnodeinstance.cpp │ │ │ │ ├── qt3dpresentationnodeinstance.h │ │ │ │ ├── qt5bakelightsnodeinstanceserver.cpp │ │ │ │ ├── qt5bakelightsnodeinstanceserver.h │ │ │ │ ├── qt5capturepreviewnodeinstanceserver.cpp │ │ │ │ ├── qt5capturepreviewnodeinstanceserver.h │ │ │ │ ├── qt5import3dnodeinstanceserver.cpp │ │ │ │ ├── qt5import3dnodeinstanceserver.h │ │ │ │ ├── qt5informationnodeinstanceserver.cpp │ │ │ │ ├── qt5informationnodeinstanceserver.h │ │ │ │ ├── qt5nodeinstanceclientproxy.cpp │ │ │ │ ├── qt5nodeinstanceclientproxy.h │ │ │ │ ├── qt5nodeinstanceserver.cpp │ │ │ │ ├── qt5nodeinstanceserver.h │ │ │ │ ├── qt5previewnodeinstanceserver.cpp │ │ │ │ ├── qt5previewnodeinstanceserver.h │ │ │ │ ├── qt5rendernodeinstanceserver.cpp │ │ │ │ ├── qt5rendernodeinstanceserver.h │ │ │ │ ├── qt5testnodeinstanceserver.cpp │ │ │ │ ├── qt5testnodeinstanceserver.h │ │ │ │ ├── quick3dmaterialnodeinstance.cpp │ │ │ │ ├── quick3dmaterialnodeinstance.h │ │ │ │ ├── quick3dnodeinstance.cpp │ │ │ │ ├── quick3dnodeinstance.h │ │ │ │ ├── quick3drenderablenodeinstance.cpp │ │ │ │ ├── quick3drenderablenodeinstance.h │ │ │ │ ├── quick3dtexturenodeinstance.cpp │ │ │ │ ├── quick3dtexturenodeinstance.h │ │ │ │ ├── quickitemnodeinstance.cpp │ │ │ │ ├── quickitemnodeinstance.h │ │ │ │ ├── servernodeinstance.cpp │ │ │ │ ├── servernodeinstance.h │ │ │ │ ├── viewconfig.cpp │ │ │ │ └── viewconfig.h │ │ │ ├── qmlbase.cpp │ │ │ ├── qmlbase.h │ │ │ ├── qmlpuppet.cpp │ │ │ ├── qmlpuppet.h │ │ │ ├── qmlpuppetmain.cpp │ │ │ ├── renderer/ │ │ │ │ ├── qmlrenderer.cpp │ │ │ │ └── qmlrenderer.h │ │ │ └── runner/ │ │ │ ├── loadwatcher.h │ │ │ ├── qmlconfiguration.h │ │ │ ├── qmlruntime.cpp │ │ │ └── qmlruntime.h │ │ ├── qmlpuppet.qbs │ │ ├── qmlpuppet.qrc │ │ └── runnerconf/ │ │ └── qmlruntime/ │ │ ├── content/ │ │ │ ├── resizeItemToWindow.qml │ │ │ └── resizeWindowToItem.qml │ │ └── default.qml │ ├── qmltraceviewer/ │ │ ├── CMakeLists.txt │ │ ├── Info.plist.in │ │ ├── qmltraceviewer.qbs │ │ ├── qmltraceviewerinit.cpp │ │ ├── qmltraceviewerinit.h │ │ ├── qmltraceviewermain.cpp │ │ ├── qmltraceviewerrpc.cpp │ │ ├── qmltraceviewerrpc.h │ │ ├── qmltraceviewersettings.cpp │ │ ├── qmltraceviewersettings.h │ │ ├── qmltraceviewerwindow.cpp │ │ ├── qmltraceviewerwindow.h │ │ └── schema/ │ │ ├── api.h │ │ └── qmltraceviewerapi.json.schema │ ├── qtc-askpass/ │ │ ├── CMakeLists.txt │ │ ├── qtc-askpass-main.cpp │ │ └── qtc-askpass.qbs │ ├── qtcdebugger/ │ │ ├── CMakeLists.txt │ │ ├── main.cpp │ │ └── qtcdebugger.qbs │ ├── qtcrashhandler/ │ │ └── CMakeLists.txt │ ├── qtcreatorcrashhandler/ │ │ ├── CMakeLists.txt │ │ ├── backtracecollector.cpp │ │ ├── backtracecollector.h │ │ ├── crashhandler.cpp │ │ ├── crashhandler.h │ │ ├── crashhandlerdialog.cpp │ │ ├── crashhandlerdialog.h │ │ ├── crashhandlersetup.cpp │ │ ├── crashhandlersetup.h │ │ ├── main.cpp │ │ ├── qtcreatorcrashhandler.qbs │ │ ├── utils.cpp │ │ └── utils.h │ ├── qtcreatorwidgets/ │ │ ├── CMakeLists.txt │ │ ├── README.txt │ │ ├── customwidget.h │ │ ├── customwidgets.cpp │ │ └── customwidgets.h │ ├── qtpromaker/ │ │ ├── CMakeLists.txt │ │ ├── main.cpp │ │ └── qtpromaker.qbs │ ├── sdktool/ │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── addabiflavor.cpp │ │ ├── addabiflavor.h │ │ ├── addcmakeoperation.cpp │ │ ├── addcmakeoperation.h │ │ ├── adddebuggeroperation.cpp │ │ ├── adddebuggeroperation.h │ │ ├── adddeviceoperation.cpp │ │ ├── adddeviceoperation.h │ │ ├── addkeysoperation.cpp │ │ ├── addkeysoperation.h │ │ ├── addkitoperation.cpp │ │ ├── addkitoperation.h │ │ ├── addqtoperation.cpp │ │ ├── addqtoperation.h │ │ ├── addtoolchainoperation.cpp │ │ ├── addtoolchainoperation.h │ │ ├── addvalueoperation.cpp │ │ ├── addvalueoperation.h │ │ ├── findkeyoperation.cpp │ │ ├── findkeyoperation.h │ │ ├── findvalueoperation.cpp │ │ ├── findvalueoperation.h │ │ ├── getoperation.cpp │ │ ├── getoperation.h │ │ ├── main.cpp │ │ ├── operation.cpp │ │ ├── operation.h │ │ ├── rmcmakeoperation.cpp │ │ ├── rmcmakeoperation.h │ │ ├── rmdebuggeroperation.cpp │ │ ├── rmdebuggeroperation.h │ │ ├── rmdeviceoperation.cpp │ │ ├── rmdeviceoperation.h │ │ ├── rmkeysoperation.cpp │ │ ├── rmkeysoperation.h │ │ ├── rmkitoperation.cpp │ │ ├── rmkitoperation.h │ │ ├── rmqtoperation.cpp │ │ ├── rmqtoperation.h │ │ ├── rmtoolchainoperation.cpp │ │ ├── rmtoolchainoperation.h │ │ ├── sdkpersistentsettings.cpp │ │ ├── sdkpersistentsettings.h │ │ ├── sdktool.qbs │ │ ├── sdktoollib.qbs │ │ ├── settings.cpp │ │ └── settings.h │ ├── sqlitetester/ │ │ ├── CMakeLists.txt │ │ └── main.cpp │ ├── tools.qbs │ ├── valgrindfake/ │ │ ├── CMakeLists.txt │ │ ├── main.cpp │ │ ├── outputgenerator.cpp │ │ ├── outputgenerator.h │ │ └── valgrindfake.qbs │ └── wininterrupt/ │ ├── CMakeLists.txt │ └── wininterrupt.c └── tests/ ├── CMakeLists.txt ├── auto/ │ ├── CMakeLists.txt │ ├── acp/ │ │ ├── CMakeLists.txt │ │ ├── acp.qbs │ │ └── tst_acp.cpp │ ├── aggregation/ │ │ ├── CMakeLists.txt │ │ ├── aggregation.qbs │ │ └── tst_aggregate.cpp │ ├── algorithm/ │ │ ├── CMakeLists.txt │ │ ├── algorithm.qbs │ │ └── tst_algorithm.cpp │ ├── android/ │ │ ├── CMakeLists.txt │ │ ├── Test.avd/ │ │ │ └── config.ini │ │ ├── TestTablet.avd/ │ │ │ └── config.ini │ │ ├── android.qbs │ │ └── tst_avdmanageroutputparser.cpp │ ├── auto.qbs │ ├── changeset/ │ │ ├── CMakeLists.txt │ │ ├── changeset.qbs │ │ └── tst_changeset.cpp │ ├── cplusplus/ │ │ ├── CMakeLists.txt │ │ ├── ast/ │ │ │ ├── CMakeLists.txt │ │ │ ├── ast.qbs │ │ │ └── tst_ast.cpp │ │ ├── c99/ │ │ │ ├── CMakeLists.txt │ │ │ ├── c99.qbs │ │ │ ├── data/ │ │ │ │ ├── compoundLiterals.1.c │ │ │ │ ├── compoundLiterals.2.c │ │ │ │ ├── designatedInitializer.1.c │ │ │ │ ├── designatedInitializer.2.c │ │ │ │ └── limits-caselabels.c │ │ │ └── tst_c99.cpp │ │ ├── checksymbols/ │ │ │ ├── CMakeLists.txt │ │ │ ├── checksymbols.qbs │ │ │ └── tst_checksymbols.cpp │ │ ├── codeformatter/ │ │ │ ├── CMakeLists.txt │ │ │ ├── codeformatter.qbs │ │ │ └── tst_codeformatter.cpp │ │ ├── cplusplus.qbs │ │ ├── cplusplus_global.h │ │ ├── cplusplusautotest.qbs │ │ ├── cppselectionchanger/ │ │ │ ├── CMakeLists.txt │ │ │ ├── cppselectionchanger.qbs │ │ │ ├── testCppFile.cpp │ │ │ └── tst_cppselectionchangertest.cpp │ │ ├── cxx11/ │ │ │ ├── CMakeLists.txt │ │ │ ├── cxx11.qbs │ │ │ ├── data/ │ │ │ │ ├── aliasDecl.1.cpp │ │ │ │ ├── alignofAlignas.1.cpp │ │ │ │ ├── attributes.cpp │ │ │ │ ├── binaryExprAsTemplateArg.cpp │ │ │ │ ├── braceInitializers.1.cpp │ │ │ │ ├── braceInitializers.2.cpp │ │ │ │ ├── braceInitializers.3.cpp │ │ │ │ ├── builtinTypeTraits.cpp │ │ │ │ ├── concepts.1.cpp │ │ │ │ ├── concepts.2.cpp │ │ │ │ ├── constevalIf.cpp │ │ │ │ ├── constinitconsteval.cpp │ │ │ │ ├── coroutines.cpp │ │ │ │ ├── declType.1.cpp │ │ │ │ ├── declTypeInBaseClause.1.cpp │ │ │ │ ├── declTypeInBaseClause.2.cpp │ │ │ │ ├── defaultdeleteInitializer.1.cpp │ │ │ │ ├── enums.1.cpp │ │ │ │ ├── explicitObjParam.cpp │ │ │ │ ├── foldExpressions.cpp │ │ │ │ ├── friends.cpp │ │ │ │ ├── genericLambdas.cpp │ │ │ │ ├── ifWithInit.cpp │ │ │ │ ├── inlineNamespace.1.cpp │ │ │ │ ├── int128.cpp │ │ │ │ ├── lambda.1.cpp │ │ │ │ ├── lambda.2.cpp │ │ │ │ ├── namedConstantTemplateParam.cpp │ │ │ │ ├── nestedNamespace.1.cpp │ │ │ │ ├── noExcept.1.cpp │ │ │ │ ├── notatemplate.cpp │ │ │ │ ├── packExpansion.1.cpp │ │ │ │ ├── placeholderReturnType.cpp │ │ │ │ ├── rangeFor.1.cpp │ │ │ │ ├── rangeFor.2.cpp │ │ │ │ ├── rangeFor.3.cpp │ │ │ │ ├── rawstringliterals.cpp │ │ │ │ ├── refQualifier.1.cpp │ │ │ │ ├── requiresClause.cpp │ │ │ │ ├── statementAttributes.cpp │ │ │ │ ├── staticAssert.1.cpp │ │ │ │ ├── templateGreaterGreater.1.cpp │ │ │ │ ├── templateTemplateTypeInDependentName.cpp │ │ │ │ ├── templatetemplate.1.cpp │ │ │ │ ├── templatetemplate.2.cpp │ │ │ │ ├── threadLocal.1.cpp │ │ │ │ ├── trailingtypespec.1.cpp │ │ │ │ ├── trailingtypespec.1.errors.txt │ │ │ │ ├── userDefinedLiterals.1.cpp │ │ │ │ └── userDefinedLiterals.2.cpp │ │ │ └── tst_cxx11.cpp │ │ ├── declarationcomments/ │ │ │ ├── CMakeLists.txt │ │ │ ├── declarationcomments.qbs │ │ │ └── tst_declarationcomments.cpp │ │ ├── fileiterationorder/ │ │ │ ├── CMakeLists.txt │ │ │ ├── fileiterationorder.qbs │ │ │ └── tst_fileiterationorder.cpp │ │ ├── findusages/ │ │ │ ├── CMakeLists.txt │ │ │ ├── findusages.qbs │ │ │ └── tst_findusages.cpp │ │ ├── lexer/ │ │ │ ├── CMakeLists.txt │ │ │ ├── lexer.qbs │ │ │ └── tst_lexer.cpp │ │ ├── lookup/ │ │ │ ├── CMakeLists.txt │ │ │ ├── lookup.qbs │ │ │ └── tst_lookup.cpp │ │ ├── misc/ │ │ │ ├── CMakeLists.txt │ │ │ ├── misc.qbs │ │ │ └── tst_misc.cpp │ │ ├── preprocessor/ │ │ │ ├── CMakeLists.txt │ │ │ ├── data/ │ │ │ │ ├── empty-macro.2.cpp │ │ │ │ ├── empty-macro.2.out.cpp │ │ │ │ ├── empty-macro.cpp │ │ │ │ ├── empty-macro.out.cpp │ │ │ │ ├── identifier-expansion.1.cpp │ │ │ │ ├── identifier-expansion.1.out.cpp │ │ │ │ ├── identifier-expansion.2.cpp │ │ │ │ ├── identifier-expansion.2.out.cpp │ │ │ │ ├── identifier-expansion.3.cpp │ │ │ │ ├── identifier-expansion.3.out.cpp │ │ │ │ ├── identifier-expansion.4.cpp │ │ │ │ ├── identifier-expansion.4.out.cpp │ │ │ │ ├── identifier-expansion.5.cpp │ │ │ │ ├── identifier-expansion.5.out.cpp │ │ │ │ ├── include-data/ │ │ │ │ │ ├── QtCore/ │ │ │ │ │ │ └── QDir │ │ │ │ │ ├── global/ │ │ │ │ │ │ ├── QDebug │ │ │ │ │ │ ├── QDir │ │ │ │ │ │ ├── QString │ │ │ │ │ │ ├── except │ │ │ │ │ │ ├── global.h │ │ │ │ │ │ ├── iostream │ │ │ │ │ │ ├── lib/ │ │ │ │ │ │ │ ├── file.h │ │ │ │ │ │ │ └── fileother.h │ │ │ │ │ │ ├── otherlib/ │ │ │ │ │ │ │ ├── file.h │ │ │ │ │ │ │ └── fileother.h │ │ │ │ │ │ ├── string │ │ │ │ │ │ └── utils/ │ │ │ │ │ │ └── file.h │ │ │ │ │ └── local/ │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── a.h │ │ │ │ │ ├── b.h │ │ │ │ │ ├── cyclic1.h │ │ │ │ │ ├── cyclic2.h │ │ │ │ │ ├── file.h │ │ │ │ │ ├── fileother.h │ │ │ │ │ ├── header.h │ │ │ │ │ ├── lib/ │ │ │ │ │ │ ├── file.h │ │ │ │ │ │ └── fileother.h │ │ │ │ │ ├── otherlib/ │ │ │ │ │ │ ├── file.h │ │ │ │ │ │ └── fileother.h │ │ │ │ │ ├── prefixa.h │ │ │ │ │ ├── prefixb.h │ │ │ │ │ ├── prefixc.h │ │ │ │ │ ├── stuff │ │ │ │ │ ├── test_main_allDiagnostics.cpp │ │ │ │ │ ├── test_main_detectIncludeGroupsByIncludeDir.cpp │ │ │ │ │ ├── test_main_detectIncludeGroupsByIncludeType.cpp │ │ │ │ │ ├── test_main_detectIncludeGroupsByNewLines.cpp │ │ │ │ │ ├── test_main_macroUses.cpp │ │ │ │ │ ├── test_main_resolvedUnresolved.cpp │ │ │ │ │ ├── utils/ │ │ │ │ │ │ └── utils.h │ │ │ │ │ ├── y.h │ │ │ │ │ └── z.h │ │ │ │ ├── include_next-data/ │ │ │ │ │ ├── customIncludePath/ │ │ │ │ │ │ └── t.h │ │ │ │ │ ├── main.cpp │ │ │ │ │ └── systemIncludePath/ │ │ │ │ │ └── t.h │ │ │ │ ├── macro-test.cpp │ │ │ │ ├── macro-test.out.cpp │ │ │ │ ├── macro_expand.c │ │ │ │ ├── macro_expand.out.c │ │ │ │ ├── macro_expand_1.cpp │ │ │ │ ├── macro_expand_1.out.cpp │ │ │ │ ├── macro_pounder_fn.c │ │ │ │ ├── noPP.1.cpp │ │ │ │ ├── noPP.2.cpp │ │ │ │ ├── poundpound.1.cpp │ │ │ │ ├── poundpound.1.out.cpp │ │ │ │ ├── recursive.1.cpp │ │ │ │ ├── recursive.1.out.cpp │ │ │ │ ├── recursive.2.cpp │ │ │ │ ├── recursive.2.out.cpp │ │ │ │ ├── reserved.1.cpp │ │ │ │ └── reserved.1.out.cpp │ │ │ ├── preprocessor.qbs │ │ │ └── tst_preprocessor.cpp │ │ ├── semantic/ │ │ │ ├── CMakeLists.txt │ │ │ ├── semantic.qbs │ │ │ └── tst_semantic.cpp │ │ ├── translationunit/ │ │ │ ├── CMakeLists.txt │ │ │ ├── translationunit.qbs │ │ │ └── tst_translationunit.cpp │ │ └── typeprettyprinter/ │ │ ├── CMakeLists.txt │ │ ├── tst_typeprettyprinter.cpp │ │ └── typeprettyprinter.qbs │ ├── debugger/ │ │ ├── CMakeLists.txt │ │ ├── README.txt │ │ ├── debugger.qbs │ │ ├── disassembler.qbs │ │ ├── dumpers.qbs │ │ ├── gdb.qbs │ │ ├── offsets.qbs │ │ ├── protocol.qbs │ │ ├── simplifytypes.qbs │ │ ├── tst_disassembler.cpp │ │ ├── tst_dumpers.cpp │ │ ├── tst_gdb.cpp │ │ ├── tst_offsets.cpp │ │ ├── tst_protocol.cpp │ │ └── tst_simplifytypes.cpp │ ├── diff/ │ │ ├── CMakeLists.txt │ │ ├── diff.qbs │ │ └── differ/ │ │ ├── CMakeLists.txt │ │ ├── differ.qbs │ │ └── tst_differ.cpp │ ├── environment/ │ │ ├── CMakeLists.txt │ │ ├── environment.qbs │ │ └── tst_environment.cpp │ ├── examples/ │ │ ├── CMakeLists.txt │ │ ├── examples.qbs │ │ └── tst_examples.cpp │ ├── extensionsystem/ │ │ ├── CMakeLists.txt │ │ ├── extensionsystem.qbs │ │ ├── plugin.qbs │ │ ├── pluginmanager/ │ │ │ ├── CMakeLists.txt │ │ │ ├── circularplugins/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── circularplugins.qbs │ │ │ │ ├── plugin1/ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── plugin1.cpp │ │ │ │ │ ├── plugin1.h │ │ │ │ │ ├── plugin1.json │ │ │ │ │ └── plugin1.qbs │ │ │ │ ├── plugin2/ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── plugin2.cpp │ │ │ │ │ ├── plugin2.h │ │ │ │ │ ├── plugin2.json │ │ │ │ │ └── plugin2.qbs │ │ │ │ └── plugin3/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── plugin3.cpp │ │ │ │ ├── plugin3.h │ │ │ │ ├── plugin3.json │ │ │ │ └── plugin3.qbs │ │ │ ├── correctplugins1/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── correctplugins1.qbs │ │ │ │ ├── plugin1/ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── plugin1.cpp │ │ │ │ │ ├── plugin1.h │ │ │ │ │ ├── plugin1.json │ │ │ │ │ └── plugin1.qbs │ │ │ │ ├── plugin2/ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── plugin2.cpp │ │ │ │ │ ├── plugin2.h │ │ │ │ │ ├── plugin2.json │ │ │ │ │ └── plugin2.qbs │ │ │ │ └── plugin3/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── plugin3.cpp │ │ │ │ ├── plugin3.h │ │ │ │ ├── plugin3.json │ │ │ │ └── plugin3.qbs │ │ │ ├── pluginmanager.qbs │ │ │ ├── test.qbs │ │ │ └── tst_pluginmanager.cpp │ │ └── pluginspec/ │ │ ├── CMakeLists.txt │ │ ├── pluginspec.qbs │ │ ├── test.qbs │ │ ├── testdependencies/ │ │ │ ├── spec1.json │ │ │ ├── spec2.json │ │ │ ├── spec3.json │ │ │ ├── spec4.json │ │ │ └── spec5.json │ │ ├── testdir/ │ │ │ ├── disabledbydefault.json │ │ │ └── spec.json │ │ ├── testplugin/ │ │ │ ├── CMakeLists.txt │ │ │ ├── testplugin.cpp │ │ │ ├── testplugin.h │ │ │ ├── testplugin.json │ │ │ ├── testplugin.qbs │ │ │ └── testplugin_global.h │ │ ├── testspecs/ │ │ │ ├── simplespec.json │ │ │ ├── simplespec_experimental.json │ │ │ ├── spec1.json │ │ │ ├── spec2.json │ │ │ ├── spec_wrong2.json │ │ │ ├── spec_wrong3.json │ │ │ ├── spec_wrong4.json │ │ │ └── spec_wrong5.json │ │ └── tst_pluginspec.cpp │ ├── externaltool/ │ │ ├── CMakeLists.txt │ │ ├── externaltool.qbs │ │ └── tst_externaltooltest.cpp │ ├── filesearch/ │ │ ├── CMakeLists.txt │ │ ├── filesearch.qbs │ │ ├── testfile.txt │ │ ├── tst_filesearch.cpp │ │ └── tst_filesearch.qrc │ ├── filesystemmodel/ │ │ ├── CMakeLists.txt │ │ └── tst_filesystemmodel.cpp │ ├── ios/ │ │ ├── CMakeLists.txt │ │ └── devicectlutils/ │ │ ├── CMakeLists.txt │ │ ├── devicectlutils.qbs │ │ └── tst_devicectlutils.cpp │ ├── json/ │ │ ├── CMakeLists.txt │ │ ├── bom.json │ │ ├── json.qbs │ │ ├── test.bjson │ │ ├── test.json │ │ ├── test2.json │ │ ├── test3.json │ │ └── tst_json.cpp │ ├── languageserverprotocol/ │ │ ├── CMakeLists.txt │ │ ├── languageserverprotocol.qbs │ │ └── tst_languageserverprotocol.cpp │ ├── pointeralgorithm/ │ │ ├── CMakeLists.txt │ │ ├── pointeralgorithm.qbs │ │ └── tst_pointeralgorithm.cpp │ ├── profilewriter/ │ │ ├── CMakeLists.txt │ │ ├── profilewriter.qbs │ │ └── tst_profilewriter.cpp │ ├── qml/ │ │ ├── CMakeLists.txt │ │ ├── codemodel/ │ │ │ ├── CMakeLists.txt │ │ │ ├── check/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── InlineComponent.qml │ │ │ │ ├── RequiredListProperties.qml │ │ │ │ ├── RequiredListPropertiesUser.qml │ │ │ │ ├── SmurfNonRecursive.qml │ │ │ │ ├── SmurfRecursive.qml │ │ │ │ ├── accessById.qml │ │ │ │ ├── avoid-eval.qml │ │ │ │ ├── avoid-some-constructors.qml │ │ │ │ ├── avoid-var.qml │ │ │ │ ├── case-fallthrough.qml │ │ │ │ ├── check.qbs │ │ │ │ ├── confusing-plus-minus.qml │ │ │ │ ├── equality-checks.qml │ │ │ │ ├── expression-statement.qml │ │ │ │ ├── inline-components.qml │ │ │ │ ├── new-expression.qml │ │ │ │ ├── properties.qml │ │ │ │ ├── suppression.qml │ │ │ │ ├── tst_check.cpp │ │ │ │ ├── unreachable.qml │ │ │ │ └── useless-blocks.qml │ │ │ ├── codemodel.qbs │ │ │ ├── dependencies/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── dependencies.qbs │ │ │ │ ├── samples/ │ │ │ │ │ ├── VisualItemModel.qml │ │ │ │ │ ├── test_ApplicationWindow.qml │ │ │ │ │ ├── test_Button.qml │ │ │ │ │ ├── test_CircularGauge.qml │ │ │ │ │ ├── test_ColorDialog.qml │ │ │ │ │ ├── test_ColumnLayout.qml │ │ │ │ │ ├── test_Component.qml │ │ │ │ │ ├── test_Dialog.qml │ │ │ │ │ ├── test_FileDialog.qml │ │ │ │ │ ├── test_FontDialog.qml │ │ │ │ │ ├── test_Gauge.qml │ │ │ │ │ ├── test_GridLayout.qml │ │ │ │ │ ├── test_ListModel.qml │ │ │ │ │ ├── test_ListView.qml │ │ │ │ │ ├── test_ListViewDelegate.qml │ │ │ │ │ ├── test_LocalStorage.qml │ │ │ │ │ ├── test_Material.qml │ │ │ │ │ ├── test_MessageDialog.qml │ │ │ │ │ ├── test_PieMenu.qml │ │ │ │ │ ├── test_QtObject.qml │ │ │ │ │ ├── test_RowLayout.qml │ │ │ │ │ ├── test_SampleLib.qml │ │ │ │ │ ├── test_StackLayout.qml │ │ │ │ │ ├── test_StatusIndicator.qml │ │ │ │ │ ├── test_Tests.qml │ │ │ │ │ ├── test_Timer.qml │ │ │ │ │ ├── test_Tumbler.qml │ │ │ │ │ ├── test_TumblerColumn.qml │ │ │ │ │ ├── test_Universal.qml │ │ │ │ │ ├── test_Window.qml │ │ │ │ │ └── test_XmlListModel.qml │ │ │ │ └── tst_dependencies.cpp │ │ │ ├── ecmascript7/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ecmascript7.qbs │ │ │ │ ├── samples/ │ │ │ │ │ └── basic/ │ │ │ │ │ ├── arrow-functions.js │ │ │ │ │ ├── class.js │ │ │ │ │ ├── constructor.js │ │ │ │ │ ├── extends.js │ │ │ │ │ ├── let.js │ │ │ │ │ ├── super.js │ │ │ │ │ ├── template-strings.js │ │ │ │ │ └── yield.js │ │ │ │ └── tst_ecmascript7.cpp │ │ │ └── importscheck/ │ │ │ ├── 001_flatQmlOnly/ │ │ │ │ └── GaussianDirectionalBlur.qml │ │ │ ├── 002_nestedQmlOnly/ │ │ │ │ └── QtGraphicalEffects/ │ │ │ │ ├── Blend.qml │ │ │ │ ├── BrightnessContrast.qml │ │ │ │ ├── ColorOverlay.qml │ │ │ │ ├── Colorize.qml │ │ │ │ ├── ConicalGradient.qml │ │ │ │ ├── Desaturate.qml │ │ │ │ ├── DirectionalBlur.qml │ │ │ │ ├── Displace.qml │ │ │ │ ├── DropShadow.qml │ │ │ │ ├── FastBlur.qml │ │ │ │ ├── GammaAdjust.qml │ │ │ │ ├── GaussianBlur.qml │ │ │ │ ├── Glow.qml │ │ │ │ ├── HueSaturation.qml │ │ │ │ ├── InnerShadow.qml │ │ │ │ ├── LevelAdjust.qml │ │ │ │ ├── LinearGradient.qml │ │ │ │ ├── MaskedBlur.qml │ │ │ │ ├── OpacityMask.qml │ │ │ │ ├── RadialBlur.qml │ │ │ │ ├── RadialGradient.qml │ │ │ │ ├── RectangularGlow.qml │ │ │ │ ├── RecursiveBlur.qml │ │ │ │ ├── ThresholdMask.qml │ │ │ │ ├── ZoomBlur.qml │ │ │ │ └── private/ │ │ │ │ ├── FastGlow.qml │ │ │ │ ├── FastInnerShadow.qml │ │ │ │ ├── FastMaskedBlur.qml │ │ │ │ ├── GaussianDirectionalBlur.qml │ │ │ │ ├── GaussianGlow.qml │ │ │ │ ├── GaussianInnerShadow.qml │ │ │ │ ├── GaussianMaskedBlur.qml │ │ │ │ └── SourceProxy.qml │ │ │ ├── 003_packageQmlOnly/ │ │ │ │ └── QtGraphicalEffects/ │ │ │ │ ├── Blend.qml │ │ │ │ ├── BrightnessContrast.qml │ │ │ │ ├── ColorOverlay.qml │ │ │ │ ├── Colorize.qml │ │ │ │ ├── ConicalGradient.qml │ │ │ │ ├── Desaturate.qml │ │ │ │ ├── DirectionalBlur.qml │ │ │ │ ├── Displace.qml │ │ │ │ ├── DropShadow.qml │ │ │ │ ├── FastBlur.qml │ │ │ │ ├── GammaAdjust.qml │ │ │ │ ├── GaussianBlur.qml │ │ │ │ ├── Glow.qml │ │ │ │ ├── HueSaturation.qml │ │ │ │ ├── InnerShadow.qml │ │ │ │ ├── LevelAdjust.qml │ │ │ │ ├── LinearGradient.qml │ │ │ │ ├── MaskedBlur.qml │ │ │ │ ├── OpacityMask.qml │ │ │ │ ├── RadialBlur.qml │ │ │ │ ├── RadialGradient.qml │ │ │ │ ├── RectangularGlow.qml │ │ │ │ ├── RecursiveBlur.qml │ │ │ │ ├── ThresholdMask.qml │ │ │ │ ├── ZoomBlur.qml │ │ │ │ ├── private/ │ │ │ │ │ ├── FastGlow.qml │ │ │ │ │ ├── FastInnerShadow.qml │ │ │ │ │ ├── FastMaskedBlur.qml │ │ │ │ │ ├── GaussianDirectionalBlur.qml │ │ │ │ │ ├── GaussianGlow.qml │ │ │ │ │ ├── GaussianInnerShadow.qml │ │ │ │ │ ├── GaussianMaskedBlur.qml │ │ │ │ │ └── SourceProxy.qml │ │ │ │ └── qmldir │ │ │ ├── 004_cppOnly copy/ │ │ │ │ └── QtQuick.2/ │ │ │ │ ├── plugins.qmltypes │ │ │ │ └── qmldir │ │ │ ├── 005_compositeQmlCopyAndCpp/ │ │ │ │ └── QtQuick/ │ │ │ │ └── Controls/ │ │ │ │ ├── ApplicationWindow.qml │ │ │ │ ├── BusyIndicator.qml │ │ │ │ ├── Button.qml │ │ │ │ ├── CheckBox.qml │ │ │ │ ├── ComboBox.qml │ │ │ │ ├── GroupBox.qml │ │ │ │ ├── Label.qml │ │ │ │ ├── Menu.qml │ │ │ │ ├── MenuBar.qml │ │ │ │ ├── Private/ │ │ │ │ │ ├── AbstractCheckable.qml │ │ │ │ │ ├── BasicButton.qml │ │ │ │ │ ├── ColumnMenuContent.qml │ │ │ │ │ ├── Control.qml │ │ │ │ │ ├── FastGlow.qml │ │ │ │ │ ├── FocusFrame.qml │ │ │ │ │ ├── MenuContentItem.qml │ │ │ │ │ ├── MenuContentScroller.qml │ │ │ │ │ ├── ModalPopupBehavior.qml │ │ │ │ │ ├── ScrollBar.qml │ │ │ │ │ ├── ScrollViewHelper.qml │ │ │ │ │ ├── SourceProxy.qml │ │ │ │ │ ├── StackView.js │ │ │ │ │ ├── StackViewSlideDelegate.qml │ │ │ │ │ ├── Style.qml │ │ │ │ │ ├── TabBar.qml │ │ │ │ │ ├── TableViewSelection.qml │ │ │ │ │ ├── TextSingleton.qml │ │ │ │ │ ├── qmldir │ │ │ │ │ └── style.js │ │ │ │ ├── ProgressBar.qml │ │ │ │ ├── RadioButton.qml │ │ │ │ ├── ScrollView.qml │ │ │ │ ├── Slider.qml │ │ │ │ ├── SpinBox.qml │ │ │ │ ├── SplitView.qml │ │ │ │ ├── StackView.qml │ │ │ │ ├── StackViewDelegate.qml │ │ │ │ ├── StackViewTransition.qml │ │ │ │ ├── StatusBar.qml │ │ │ │ ├── Styles/ │ │ │ │ │ ├── Base/ │ │ │ │ │ │ ├── BusyIndicatorStyle.qml │ │ │ │ │ │ ├── ButtonStyle.qml │ │ │ │ │ │ ├── CheckBoxStyle.qml │ │ │ │ │ │ ├── ComboBoxStyle.qml │ │ │ │ │ │ ├── FocusFrameStyle.qml │ │ │ │ │ │ ├── GroupBoxStyle.qml │ │ │ │ │ │ ├── MenuBarStyle.qml │ │ │ │ │ │ ├── MenuStyle.qml │ │ │ │ │ │ ├── ProgressBarStyle.qml │ │ │ │ │ │ ├── RadioButtonStyle.qml │ │ │ │ │ │ ├── ScrollViewStyle.qml │ │ │ │ │ │ ├── SliderStyle.qml │ │ │ │ │ │ ├── SpinBoxStyle.qml │ │ │ │ │ │ ├── StatusBarStyle.qml │ │ │ │ │ │ ├── SwitchStyle.qml │ │ │ │ │ │ ├── TabViewStyle.qml │ │ │ │ │ │ ├── TableViewStyle.qml │ │ │ │ │ │ ├── TextAreaStyle.qml │ │ │ │ │ │ ├── TextFieldStyle.qml │ │ │ │ │ │ ├── ToolBarStyle.qml │ │ │ │ │ │ └── ToolButtonStyle.qml │ │ │ │ │ ├── Desktop/ │ │ │ │ │ │ ├── BusyIndicatorStyle.qml │ │ │ │ │ │ ├── ButtonStyle.qml │ │ │ │ │ │ ├── CheckBoxStyle.qml │ │ │ │ │ │ ├── ComboBoxStyle.qml │ │ │ │ │ │ ├── FocusFrameStyle.qml │ │ │ │ │ │ ├── GroupBoxStyle.qml │ │ │ │ │ │ ├── MenuBarStyle.qml │ │ │ │ │ │ ├── MenuStyle.qml │ │ │ │ │ │ ├── ProgressBarStyle.qml │ │ │ │ │ │ ├── RadioButtonStyle.qml │ │ │ │ │ │ ├── RowItemSingleton.qml │ │ │ │ │ │ ├── ScrollViewStyle.qml │ │ │ │ │ │ ├── SliderStyle.qml │ │ │ │ │ │ ├── SpinBoxStyle.qml │ │ │ │ │ │ ├── StatusBarStyle.qml │ │ │ │ │ │ ├── SwitchStyle.qml │ │ │ │ │ │ ├── TabViewStyle.qml │ │ │ │ │ │ ├── TableViewStyle.qml │ │ │ │ │ │ ├── TextAreaStyle.qml │ │ │ │ │ │ ├── TextFieldStyle.qml │ │ │ │ │ │ ├── ToolBarStyle.qml │ │ │ │ │ │ ├── ToolButtonStyle.qml │ │ │ │ │ │ └── qmldir │ │ │ │ │ └── qmldir │ │ │ │ ├── Switch.qml │ │ │ │ ├── Tab.qml │ │ │ │ ├── TabView.qml │ │ │ │ ├── TableView.qml │ │ │ │ ├── TableViewColumn.qml │ │ │ │ ├── TextArea.qml │ │ │ │ ├── TextField.qml │ │ │ │ ├── ToolBar.qml │ │ │ │ ├── ToolButton.qml │ │ │ │ ├── plugins.qmltypes │ │ │ │ └── qmldir │ │ │ ├── 006_loneCompositeAndCpp/ │ │ │ │ └── Controls/ │ │ │ │ ├── plugins.qmltypes │ │ │ │ └── qmldir │ │ │ ├── 007_compositeQmlCopyAndCppAndQml/ │ │ │ │ └── QtQuick/ │ │ │ │ └── Controls/ │ │ │ │ ├── ApplicationWindow.qml │ │ │ │ ├── BusyIndicator.qml │ │ │ │ ├── Button.qml │ │ │ │ ├── CheckBox.qml │ │ │ │ ├── ComboBox.qml │ │ │ │ ├── GroupBox.qml │ │ │ │ ├── Label.qml │ │ │ │ ├── Menu.qml │ │ │ │ ├── MenuBar.qml │ │ │ │ ├── Private/ │ │ │ │ │ ├── AbstractCheckable.qml │ │ │ │ │ ├── BasicButton.qml │ │ │ │ │ ├── ColumnMenuContent.qml │ │ │ │ │ ├── Control.qml │ │ │ │ │ ├── FastGlow.qml │ │ │ │ │ ├── FocusFrame.qml │ │ │ │ │ ├── MenuContentItem.qml │ │ │ │ │ ├── MenuContentScroller.qml │ │ │ │ │ ├── ModalPopupBehavior.qml │ │ │ │ │ ├── ScrollBar.qml │ │ │ │ │ ├── ScrollViewHelper.qml │ │ │ │ │ ├── SourceProxy.qml │ │ │ │ │ ├── StackView.js │ │ │ │ │ ├── StackViewSlideDelegate.qml │ │ │ │ │ ├── Style.qml │ │ │ │ │ ├── TabBar.qml │ │ │ │ │ ├── TableViewSelection.qml │ │ │ │ │ ├── TextSingleton.qml │ │ │ │ │ ├── qmldir │ │ │ │ │ └── style.js │ │ │ │ ├── ProgressBar.qml │ │ │ │ ├── RadioButton.qml │ │ │ │ ├── ScrollView.qml │ │ │ │ ├── Slider.qml │ │ │ │ ├── SpinBox.qml │ │ │ │ ├── SplitView.qml │ │ │ │ ├── StackView.qml │ │ │ │ ├── StackViewDelegate.qml │ │ │ │ ├── StackViewTransition.qml │ │ │ │ ├── StatusBar.qml │ │ │ │ ├── Styles/ │ │ │ │ │ ├── Base/ │ │ │ │ │ │ ├── BusyIndicatorStyle.qml │ │ │ │ │ │ ├── ButtonStyle.qml │ │ │ │ │ │ ├── CheckBoxStyle.qml │ │ │ │ │ │ ├── ComboBoxStyle.qml │ │ │ │ │ │ ├── FocusFrameStyle.qml │ │ │ │ │ │ ├── GroupBoxStyle.qml │ │ │ │ │ │ ├── MenuBarStyle.qml │ │ │ │ │ │ ├── MenuStyle.qml │ │ │ │ │ │ ├── ProgressBarStyle.qml │ │ │ │ │ │ ├── RadioButtonStyle.qml │ │ │ │ │ │ ├── ScrollViewStyle.qml │ │ │ │ │ │ ├── SliderStyle.qml │ │ │ │ │ │ ├── SpinBoxStyle.qml │ │ │ │ │ │ ├── StatusBarStyle.qml │ │ │ │ │ │ ├── SwitchStyle.qml │ │ │ │ │ │ ├── TabViewStyle.qml │ │ │ │ │ │ ├── TableViewStyle.qml │ │ │ │ │ │ ├── TextAreaStyle.qml │ │ │ │ │ │ ├── TextFieldStyle.qml │ │ │ │ │ │ ├── ToolBarStyle.qml │ │ │ │ │ │ └── ToolButtonStyle.qml │ │ │ │ │ ├── Desktop/ │ │ │ │ │ │ ├── BusyIndicatorStyle.qml │ │ │ │ │ │ ├── ButtonStyle.qml │ │ │ │ │ │ ├── CheckBoxStyle.qml │ │ │ │ │ │ ├── ComboBoxStyle.qml │ │ │ │ │ │ ├── FocusFrameStyle.qml │ │ │ │ │ │ ├── GroupBoxStyle.qml │ │ │ │ │ │ ├── MenuBarStyle.qml │ │ │ │ │ │ ├── MenuStyle.qml │ │ │ │ │ │ ├── ProgressBarStyle.qml │ │ │ │ │ │ ├── RadioButtonStyle.qml │ │ │ │ │ │ ├── RowItemSingleton.qml │ │ │ │ │ │ ├── ScrollViewStyle.qml │ │ │ │ │ │ ├── SliderStyle.qml │ │ │ │ │ │ ├── SpinBoxStyle.qml │ │ │ │ │ │ ├── StatusBarStyle.qml │ │ │ │ │ │ ├── SwitchStyle.qml │ │ │ │ │ │ ├── TabViewStyle.qml │ │ │ │ │ │ ├── TableViewStyle.qml │ │ │ │ │ │ ├── TextAreaStyle.qml │ │ │ │ │ │ ├── TextFieldStyle.qml │ │ │ │ │ │ ├── ToolBarStyle.qml │ │ │ │ │ │ ├── ToolButtonStyle.qml │ │ │ │ │ │ └── qmldir │ │ │ │ │ └── qmldir │ │ │ │ ├── Switch.qml │ │ │ │ ├── Tab.qml │ │ │ │ ├── TabView.qml │ │ │ │ ├── TableView.qml │ │ │ │ ├── TableViewColumn.qml │ │ │ │ ├── TextArea.qml │ │ │ │ ├── TextField.qml │ │ │ │ ├── ToolBar.qml │ │ │ │ ├── ToolButton.qml │ │ │ │ ├── plugins.qmltypes │ │ │ │ └── qmldir │ │ │ ├── CMakeLists.txt │ │ │ ├── base/ │ │ │ │ └── QtQuick.2/ │ │ │ │ ├── plugins.qmltypes │ │ │ │ └── qmldir │ │ │ ├── importTypes/ │ │ │ │ ├── importQtQuick.qml │ │ │ │ ├── imports-QtQuick-qmldir-import/ │ │ │ │ │ ├── QtQml/ │ │ │ │ │ │ ├── plugins.qmltypes │ │ │ │ │ │ └── qmldir │ │ │ │ │ └── QtQuick.2/ │ │ │ │ │ ├── plugins.qmltypes │ │ │ │ │ └── qmldir │ │ │ │ ├── imports-QtQuick-simple/ │ │ │ │ │ └── QtQuick.2/ │ │ │ │ │ ├── plugins.qmltypes │ │ │ │ │ └── qmldir │ │ │ │ └── imports-QtQuick-workaround-QtQml/ │ │ │ │ ├── QtQml/ │ │ │ │ │ ├── plugins.qmltypes │ │ │ │ │ └── qmldir │ │ │ │ └── QtQuick.2/ │ │ │ │ ├── plugins.qmltypes │ │ │ │ └── qmldir │ │ │ ├── importscheck.qbs │ │ │ ├── moduleMapping/ │ │ │ │ ├── MyControls/ │ │ │ │ │ ├── Oblong.qml │ │ │ │ │ └── qmldir │ │ │ │ ├── QtQuick/ │ │ │ │ │ └── Controls/ │ │ │ │ │ ├── Button.qml │ │ │ │ │ └── qmldir │ │ │ │ └── importQtQuick.qml │ │ │ └── tst_importscheck.cpp │ │ ├── connectioneditor/ │ │ │ ├── CMakeLists.txt │ │ │ └── tst_connectioneditor.cpp │ │ ├── persistenttrie/ │ │ │ ├── CMakeLists.txt │ │ │ ├── completion.data │ │ │ ├── intersect.data │ │ │ ├── listAll.data │ │ │ ├── merge.data │ │ │ ├── persistenttrie.qbs │ │ │ ├── tst_testtrie.cpp │ │ │ └── tst_testtrie.h │ │ ├── qml.qbs │ │ ├── qmldesigner/ │ │ │ ├── CMakeLists.txt │ │ │ ├── common/ │ │ │ │ └── statichelpers.cpp │ │ │ ├── coretests/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── setupPath.bat │ │ │ │ ├── testrewriterview.cpp │ │ │ │ ├── testrewriterview.h │ │ │ │ ├── tst_testcore.cpp │ │ │ │ └── tst_testcore.h │ │ │ ├── data/ │ │ │ │ ├── fx/ │ │ │ │ │ ├── MyButton.qml │ │ │ │ │ ├── TabWidget.qml │ │ │ │ │ ├── attributes.qml │ │ │ │ │ ├── bigtest.qml │ │ │ │ │ ├── components.qml │ │ │ │ │ ├── empty.qml │ │ │ │ │ ├── helloworld.qml │ │ │ │ │ ├── image.qml │ │ │ │ │ ├── imports.qml │ │ │ │ │ ├── properties.qml │ │ │ │ │ ├── selectiontest.qml │ │ │ │ │ ├── states.qml │ │ │ │ │ ├── subitems/ │ │ │ │ │ │ └── SubItem.qml │ │ │ │ │ ├── tabs.qml │ │ │ │ │ ├── topitem.qml │ │ │ │ │ ├── usingbutton.qml │ │ │ │ │ └── usingmybutton.qml │ │ │ │ ├── merging/ │ │ │ │ │ ├── ButtonAbsoluteTemplate.qml │ │ │ │ │ ├── ButtonAbsoluteTemplateWithOptions.qml │ │ │ │ │ ├── ButtonInlineExpected.qml │ │ │ │ │ ├── ButtonOutlineExpected.qml │ │ │ │ │ ├── ButtonStyle.ui.Expected.qml │ │ │ │ │ ├── ButtonStyle.ui.qml │ │ │ │ │ ├── ButtonStyleInline.qml │ │ │ │ │ ├── ButtonStyleOutline.qml │ │ │ │ │ ├── ButtonStyleWithOptions.ui.Expected.qml │ │ │ │ │ ├── ButtonTemplate.qml │ │ │ │ │ ├── ComplexExpected.qml │ │ │ │ │ ├── ComplexStyle.qml │ │ │ │ │ ├── ComplexTemplate.qml │ │ │ │ │ ├── EmptyStyleExpected.qml │ │ │ │ │ ├── EmptyStyleStyle.qml │ │ │ │ │ ├── EmptyStyleTemplate.qml │ │ │ │ │ ├── ListViewExpected.qml │ │ │ │ │ ├── ListViewStyle.qml │ │ │ │ │ ├── ListViewTemplate.qml │ │ │ │ │ ├── RootReplacementExpected.qml │ │ │ │ │ ├── RootReplacementStyle.qml │ │ │ │ │ ├── RootReplacementTemplate.qml │ │ │ │ │ ├── SimpleExpected.qml │ │ │ │ │ ├── SimpleStyle.qml │ │ │ │ │ ├── SimpleTemplate.qml │ │ │ │ │ ├── SliderExpected.qml │ │ │ │ │ ├── SliderStyle.qml │ │ │ │ │ ├── SliderTemplate.qml │ │ │ │ │ ├── SwitchExpected.qml │ │ │ │ │ ├── SwitchStyle.qml │ │ │ │ │ ├── SwitchTemplate.qml │ │ │ │ │ ├── test_export_button_expected.ui.qml │ │ │ │ │ ├── test_export_button_stylesheet.ui.qml │ │ │ │ │ └── test_export_button_template.ui.qml │ │ │ │ └── testfiles.qrc │ │ │ ├── testconnectionmanager.cpp │ │ │ ├── testconnectionmanager.h │ │ │ ├── testview.cpp │ │ │ ├── testview.h │ │ │ └── wizard/ │ │ │ ├── CMakeLists.txt │ │ │ ├── presetmodel-test.cpp │ │ │ ├── stylemodel-test.cpp │ │ │ ├── test-main.cpp │ │ │ ├── test-utilities.h │ │ │ ├── userpresets-test.cpp │ │ │ └── wizardfactories-test.cpp │ │ ├── qmleditor/ │ │ │ ├── CMakeLists.txt │ │ │ ├── qmlcodeformatter/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── qmlcodeformatter.qbs │ │ │ │ └── tst_qmlcodeformatter.cpp │ │ │ └── qmleditor.qbs │ │ ├── qmljssimplereader/ │ │ │ ├── CMakeLists.txt │ │ │ ├── qmljssimplereader.qbs │ │ │ └── tst_qmljssimplereader.cpp │ │ ├── qmljsutils/ │ │ │ ├── CMakeLists.txt │ │ │ ├── qmljsutils.qbs │ │ │ └── tst_qmljsutils.cpp │ │ ├── qrcparser/ │ │ │ ├── CMakeLists.txt │ │ │ ├── qrcparser.qbs │ │ │ ├── simple.qrc │ │ │ └── tst_qrcparser.cpp │ │ └── reformatter/ │ │ ├── CMakeLists.txt │ │ ├── annotations.qml │ │ ├── arrowFunction.qml │ │ ├── comments.qml │ │ ├── construct.formatted.js │ │ ├── construct.js │ │ ├── enum.qml │ │ ├── forEachType.qml │ │ ├── inline.qml │ │ ├── jsdirectives.js │ │ ├── jssyntax.js │ │ ├── nullishCoalescing.qml │ │ ├── objectliteral.js │ │ ├── pragmalibrary.js │ │ ├── qmlreadonly.qml │ │ ├── qmlsingleton.qml │ │ ├── qmlsyntax.qml │ │ ├── reformatter.qbs │ │ ├── tst_reformatter.cpp │ │ ├── typeAnnotations.formatted.qml │ │ └── typeAnnotations.qml │ ├── qmldebug/ │ │ ├── CMakeLists.txt │ │ ├── qmldebug.qbs │ │ ├── tests.qrc │ │ ├── tst_qmlevent.cpp │ │ ├── tst_qmlevent.h │ │ ├── tst_qmleventlocation.cpp │ │ ├── tst_qmleventlocation.h │ │ ├── tst_qmleventtype.cpp │ │ ├── tst_qmleventtype.h │ │ ├── tst_qmlprofilertraceclient.cpp │ │ └── tst_qmlprofilertraceclient.h │ ├── qttasktree/ │ │ ├── CMakeLists.txt │ │ ├── qttasktree.qbs │ │ └── tst_qttasktree.cpp │ ├── sdktool/ │ │ ├── CMakeLists.txt │ │ ├── sdktool.qbs │ │ └── tst_sdktool.cpp │ ├── solutions/ │ │ ├── CMakeLists.txt │ │ ├── qprocesstask/ │ │ │ ├── CMakeLists.txt │ │ │ ├── qprocesstask.qbs │ │ │ ├── testsleep/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── main.cpp │ │ │ │ └── testsleep.qbs │ │ │ └── tst_qprocesstask.cpp │ │ └── solutions.qbs │ ├── texteditor/ │ │ ├── CMakeLists.txt │ │ ├── highlighter/ │ │ │ ├── CMakeLists.txt │ │ │ ├── highlighter.qbs │ │ │ └── tst_highlighter.cpp │ │ └── texteditor.qbs │ ├── toolchaincache/ │ │ ├── CMakeLists.txt │ │ ├── toolchaincache.qbs │ │ └── tst_toolchaincache.cpp │ ├── tracing/ │ │ ├── CMakeLists.txt │ │ ├── flamegraph/ │ │ │ ├── CMakeLists.txt │ │ │ ├── flamegraph.qbs │ │ │ └── tst_flamegraph.cpp │ │ ├── flamegraphview/ │ │ │ ├── CMakeLists.txt │ │ │ ├── TestFlameGraphView.qml │ │ │ ├── flamegraphview.qbs │ │ │ ├── testflamegraphmodel.h │ │ │ └── tst_flamegraphview.cpp │ │ ├── timelineabstractrenderer/ │ │ │ ├── CMakeLists.txt │ │ │ ├── timelineabstractrenderer.qbs │ │ │ └── tst_timelineabstractrenderer.cpp │ │ ├── timelineitemsrenderpass/ │ │ │ ├── CMakeLists.txt │ │ │ ├── timelineitemsrenderpass.qbs │ │ │ └── tst_timelineitemsrenderpass.cpp │ │ ├── timelinemodel/ │ │ │ ├── CMakeLists.txt │ │ │ ├── timelinemodel.qbs │ │ │ └── tst_timelinemodel.cpp │ │ ├── timelinemodelaggregator/ │ │ │ ├── CMakeLists.txt │ │ │ ├── timelinemodelaggregator.qbs │ │ │ └── tst_timelinemodelaggregator.cpp │ │ ├── timelinenotesmodel/ │ │ │ ├── CMakeLists.txt │ │ │ ├── timelinenotesmodel.qbs │ │ │ └── tst_timelinenotesmodel.cpp │ │ ├── timelinenotesrenderpass/ │ │ │ ├── CMakeLists.txt │ │ │ ├── timelinenotesrenderpass.qbs │ │ │ └── tst_timelinenotesrenderpass.cpp │ │ ├── timelineoverviewrenderer/ │ │ │ ├── CMakeLists.txt │ │ │ ├── timelineoverviewrenderer.qbs │ │ │ └── tst_timelineoverviewrenderer.cpp │ │ ├── timelinerenderer/ │ │ │ ├── CMakeLists.txt │ │ │ ├── timelinerenderer.qbs │ │ │ └── tst_timelinerenderer.cpp │ │ ├── timelinerenderpass/ │ │ │ ├── CMakeLists.txt │ │ │ ├── timelinerenderpass.qbs │ │ │ └── tst_timelinerenderpass.cpp │ │ ├── timelinerenderstate/ │ │ │ ├── CMakeLists.txt │ │ │ ├── timelinerenderstate.qbs │ │ │ └── tst_timelinerenderstate.cpp │ │ ├── timelineselectionrenderpass/ │ │ │ ├── CMakeLists.txt │ │ │ ├── timelineselectionrenderpass.qbs │ │ │ └── tst_timelineselectionrenderpass.cpp │ │ ├── timelinezoomcontrol/ │ │ │ ├── CMakeLists.txt │ │ │ ├── timelinezoomcontrol.qbs │ │ │ └── tst_timelinezoomcontrol.cpp │ │ ├── tracing.qbs │ │ └── tracingautotest.qbs │ ├── treeviewfind/ │ │ ├── CMakeLists.txt │ │ ├── treeviewfind.qbs │ │ └── tst_treeviewfind.cpp │ ├── updateinfo/ │ │ ├── CMakeLists.txt │ │ ├── tst_updateinfo.cpp │ │ └── updateinfo.qbs │ ├── utils/ │ │ ├── CMakeLists.txt │ │ ├── ansiescapecodehandler/ │ │ │ ├── CMakeLists.txt │ │ │ ├── ansiescapecodehandler.qbs │ │ │ └── tst_ansiescapecodehandler.cpp │ │ ├── async/ │ │ │ ├── CMakeLists.txt │ │ │ ├── async.qbs │ │ │ └── tst_async.cpp │ │ ├── commandline/ │ │ │ ├── CMakeLists.txt │ │ │ ├── commandline.qbs │ │ │ └── tst_commandline.cpp │ │ ├── covariantcallback/ │ │ │ ├── CMakeLists.txt │ │ │ ├── covariantcallback.qbs │ │ │ └── tst_covariantcallback.cpp │ │ ├── expander/ │ │ │ ├── CMakeLists.txt │ │ │ ├── expander.qbs │ │ │ └── tst_expander.cpp │ │ ├── expected/ │ │ │ ├── CMakeLists.txt │ │ │ ├── expected.qbs │ │ │ └── tst_expected.cpp │ │ ├── fileinprojectfinder/ │ │ │ ├── CMakeLists.txt │ │ │ ├── fileinprojectfinder.qbs │ │ │ └── tst_fileinprojectfinder.cpp │ │ ├── filepath/ │ │ │ ├── CMakeLists.txt │ │ │ ├── filepath.qbs │ │ │ └── tst_filepath.cpp │ │ ├── fileutils/ │ │ │ ├── CMakeLists.txt │ │ │ ├── fileutils.qbs │ │ │ └── tst_fileutils.cpp │ │ ├── fsengine/ │ │ │ ├── CMakeLists.txt │ │ │ ├── fsengine.qbs │ │ │ └── tst_fsengine.cpp │ │ ├── fuzzymatcher/ │ │ │ ├── CMakeLists.txt │ │ │ ├── fuzzymatcher.qbs │ │ │ └── tst_fuzzymatcher.cpp │ │ ├── id/ │ │ │ ├── CMakeLists.txt │ │ │ ├── id.qbs │ │ │ └── tst_id.cpp │ │ ├── indexedcontainerproxyconstiterator/ │ │ │ ├── CMakeLists.txt │ │ │ ├── indexedcontainerproxyconstiterator.qbs │ │ │ └── tst_indexedcontainerproxyconstiterator.cpp │ │ ├── mathutils/ │ │ │ ├── CMakeLists.txt │ │ │ ├── mathutils.qbs │ │ │ └── tst_mathutils.cpp │ │ ├── multicursor/ │ │ │ ├── CMakeLists.txt │ │ │ ├── multicursor.qbs │ │ │ └── tst_multicursor.cpp │ │ ├── persistentsettings/ │ │ │ ├── CMakeLists.txt │ │ │ ├── persistentsettings.qbs │ │ │ └── tst_persistentsettings.cpp │ │ ├── process/ │ │ │ ├── CMakeLists.txt │ │ │ ├── process.qbs │ │ │ ├── processtestapp/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── main.cpp │ │ │ │ ├── processtestapp.cpp │ │ │ │ ├── processtestapp.h │ │ │ │ └── processtestapp.qbs │ │ │ └── tst_process.cpp │ │ ├── settings/ │ │ │ ├── CMakeLists.txt │ │ │ ├── settings.qbs │ │ │ └── tst_settings.cpp │ │ ├── stringutils/ │ │ │ ├── CMakeLists.txt │ │ │ ├── stringutils.qbs │ │ │ └── tst_stringutils.cpp │ │ ├── synchronizedvalue/ │ │ │ ├── CMakeLists.txt │ │ │ ├── synchronizedvalue.qbs │ │ │ └── tst_synchronizedvalue.cpp │ │ ├── templateengine/ │ │ │ ├── CMakeLists.txt │ │ │ ├── templateengine.qbs │ │ │ └── tst_templateengine.cpp │ │ ├── text/ │ │ │ ├── CMakeLists.txt │ │ │ ├── text.qbs │ │ │ └── tst_text.cpp │ │ ├── treemodel/ │ │ │ ├── CMakeLists.txt │ │ │ ├── treemodel.qbs │ │ │ └── tst_treemodel.cpp │ │ ├── unarchiver/ │ │ │ ├── CMakeLists.txt │ │ │ ├── tst_unarchiver.cpp │ │ │ └── unarchiver.qbs │ │ ├── unixdevicefileaccess/ │ │ │ ├── CMakeLists.txt │ │ │ ├── tst_unixdevicefileaccess.cpp │ │ │ └── unixdevicefileaccess.qbs │ │ └── utils.qbs │ └── valgrind/ │ ├── CMakeLists.txt │ ├── README │ ├── callgrind/ │ │ ├── CMakeLists.txt │ │ ├── callgrind.qbs │ │ ├── callgrindparsertests.cpp │ │ ├── callgrindparsertests.h │ │ ├── callgrindparsertests.qbs │ │ ├── data/ │ │ │ ├── calleeFunctions.out │ │ │ ├── callgrind.out.sample │ │ │ ├── callgrind.out.sample.annotated │ │ │ ├── callgrind.out.sample.expected │ │ │ ├── cycle.out │ │ │ ├── inlinedFunctions.out │ │ │ ├── multiCost.out │ │ │ ├── multiCostAndPos.out │ │ │ ├── multiPos.out │ │ │ ├── recursion.out │ │ │ ├── recursiveCycle.out │ │ │ └── simpleFunction.out │ │ ├── modeltest.cpp │ │ └── modeltest.h │ ├── memcheck/ │ │ ├── CMakeLists.txt │ │ ├── data/ │ │ │ └── memcheck-output-sample1.xml │ │ ├── memcheck.qbs │ │ ├── modeldemo.cpp │ │ ├── modeldemo.h │ │ ├── modeldemo.qbs │ │ └── testapps/ │ │ ├── CMakeLists.txt │ │ ├── free1/ │ │ │ ├── CMakeLists.txt │ │ │ ├── free1.qbs │ │ │ └── main.cpp │ │ ├── free2/ │ │ │ ├── CMakeLists.txt │ │ │ ├── free2.qbs │ │ │ └── main.cpp │ │ ├── invalidjump/ │ │ │ ├── CMakeLists.txt │ │ │ ├── invalidjump.qbs │ │ │ └── main.cpp │ │ ├── leak1/ │ │ │ ├── CMakeLists.txt │ │ │ ├── leak1.qbs │ │ │ └── main.cpp │ │ ├── leak2/ │ │ │ ├── CMakeLists.txt │ │ │ ├── leak2.qbs │ │ │ └── main.cpp │ │ ├── leak3/ │ │ │ ├── CMakeLists.txt │ │ │ ├── leak3.qbs │ │ │ └── main.cpp │ │ ├── leak4/ │ │ │ ├── CMakeLists.txt │ │ │ ├── leak4.qbs │ │ │ └── main.cpp │ │ ├── overlap/ │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ └── overlap.qbs │ │ ├── syscall/ │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ └── syscall.qbs │ │ ├── testapp.cmake │ │ ├── testapp.qbs │ │ ├── testapps.qbs │ │ ├── uninit1/ │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ └── uninit1.qbs │ │ ├── uninit2/ │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ └── uninit2.qbs │ │ └── uninit3/ │ │ ├── CMakeLists.txt │ │ ├── main.cpp │ │ └── uninit3.qbs │ ├── valgrind.cmake │ ├── valgrind.qbs │ └── valgrindautotest.qbs ├── benchmarks/ │ ├── json/ │ │ ├── json.pro │ │ ├── numbers.json │ │ ├── test.json │ │ └── tst_bench_json.cpp │ └── signals/ │ ├── signals.pro │ └── tst_bench_signals.cpp ├── cpplocators/ │ └── testdata_basic/ │ ├── file1.cpp │ └── file1.mm ├── cppmodelmanager/ │ ├── testdata/ │ │ ├── frameworks/ │ │ │ └── My.framework/ │ │ │ └── Versions/ │ │ │ └── A/ │ │ │ ├── Frameworks/ │ │ │ │ └── Nested.framework/ │ │ │ │ └── Versions/ │ │ │ │ ├── A/ │ │ │ │ │ └── Headers/ │ │ │ │ │ ├── IncorrectVersion.h │ │ │ │ │ └── Nested.h │ │ │ │ └── B/ │ │ │ │ └── Headers/ │ │ │ │ ├── CorrectVersion.h │ │ │ │ └── Nested.h │ │ │ └── Headers/ │ │ │ └── MyHeader.h │ │ ├── include/ │ │ │ └── header.h │ │ └── sources/ │ │ ├── test_modelmanager_framework_headers.cpp │ │ ├── test_modelmanager_refresh.cpp │ │ └── test_modelmanager_refresh.h │ ├── testdata_defines/ │ │ ├── header.h │ │ ├── main1.cpp │ │ ├── main2.cpp │ │ ├── pch1.h │ │ └── pch2.h │ ├── testdata_guiproject1/ │ │ ├── main.cpp │ │ ├── mainwindow.cpp │ │ ├── mainwindow.h │ │ ├── mainwindow.ui │ │ └── testdata_guiproject1.pro │ ├── testdata_optionalindexing/ │ │ ├── lib1.cpp │ │ ├── lib1.pro │ │ ├── lib2.cpp │ │ └── lib2.pro │ ├── testdata_project1/ │ │ ├── baz.h │ │ ├── baz2.h │ │ ├── baz3.h │ │ ├── foo.cpp │ │ ├── foo.h │ │ └── main.cpp │ ├── testdata_project2/ │ │ ├── bar.cpp │ │ ├── bar.h │ │ ├── foobar2000.h │ │ ├── foobar4000.h │ │ └── main.cpp │ ├── testdata_refresh/ │ │ ├── defines.h │ │ ├── header.h │ │ └── source.cpp │ ├── testdata_refresh2/ │ │ ├── source.cpp │ │ └── source2.cpp │ └── testdata_renameheaders/ │ ├── header.h │ ├── main.cpp │ ├── subdir1/ │ │ ├── file1.cpp │ │ └── header1.h │ ├── subdir2/ │ │ ├── file2.cpp │ │ └── header2.h │ └── testdata_renameheaders.pro ├── cppsymbolsearcher/ │ └── testdata_basic/ │ └── file1.cpp ├── designer/ │ ├── gotoslot_insertIntoCorrectClass_non-pointer/ │ │ ├── form.cpp │ │ └── form.h │ ├── gotoslot_insertIntoCorrectClass_pointer/ │ │ ├── form.cpp │ │ └── form.h │ ├── gotoslot_insertIntoCorrectClass_pointer_ns_using/ │ │ ├── form.cpp │ │ ├── form.h │ │ └── form.ui │ └── gotoslot_withoutProject/ │ ├── form.cpp │ ├── form.h │ └── form.ui ├── genericprojectmanager/ │ ├── testdata_mixedproject1/ │ │ ├── Glue.h │ │ ├── Glue.mm │ │ ├── MyViewController.h │ │ ├── MyViewController.m │ │ ├── header.h │ │ ├── main.cpp │ │ ├── mixedproject1.config │ │ ├── mixedproject1.creator │ │ ├── mixedproject1.files │ │ └── mixedproject1.includes │ ├── testdata_mixedproject2/ │ │ ├── header.hpp │ │ ├── impl.c │ │ ├── main.cpp │ │ ├── mixedproject2.config │ │ ├── mixedproject2.creator │ │ ├── mixedproject2.files │ │ └── mixedproject2.includes │ └── testdata_simpleproject/ │ ├── main.cpp │ ├── simpleproject.config │ ├── simpleproject.creator │ ├── simpleproject.files │ └── simpleproject.includes ├── licenseheader/ │ └── test-git-config-variables.h ├── locators/ │ └── testdata_basic/ │ ├── file.cpp │ ├── main.cpp │ └── subdir/ │ └── main.cpp ├── manual/ │ ├── CMakeLists.txt │ ├── android/ │ │ └── setup/ │ │ └── setup_android.cmake │ ├── autotoolsprojectmanager/ │ │ ├── autogen.sh │ │ ├── configure.ac │ │ ├── foo.c │ │ └── main.c │ ├── boot2qt/ │ │ └── README.md │ ├── clang-format-for-qtc/ │ │ ├── clang-format-for-qtc.pro │ │ └── test.cpp │ ├── cmakeprojectmanager/ │ │ ├── cmakepresets/ │ │ │ ├── CMakeLists.txt │ │ │ ├── CMakePresets.json │ │ │ ├── main.cpp │ │ │ ├── mainwindow.cpp │ │ │ ├── mainwindow.h │ │ │ ├── mainwindow.ui │ │ │ ├── mingw.json │ │ │ ├── msvc-toolchain.cmake │ │ │ └── msvc.json │ │ ├── completion/ │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── cmake/ │ │ │ │ ├── Findstdvector.cmake │ │ │ │ └── JustACacheVariable.cmake │ │ │ ├── main.cpp │ │ │ ├── mainwindow.cpp │ │ │ ├── mainwindow.h │ │ │ └── mainwindow.ui │ │ ├── conan/ │ │ │ ├── CMakeLists.txt │ │ │ ├── conanfile.txt │ │ │ └── main.cpp │ │ ├── hello-widgets/ │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── main.cpp │ │ │ ├── mainwindow.cpp │ │ │ ├── mainwindow.h │ │ │ ├── mainwindow.ui │ │ │ ├── my_add_executable.cmake │ │ │ ├── myclass.cpp │ │ │ └── myclass.h │ │ └── vcpkg/ │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── main.cpp │ │ └── vcpkg.json │ ├── cmdbridge/ │ │ ├── CMakeLists.txt │ │ ├── cmdbridge.qbs │ │ └── tst_cmdbridge.cpp │ ├── coco/ │ │ └── README.md │ ├── cplusplus-tools/ │ │ ├── cplusplus-tools.pro │ │ ├── detail/ │ │ │ ├── header.h │ │ │ └── source.cpp │ │ ├── dummy.cpp │ │ ├── dummy.h │ │ └── main.cpp │ ├── cppquickfix/ │ │ ├── completeswitchcasestatement.cpp │ │ └── convertnumericliteral.cpp │ ├── debugger/ │ │ ├── CMakeLists.txt │ │ ├── boost/ │ │ │ ├── boost.pro │ │ │ └── main.cpp │ │ ├── cli-io/ │ │ │ ├── cli-io.pro │ │ │ └── main.cpp │ │ ├── console/ │ │ │ ├── console.pro │ │ │ └── main.cpp │ │ ├── debugger.pro │ │ ├── gui/ │ │ │ ├── CMakeLists.txt │ │ │ ├── entitlements.plist │ │ │ ├── gui.pro │ │ │ ├── gui.qbs │ │ │ ├── mainwindow.cpp │ │ │ ├── mainwindow.h │ │ │ ├── mainwindow.ui │ │ │ └── tst_gui.cpp │ │ ├── multi/ │ │ │ ├── main.cpp │ │ │ └── multi.pro │ │ ├── python/ │ │ │ ├── README.md │ │ │ ├── math.py │ │ │ ├── python.pro │ │ │ └── python.pyqtc │ │ ├── qmlinspector-stackoverflow/ │ │ │ ├── CMakeLists.txt │ │ │ ├── Main.qml │ │ │ └── main.cpp │ │ ├── qquick1/ │ │ │ ├── app.pro │ │ │ ├── main.cpp │ │ │ ├── myplugin/ │ │ │ │ ├── myplugin.cpp │ │ │ │ ├── myplugin.h │ │ │ │ ├── myplugin.pro │ │ │ │ ├── mytype.cpp │ │ │ │ ├── mytype.h │ │ │ │ └── qmldir │ │ │ ├── qml/ │ │ │ │ └── main.qml │ │ │ └── qquick1.pro │ │ ├── qquick2/ │ │ │ ├── app.pro │ │ │ ├── main.cpp │ │ │ ├── myplugin/ │ │ │ │ ├── myplugin.cpp │ │ │ │ ├── myplugin.h │ │ │ │ ├── myplugin.pro │ │ │ │ ├── mytype.cpp │ │ │ │ ├── mytype.h │ │ │ │ └── qmldir │ │ │ ├── qml/ │ │ │ │ └── main.qml │ │ │ └── qquick2.pro │ │ ├── script/ │ │ │ ├── math.js │ │ │ └── script.pro │ │ ├── simple/ │ │ │ ├── CMakeLists.txt │ │ │ ├── README │ │ │ ├── deep/ │ │ │ │ └── deep/ │ │ │ │ └── simple_test_app.h │ │ │ ├── simple.pro │ │ │ ├── simple.qbs │ │ │ ├── simple_test_app.cpp │ │ │ ├── simple_test_app.pro │ │ │ ├── simple_test_app.qbs │ │ │ ├── simple_test_plugin.cpp │ │ │ ├── simple_test_plugin.pro │ │ │ └── simple_test_plugin.qbs │ │ ├── spacy path/ │ │ │ ├── app with space.cpp │ │ │ ├── plugin with space.cpp │ │ │ ├── spacy app/ │ │ │ │ └── spacy app.pro │ │ │ ├── spacy path.pro │ │ │ └── spacy plugin/ │ │ │ └── spacy plugin.pro │ │ └── spacy-file/ │ │ ├── app/ │ │ │ └── app.pro │ │ ├── app with space.cpp │ │ ├── plugin/ │ │ │ └── plugin.pro │ │ ├── plugin with space.cpp │ │ └── spacy-file.pro │ ├── devcontainer/ │ │ ├── CMakeLists.txt │ │ ├── devcontainer.qbs │ │ └── tst_devcontainer.cpp │ ├── distribution/ │ │ └── elflint │ ├── docker/ │ │ ├── DockerFile-with-creator │ │ ├── Dockerfile │ │ ├── Dockerfile-base │ │ ├── Dockerfile-gcc-10 │ │ ├── Dockerfile-llvm │ │ ├── Dockerfile-llvm-conan │ │ ├── Dockerfile-llvm-vcpkg │ │ ├── Dockerfile-pyside6-ubuntu │ │ ├── Dockerfile-qt-5-ubuntu-16.04-build │ │ ├── Dockerfile-qt-5-ubuntu-20.04-build │ │ ├── Dockerfile-qt-5-ubuntu-20.04-clang-lldb-build │ │ ├── Dockerfile-qt-5-ubuntu-20.04-run │ │ ├── Dockerfile-qt-6-fedora-37-build │ │ ├── Dockerfile-qt-6-ubuntu-24.04-build │ │ ├── Dockerfile-qt-6-ubuntu-25.10-build │ │ ├── README.md │ │ ├── android/ │ │ │ ├── Dockerfile-qt-6.3.2-android-ubuntu-22.04 │ │ │ ├── README.md │ │ │ ├── build.sh │ │ │ └── target_qt.conf │ │ └── boot2qt/ │ │ ├── Dockerfile.in │ │ ├── README.md │ │ └── build.sh │ ├── dockwidgets/ │ │ ├── dockwidgets.pro │ │ ├── main.cpp │ │ ├── mainwindow.cpp │ │ └── mainwindow.h │ ├── fakevim/ │ │ ├── CMakeLists.txt │ │ ├── README │ │ ├── fakevim.qbs │ │ ├── main.cpp │ │ └── runremotely.sh │ ├── features/ │ │ ├── features.pro │ │ └── tst_features.cpp │ ├── filesystemview/ │ │ └── symbolic_links/ │ │ ├── 11111 │ │ ├── 22222 │ │ ├── README │ │ ├── symbolic.pro │ │ ├── symbolic_link_one.cpp │ │ └── symbolic_link_two.cpp │ ├── genericproject/ │ │ ├── genericproject.cflags │ │ ├── genericproject.config │ │ ├── genericproject.creator │ │ ├── genericproject.cxxflags │ │ ├── genericproject.files │ │ ├── genericproject.includes │ │ └── main.cpp │ ├── gnprojectmanager/ │ │ ├── .gn │ │ ├── BUILD.gn │ │ ├── build/ │ │ │ ├── BUILD.gn │ │ │ ├── BUILDCONFIG.gn │ │ │ ├── run_app.py │ │ │ └── toolchain/ │ │ │ └── BUILD.gn │ │ └── src/ │ │ ├── app/ │ │ │ ├── BUILD.gn │ │ │ └── main.cc │ │ ├── shared_lib/ │ │ │ ├── BUILD.gn │ │ │ ├── hello_shared.cc │ │ │ └── hello_shared.h │ │ ├── source_set/ │ │ │ ├── BUILD.gn │ │ │ ├── hello_set.cc │ │ │ └── hello_set.h │ │ └── static_lib/ │ │ ├── BUILD.gn │ │ ├── hello_static.cc │ │ └── hello_static.h │ ├── layoutbuilder/ │ │ ├── comparison/ │ │ │ ├── CMakeLists.txt │ │ │ ├── layoutbuilder/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── main.cpp │ │ │ │ ├── mainwindow.cpp │ │ │ │ └── mainwindow.h │ │ │ ├── quick/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Main.qml │ │ │ │ └── main.cpp │ │ │ └── widgets/ │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ ├── mainwindow.cpp │ │ │ └── mainwindow.h │ │ ├── demo/ │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ ├── mainwindow.cpp │ │ │ └── mainwindow.h │ │ ├── experimental/ │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ └── v2/ │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── lb.cpp │ │ ├── lb.h │ │ └── main.cpp │ ├── manual.qbs │ ├── mcp/ │ │ ├── CMakeLists.txt │ │ ├── tst.rest │ │ └── tst_mcpserver.cpp │ ├── meson/ │ │ └── mesonsampleproject/ │ │ ├── main.cpp │ │ ├── meson.build │ │ ├── mesonsampleproject.cpp │ │ ├── mesonsampleproject.h │ │ ├── mesonsampleproject.ui │ │ └── mesonsampleproject_fr_FR.ts │ ├── otherfiles/ │ │ └── dummy_taskfile.tasks │ ├── pluginview/ │ │ ├── CMakeLists.txt │ │ ├── plugindialog.cpp │ │ ├── plugindialog.h │ │ ├── plugins/ │ │ │ ├── plugin1/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── plugin1.cpp │ │ │ │ ├── plugin1.h │ │ │ │ ├── plugin1.json │ │ │ │ └── plugin1.qbs │ │ │ ├── plugin2/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── plugin2.cpp │ │ │ │ ├── plugin2.h │ │ │ │ ├── plugin2.json │ │ │ │ └── plugin2.qbs │ │ │ └── plugin3/ │ │ │ ├── CMakeLists.txt │ │ │ ├── plugin3.cpp │ │ │ ├── plugin3.h │ │ │ ├── plugin3.json │ │ │ └── plugin3.qbs │ │ ├── pluginview.pro │ │ └── pluginview.qbs │ ├── proparser/ │ │ ├── CMakeLists.txt │ │ ├── main.cpp │ │ ├── testreader.pro │ │ └── testreader.qbs │ ├── python/ │ │ └── pyproject/ │ │ ├── imports/ │ │ │ └── Charts/ │ │ │ ├── chartbackground.qml │ │ │ └── qmldir │ │ ├── main.py │ │ ├── main.qml │ │ └── pyproject.pyproject │ ├── qbs/ │ │ └── imports/ │ │ ├── CppApplication.qbs │ │ └── QtApplication.qbs │ ├── qml/ │ │ ├── qmlls/ │ │ │ └── projectWithQML_IMPORT_PATH/ │ │ │ ├── CMakeLists.txt │ │ │ ├── Main.qml │ │ │ ├── main.cpp │ │ │ └── somesubfolder/ │ │ │ ├── CMakeLists.txt │ │ │ └── subsub/ │ │ │ ├── CMakeLists.txt │ │ │ └── MyModule/ │ │ │ ├── CMakeLists.txt │ │ │ └── Main.qml │ │ ├── testfiles_quick2/ │ │ │ ├── components/ │ │ │ │ └── MyButton.qml │ │ │ ├── empty.qml │ │ │ ├── flipable.qml │ │ │ ├── helloworld.qml │ │ │ ├── helloworld_inverted.qml │ │ │ ├── images.qml │ │ │ ├── listmodel.qml │ │ │ ├── listview.qml │ │ │ ├── positioners.qml │ │ │ ├── states.qml │ │ │ ├── subcomponent.qml │ │ │ ├── testfiles_quick2.qmlproject │ │ │ ├── usingbutton.qml │ │ │ └── views.qml │ │ └── testprojects/ │ │ ├── cppmockup/ │ │ │ ├── MainForm.ui.qml │ │ │ ├── MyComponent.qml │ │ │ ├── cppmockup.pro │ │ │ ├── main.cpp │ │ │ ├── main.qml │ │ │ ├── mockups/ │ │ │ │ └── MyPlugin/ │ │ │ │ ├── MyObject.qml │ │ │ │ └── qmldir │ │ │ ├── mybackendobject.cpp │ │ │ ├── mybackendobject.h │ │ │ └── qml.qrc │ │ ├── directoryimport/ │ │ │ ├── directory/ │ │ │ │ └── MyComponent.qml │ │ │ ├── directoryimport.qml │ │ │ └── directoryimport.qmlproject │ │ ├── dummycontext/ │ │ │ ├── dummydata/ │ │ │ │ └── context/ │ │ │ │ └── main.qml │ │ │ ├── dummydata.qmlproject │ │ │ └── main.qml │ │ ├── dummydata/ │ │ │ ├── MyListView.qml │ │ │ ├── dummydata/ │ │ │ │ ├── contactModel.qml │ │ │ │ └── context/ │ │ │ │ └── main.qml │ │ │ ├── dummydata.qmlproject │ │ │ └── main.qml │ │ ├── gridlayout/ │ │ │ ├── Testcases01.ui.qml │ │ │ ├── Testcases02.ui.qml │ │ │ ├── gridlayout.qml │ │ │ └── gridlayout.qmlproject │ │ ├── metainfohints/ │ │ │ ├── MainForm.ui.qml │ │ │ ├── imports/ │ │ │ │ └── test/ │ │ │ │ ├── ForceClip.qml │ │ │ │ ├── OnlyFormEditor.qml │ │ │ │ ├── OnlyNavigator.qml │ │ │ │ ├── TestComponent.qml │ │ │ │ ├── TestLayout.qml │ │ │ │ ├── designer/ │ │ │ │ │ └── MyPlugin.metainfo │ │ │ │ └── qmldir │ │ │ ├── metainfohints.qml │ │ │ └── metainfohints.qmlproject │ │ ├── modulemapping/ │ │ │ ├── CMakeLists.txt │ │ │ ├── MyControls/ │ │ │ │ ├── Button.qml │ │ │ │ └── qmldir │ │ │ ├── README.txt │ │ │ ├── test.cc │ │ │ └── test.qml │ │ ├── pixelmetrics/ │ │ │ ├── PixelMeter.qml │ │ │ ├── pixelmetrics.qml │ │ │ └── pixelmetrics.qmlproject │ │ └── plugins/ │ │ ├── imports/ │ │ │ ├── MyPlugin/ │ │ │ │ ├── MyComponent.qml │ │ │ │ ├── MyComponent2.qml │ │ │ │ ├── designer/ │ │ │ │ │ ├── MyComponentSpecifics.qml │ │ │ │ │ └── MyPlugin.metainfo │ │ │ │ └── qmldir │ │ │ └── MyPlugin2.1/ │ │ │ ├── MyComponent.qml │ │ │ ├── MyComponent2.qml │ │ │ ├── designer/ │ │ │ │ ├── MyComponentSpecifics.qml │ │ │ │ └── MyPlugin.metainfo │ │ │ └── qmldir │ │ ├── plugins.qml │ │ ├── plugins.qmlproject │ │ └── plugins2.qml │ ├── qnx/ │ │ └── README.md │ ├── qobject/ │ │ ├── CMakeLists.txt │ │ └── tst_manual_qobject.cpp │ ├── qt4projectmanager/ │ │ ├── projecttree/ │ │ │ ├── foo.txt │ │ │ ├── headers/ │ │ │ │ ├── bar.h │ │ │ │ └── foo.h │ │ │ ├── main.cpp │ │ │ ├── main.h │ │ │ ├── prifile/ │ │ │ │ ├── headers/ │ │ │ │ │ └── prifileinc.h │ │ │ │ ├── prifile.pri │ │ │ │ └── sources/ │ │ │ │ └── prifileinc.cpp │ │ │ ├── projecttree.pro │ │ │ ├── resource.qrc │ │ │ ├── sources/ │ │ │ │ ├── bar.cpp │ │ │ │ └── foo.cpp │ │ │ ├── sub2/ │ │ │ │ └── a/ │ │ │ │ ├── bar.cpp │ │ │ │ ├── bar.h │ │ │ │ └── sub/ │ │ │ │ ├── bar2.cpp │ │ │ │ └── bar2.h │ │ │ ├── subpath/ │ │ │ │ ├── a/ │ │ │ │ │ ├── foo.cpp │ │ │ │ │ └── foo.h │ │ │ │ └── b/ │ │ │ │ ├── foo.cpp │ │ │ │ └── foo.h │ │ │ ├── uniquesub/ │ │ │ │ └── path/ │ │ │ │ ├── bar.cpp │ │ │ │ └── bar.h │ │ │ ├── widget.cpp │ │ │ ├── widget.h │ │ │ └── widget.ui │ │ ├── projecttree_data1/ │ │ │ ├── a/ │ │ │ │ ├── foo.cpp │ │ │ │ └── foo.h │ │ │ └── b/ │ │ │ ├── foo.cpp │ │ │ └── foo.h │ │ ├── projecttree_data2/ │ │ │ └── a/ │ │ │ ├── bar.cpp │ │ │ ├── bar.h │ │ │ └── sub/ │ │ │ ├── bar2.cpp │ │ │ └── bar2.h │ │ └── projecttree_data3/ │ │ └── path/ │ │ ├── bar.cpp │ │ └── bar.h │ ├── remotelinux/ │ │ ├── remotelinux-testplan.md │ │ └── remotelinux.qbs │ ├── scripts/ │ │ ├── CMakeLists.txt │ │ ├── lua/ │ │ │ └── scripts/ │ │ │ ├── test-clicked.lua │ │ │ └── test-scrollbar.lua │ │ └── scripts.qbs │ ├── search/ │ │ ├── latin1.txt │ │ └── search.pro │ ├── shootout/ │ │ ├── CMakeLists.txt │ │ ├── README │ │ ├── shootout.pro │ │ ├── shootout.qbs │ │ └── tst_codesize.cpp │ ├── spinner/ │ │ ├── CMakeLists.txt │ │ ├── main.cpp │ │ └── spinner.qbs │ ├── subdirfilecontainer/ │ │ ├── CMakeLists.txt │ │ ├── subdirfilecontainer.qbs │ │ └── tst_subdirfilecontainer.cpp │ ├── terminal/ │ │ ├── CMakeLists.txt │ │ ├── terminal.qbs │ │ └── tst_terminal.cpp │ └── widgets/ │ ├── CMakeLists.txt │ ├── aspects/ │ │ ├── CMakeLists.txt │ │ ├── aspects.qbs │ │ └── tst_manual_widgets_aspects.cpp │ ├── common/ │ │ ├── common.qbs │ │ ├── themes.qrc │ │ ├── themeselector.cpp │ │ └── themeselector.h │ ├── components/ │ │ ├── CMakeLists.txt │ │ ├── components.qbs │ │ └── tst_manual_widgets_components.cpp │ ├── crumblepath/ │ │ ├── CMakeLists.txt │ │ ├── crumblepath.qbs │ │ └── tst_manual_widgets_crumblepath.cpp │ ├── infolabel/ │ │ ├── CMakeLists.txt │ │ ├── infolabel.qbs │ │ └── tst_manual_widgets_infolabel.cpp │ ├── layoutbuilder/ │ │ ├── CMakeLists.txt │ │ ├── layoutbuilder.qbs │ │ └── tst_manual_widgets_layoutbuilder.cpp │ ├── manhattanstyle/ │ │ ├── CMakeLists.txt │ │ ├── manhattanstyle.qbs │ │ └── tst_manual_widgets_manhattanstyle.cpp │ ├── styledbar/ │ │ ├── CMakeLists.txt │ │ ├── styledbar.qbs │ │ └── tst_manual_widgets_styledbar.cpp │ ├── tracing/ │ │ ├── CMakeLists.txt │ │ ├── tracing.qbs │ │ └── tst_manual_widgets_tracing.cpp │ ├── treeviewscroll/ │ │ ├── CMakeLists.txt │ │ └── main.cpp │ ├── uifonts/ │ │ ├── CMakeLists.txt │ │ ├── tst_manual_widgets_uifonts.cpp │ │ └── uifonts.qbs │ └── widgets.qbs ├── qt4projectmanager/ │ └── test1/ │ ├── a.cpp │ ├── a.h │ └── test1.pro ├── system/ │ ├── 0001-Fix-build-on-macOS.patch │ ├── README │ ├── patch.txt │ ├── settings/ │ │ ├── mac/ │ │ │ └── QtProject/ │ │ │ ├── QtCreator.ini │ │ │ └── qtcreator/ │ │ │ ├── debuggers.xml │ │ │ ├── devices.xml │ │ │ ├── profiles.xml │ │ │ ├── qtversion.xml │ │ │ └── toolchains.xml │ │ ├── unix/ │ │ │ └── QtProject/ │ │ │ ├── QtCreator.ini │ │ │ └── qtcreator/ │ │ │ ├── debuggers.xml │ │ │ ├── devices.xml │ │ │ ├── profiles.xml │ │ │ ├── qtversion.xml │ │ │ └── toolchains.xml │ │ ├── windows/ │ │ │ └── QtProject/ │ │ │ ├── QtCreator.ini │ │ │ └── qtcreator/ │ │ │ ├── debuggers.xml │ │ │ ├── devices.xml │ │ │ ├── profiles.xml │ │ │ ├── qtversion.xml │ │ │ └── toolchains.xml │ │ └── windows2022/ │ │ └── QtProject/ │ │ ├── QtCreator.ini │ │ └── qtcreator/ │ │ ├── debuggers.xml │ │ ├── devices.xml │ │ ├── profiles.xml │ │ ├── qtversion.xml │ │ └── toolchains.xml │ ├── shared/ │ │ ├── build_utils.py │ │ ├── clang.py │ │ ├── classes.py │ │ ├── debugger.py │ │ ├── editor_utils.py │ │ ├── fs_utils.py │ │ ├── project.py │ │ ├── project_explorer.py │ │ ├── qtcreator.py │ │ ├── suites_qtta.py │ │ ├── utils.py │ │ ├── welcome.py │ │ └── workarounds.py │ ├── suite_APTW/ │ │ ├── envvars │ │ ├── suite.conf │ │ ├── tst_APTW01/ │ │ │ └── test.py │ │ ├── tst_APTW02/ │ │ │ └── test.py │ │ └── tst_APTW03/ │ │ └── test.py │ ├── suite_CCOM/ │ │ ├── envvars │ │ ├── suite.conf │ │ ├── tst_CCOM01/ │ │ │ └── test.py │ │ └── tst_CCOM02/ │ │ └── test.py │ ├── suite_CSUP/ │ │ ├── envvars │ │ ├── suite.conf │ │ ├── tst_CSUP01/ │ │ │ └── test.py │ │ ├── tst_CSUP02/ │ │ │ └── test.py │ │ ├── tst_CSUP03/ │ │ │ └── test.py │ │ ├── tst_CSUP04/ │ │ │ └── test.py │ │ ├── tst_CSUP05/ │ │ │ └── test.py │ │ └── tst_CSUP06/ │ │ └── test.py │ ├── suite_HELP/ │ │ ├── envvars │ │ ├── suite.conf │ │ ├── tst_HELP02/ │ │ │ └── test.py │ │ ├── tst_HELP04/ │ │ │ └── test.py │ │ ├── tst_HELP05/ │ │ │ └── test.py │ │ └── tst_HELP06/ │ │ └── test.py │ ├── suite_QMLS/ │ │ ├── envvars │ │ ├── shared/ │ │ │ └── qmls.py │ │ ├── suite.conf │ │ ├── tst_QMLS01/ │ │ │ └── test.py │ │ ├── tst_QMLS02/ │ │ │ └── test.py │ │ ├── tst_QMLS03/ │ │ │ └── test.py │ │ ├── tst_QMLS04/ │ │ │ └── test.py │ │ ├── tst_QMLS05/ │ │ │ └── test.py │ │ ├── tst_QMLS06/ │ │ │ └── test.py │ │ ├── tst_QMLS07/ │ │ │ └── test.py │ │ └── tst_QMLS08/ │ │ └── test.py │ ├── suite_SCOM/ │ │ ├── envvars │ │ ├── suite.conf │ │ ├── tst_SCOM01/ │ │ │ └── test.py │ │ ├── tst_SCOM02/ │ │ │ └── test.py │ │ ├── tst_SCOM04/ │ │ │ └── test.py │ │ └── tst_SCOM05/ │ │ └── test.py │ ├── suite_WELP/ │ │ ├── envvars │ │ ├── suite.conf │ │ ├── tst_WELP01/ │ │ │ └── test.py │ │ ├── tst_WELP02/ │ │ │ └── test.py │ │ ├── tst_WELP03/ │ │ │ └── test.py │ │ └── tst_WELP04/ │ │ └── test.py │ ├── suite_debugger/ │ │ ├── envvars │ │ ├── shared/ │ │ │ └── testdata/ │ │ │ └── simpleQuickUI2/ │ │ │ ├── simpleQuickUI2.qml │ │ │ └── simpleQuickUI2.qmlproject │ │ ├── suite.conf │ │ ├── tst_build_new_project/ │ │ │ └── test.py │ │ ├── tst_cli_output_console/ │ │ │ └── test.py │ │ ├── tst_debug_empty_main/ │ │ │ └── test.py │ │ ├── tst_qml_js_console/ │ │ │ └── test.py │ │ ├── tst_qml_locals/ │ │ │ ├── Tree.py │ │ │ └── test.py │ │ ├── tst_simple_analyze/ │ │ │ ├── test.py │ │ │ └── testdata/ │ │ │ ├── events_qt6.7.3.tsv │ │ │ └── events_qt6.9.2.tsv │ │ └── tst_simple_debug/ │ │ └── test.py │ ├── suite_editors/ │ │ ├── envvars │ │ ├── shared/ │ │ │ ├── simplePlainCPP/ │ │ │ │ ├── main.cpp │ │ │ │ ├── testfile.cpp │ │ │ │ ├── testfile.h │ │ │ │ └── testfiles.pro │ │ │ └── testdata/ │ │ │ ├── files.tsv │ │ │ └── main.c++ │ │ ├── suite.conf │ │ ├── tst_basic_cpp_support/ │ │ │ └── test.py │ │ ├── tst_clean_whitespaces/ │ │ │ └── test.py │ │ ├── tst_delete_externally/ │ │ │ └── test.py │ │ ├── tst_edit_externally/ │ │ │ └── test.py │ │ ├── tst_generic_highlighter/ │ │ │ └── test.py │ │ ├── tst_memberoperator/ │ │ │ ├── test.py │ │ │ └── testdata/ │ │ │ └── usages.tsv │ │ ├── tst_modify_readonly/ │ │ │ └── test.py │ │ ├── tst_qml_editor/ │ │ │ └── test.py │ │ ├── tst_qml_indent/ │ │ │ └── test.py │ │ ├── tst_rename_macros/ │ │ │ └── test.py │ │ ├── tst_revert_changes/ │ │ │ └── test.py │ │ └── tst_select_all/ │ │ └── test.py │ ├── suite_general/ │ │ ├── envvars │ │ ├── suite.conf │ │ ├── tst_build_speedcrunch/ │ │ │ └── test.py │ │ ├── tst_cmake_speedcrunch/ │ │ │ ├── test.py │ │ │ └── testdata/ │ │ │ └── projecttree_speedcrunch.tsv │ │ ├── tst_create_proj_wizard/ │ │ │ └── test.py │ │ ├── tst_custom_wizard_check/ │ │ │ └── test.py │ │ ├── tst_default_settings/ │ │ │ ├── test.py │ │ │ └── testdata/ │ │ │ └── win_compiler_paths.tsv │ │ ├── tst_installed_languages/ │ │ │ ├── test.py │ │ │ └── testdata/ │ │ │ └── languages.tsv │ │ ├── tst_new_class/ │ │ │ └── test.py │ │ ├── tst_opencreator_qbs/ │ │ │ ├── test.py │ │ │ └── testdata/ │ │ │ └── projecttree_creator.tsv │ │ ├── tst_openqt_creator/ │ │ │ ├── test.py │ │ │ └── testdata/ │ │ │ ├── projecttree_creator.tsv │ │ │ └── projecttree_speedcrunch.tsv │ │ ├── tst_remove_kits/ │ │ │ └── test.py │ │ ├── tst_rename_file/ │ │ │ └── test.py │ │ ├── tst_save_before_build/ │ │ │ └── test.py │ │ ├── tst_session_handling/ │ │ │ └── test.py │ │ └── tst_tasks_handling/ │ │ └── test.py │ ├── suite_qtquick/ │ │ ├── envvars │ │ ├── suite.conf │ │ ├── tst_qml_outline/ │ │ │ ├── test.py │ │ │ └── testdata/ │ │ │ ├── ListMenu.qml_outline.tsv │ │ │ ├── focus.qml_mod1_outline.tsv │ │ │ ├── focus.qml_mod2_outline.tsv │ │ │ ├── focus.qml_mod3_outline.tsv │ │ │ └── focus.qml_outline.tsv │ │ ├── tst_qtquick_creation/ │ │ │ └── test.py │ │ ├── tst_qtquick_creation3/ │ │ │ └── test.py │ │ └── tst_qtquick_creation4/ │ │ └── test.py │ ├── suite_tools/ │ │ ├── envvars │ │ ├── suite.conf │ │ ├── tst_codepasting/ │ │ │ ├── test.py │ │ │ └── testdata/ │ │ │ ├── main-prepasted.cpp │ │ │ └── main.cpp │ │ ├── tst_designer_autocomplete/ │ │ │ └── test.py │ │ ├── tst_designer_edit/ │ │ │ └── test.py │ │ ├── tst_designer_goto_slot/ │ │ │ ├── test.py │ │ │ └── testdata/ │ │ │ └── connections.tsv │ │ ├── tst_git_clone/ │ │ │ └── test.py │ │ ├── tst_git_first_commit/ │ │ │ └── test.py │ │ ├── tst_git_local/ │ │ │ └── test.py │ │ └── tst_sort/ │ │ ├── test.py │ │ └── testdata/ │ │ ├── sorted.txt │ │ └── unsorted.txt │ └── tools/ │ ├── findUnusedObjects.py │ ├── objectsToTable.py │ ├── toolfunctions.py │ └── tools.pyqtc ├── tests.qbs ├── tools/ │ ├── qml-ast2dot/ │ │ ├── CMakeLists.txt │ │ ├── main.cpp │ │ └── qml-ast2dot.qbs │ ├── qtquickappblaster/ │ │ ├── main.cpp │ │ ├── qtquickappblaster.pro │ │ ├── qtquickappblaster.qrc │ │ └── qtquickapps.xml │ └── tools.pro └── unit/ ├── .clang-format ├── CMakeLists.txt ├── README.md ├── tests/ │ ├── CMakeLists.txt │ ├── integrationtests/ │ │ ├── CMakeLists.txt │ │ ├── integrationtestsapi.cmake │ │ ├── qmldesigner/ │ │ │ ├── CMakeLists.txt │ │ │ └── astcheck/ │ │ │ ├── CMakeLists.txt │ │ │ ├── astcheck-test.cpp │ │ │ └── data/ │ │ │ ├── functions_not_supported_in_ui.qml │ │ │ ├── invalid_id.qml │ │ │ ├── no_code_and_no_blocks.qml │ │ │ ├── no_reference_to_parent_in_ui.qml │ │ │ ├── states_only_in_root_node.qml │ │ │ ├── unsupported_root_type.qml │ │ │ ├── unsupported_root_type_in_ui.qml │ │ │ └── unsupported_type_in_ui.qml │ │ └── qmlprojectmanager/ │ │ ├── CMakeLists.txt │ │ └── converters/ │ │ ├── CMakeLists.txt │ │ ├── converters-test.cpp │ │ └── data/ │ │ ├── test-set-1/ │ │ │ ├── converted.json │ │ │ ├── converted.qmlproject │ │ │ ├── source.json │ │ │ └── source.qmlproject │ │ ├── test-set-2/ │ │ │ ├── converted.json │ │ │ ├── converted.qmlproject │ │ │ ├── source.json │ │ │ └── source.qmlproject │ │ ├── test-set-3/ │ │ │ ├── converted.json │ │ │ ├── converted.qmlproject │ │ │ ├── source.json │ │ │ └── source.qmlproject │ │ ├── test-set-font-files/ │ │ │ ├── converted.json │ │ │ ├── converted.qmlproject │ │ │ ├── source.json │ │ │ └── source.qmlproject │ │ ├── test-set-mcu-1/ │ │ │ ├── converted.json │ │ │ ├── converted.qmlproject │ │ │ ├── mcu-modules/ │ │ │ │ ├── from_importpath/ │ │ │ │ │ ├── imported_module.qmlproject │ │ │ │ │ └── mismatched_uri.qmlproject │ │ │ │ ├── module.qmlproject │ │ │ │ └── no_module.qmlproject │ │ │ ├── source.json │ │ │ └── source.qmlproject │ │ └── test-set-mcu-2/ │ │ ├── converted.json │ │ ├── converted.qmlproject │ │ ├── source.json │ │ └── source.qmlproject │ ├── matchers/ │ │ ├── CMakeLists.txt │ │ ├── import-matcher.h │ │ ├── info_exportedtypenames-matcher.h │ │ ├── projectstorage-matcher.h │ │ ├── property-matcher.h │ │ ├── qvariant-matcher.h │ │ ├── strippedstring-matcher.h │ │ ├── unittest-matchers.h │ │ └── version-matcher.h │ ├── mocks/ │ │ ├── CMakeLists.txt │ │ ├── abstractviewmock.h │ │ ├── externaldependenciesmock.h │ │ ├── filesystemmock.h │ │ ├── imagecachecollectormock.h │ │ ├── mockimagecachegenerator.h │ │ ├── mockimagecachestorage.h │ │ ├── mockmutex.h │ │ ├── mockqfilesystemwatcher.h │ │ ├── mocksqlitestatement.h │ │ ├── mocksqlitetransactionbackend.h │ │ ├── mocksyntaxhighligher.h │ │ ├── mocktimer.cpp │ │ ├── mocktimer.h │ │ ├── mocktimestampprovider.h │ │ ├── modelresourcemanagementmock.h │ │ ├── projectstorageerrornotifiermock.h │ │ ├── projectstoragemock.cpp │ │ ├── projectstoragemock.h │ │ ├── projectstorageobservermock.h │ │ ├── projectstoragepathwatchermock.h │ │ ├── projectstoragepathwatchernotifiermock.h │ │ ├── projectstoragetriggerupdatemock.h │ │ ├── propertycomponentgeneratormock.h │ │ ├── qmldocumentparsermock.h │ │ ├── qmltypesparsermock.h │ │ ├── sourcepathcachemock.cpp │ │ ├── sourcepathcachemock.h │ │ ├── sqlitedatabasemock.h │ │ ├── sqlitereadstatementmock.cpp │ │ ├── sqlitereadstatementmock.h │ │ ├── sqlitereadwritestatementmock.cpp │ │ ├── sqlitereadwritestatementmock.h │ │ ├── sqlitestatementmock.h │ │ ├── sqlitetransactionbackendmock.h │ │ ├── sqlitewritestatementmock.cpp │ │ ├── sqlitewritestatementmock.h │ │ └── textmodifiermock.h │ ├── printers/ │ │ ├── CMakeLists.txt │ │ ├── gtest-creator-printing.cpp │ │ ├── gtest-creator-printing.h │ │ ├── gtest-qt-printing.cpp │ │ ├── gtest-qt-printing.h │ │ └── gtest-std-printing.h │ ├── stubs/ │ │ ├── coreplugin/ │ │ │ ├── helpitem.h │ │ │ ├── icontext.h │ │ │ ├── icore.h │ │ │ └── vcsmanager.h │ │ └── texteditor/ │ │ ├── assistenums.h │ │ ├── codeassist/ │ │ │ └── assistinterface.h │ │ ├── quickfix.h │ │ ├── refactoringchanges.h │ │ ├── semantichighlighter.h │ │ └── syntaxhighlighter.h │ ├── testdesignercore/ │ │ └── CMakeLists.txt │ ├── unittests/ │ │ ├── CMakeLists.txt │ │ ├── componentcore/ │ │ │ ├── CMakeLists.txt │ │ │ ├── propertycomponentgenerator-test.cpp │ │ │ └── propertyeditorcomponentgenerator-test.cpp │ │ ├── designercoreutils/ │ │ │ ├── CMakeLists.txt │ │ │ ├── modelutils-test.cpp │ │ │ └── uniquename-test.cpp │ │ ├── designsystem/ │ │ │ ├── CMakeLists.txt │ │ │ ├── dsthemegroup-test.cpp │ │ │ ├── dsthememgr-test.cpp │ │ │ └── dsthemeqml-test.cpp │ │ ├── imagecache/ │ │ │ ├── CMakeLists.txt │ │ │ ├── asynchronousexplicitimagecache-test.cpp │ │ │ ├── asynchronousimagecache-test.cpp │ │ │ ├── asynchronousimagefactory-test.cpp │ │ │ ├── imagecachedispatchcollector-test.cpp │ │ │ ├── imagecachegenerator-test.cpp │ │ │ ├── imagecachestorage-test.cpp │ │ │ ├── synchronousimagecache-test.cpp │ │ │ └── taskqueue-test.cpp │ │ ├── listmodeleditor/ │ │ │ ├── CMakeLists.txt │ │ │ └── listmodeleditor-test.cpp │ │ ├── metainfo/ │ │ │ ├── CMakeLists.txt │ │ │ ├── nodemetainfo-test.cpp │ │ │ └── propertymetainfo-test.cpp │ │ ├── model/ │ │ │ ├── CMakeLists.txt │ │ │ ├── auxiliarypropertystorageview-test.cpp │ │ │ ├── import-test.cpp │ │ │ ├── model-test.cpp │ │ │ ├── modelnode-test.cpp │ │ │ ├── modelresourcemanagement-test.cpp │ │ │ ├── nodelistproperty-test.cpp │ │ │ └── rewriterview-test.cpp │ │ ├── projectstorage/ │ │ │ ├── CMakeLists.txt │ │ │ ├── data/ │ │ │ │ ├── modulescanner/ │ │ │ │ │ └── Example/ │ │ │ │ │ └── qmldir │ │ │ │ └── qml/ │ │ │ │ ├── QmlTime/ │ │ │ │ │ └── qmldir │ │ │ │ ├── Qt/ │ │ │ │ │ ├── labs/ │ │ │ │ │ │ ├── animation/ │ │ │ │ │ │ │ └── qmldir │ │ │ │ │ │ ├── folderlistmodel/ │ │ │ │ │ │ │ └── qmldir │ │ │ │ │ │ ├── lottieqt/ │ │ │ │ │ │ │ └── qmldir │ │ │ │ │ │ ├── platform/ │ │ │ │ │ │ │ └── qmldir │ │ │ │ │ │ ├── qmlmodels/ │ │ │ │ │ │ │ └── qmldir │ │ │ │ │ │ ├── settings/ │ │ │ │ │ │ │ └── qmldir │ │ │ │ │ │ ├── sharedimage/ │ │ │ │ │ │ │ └── qmldir │ │ │ │ │ │ └── wavefrontmesh/ │ │ │ │ │ │ └── qmldir │ │ │ │ │ └── test/ │ │ │ │ │ └── controls/ │ │ │ │ │ └── qmldir │ │ │ │ ├── Qt3D/ │ │ │ │ │ ├── Animation/ │ │ │ │ │ │ └── qmldir │ │ │ │ │ ├── Extras/ │ │ │ │ │ │ └── qmldir │ │ │ │ │ ├── Input/ │ │ │ │ │ │ └── qmldir │ │ │ │ │ ├── Logic/ │ │ │ │ │ │ └── qmldir │ │ │ │ │ └── Render/ │ │ │ │ │ └── qmldir │ │ │ │ ├── Qt5Compat/ │ │ │ │ │ └── GraphicalEffects/ │ │ │ │ │ ├── private/ │ │ │ │ │ │ └── qmldir │ │ │ │ │ └── qmldir │ │ │ │ ├── QtApplicationManager/ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ └── qmldir │ │ │ │ │ ├── SystemUI/ │ │ │ │ │ │ └── qmldir │ │ │ │ │ └── qmldir │ │ │ │ ├── QtCharts/ │ │ │ │ │ └── qmldir │ │ │ │ ├── QtCore/ │ │ │ │ │ └── qmldir │ │ │ │ ├── QtDataVisualization/ │ │ │ │ │ └── qmldir │ │ │ │ ├── QtInsightTracker/ │ │ │ │ │ └── qmldir │ │ │ │ ├── QtInterfaceFramework/ │ │ │ │ │ ├── Media/ │ │ │ │ │ │ └── qmldir │ │ │ │ │ ├── VehicleFunctions/ │ │ │ │ │ │ └── qmldir │ │ │ │ │ └── qmldir │ │ │ │ ├── QtLocation/ │ │ │ │ │ └── qmldir │ │ │ │ ├── QtMultimedia/ │ │ │ │ │ └── qmldir │ │ │ │ ├── QtOpcUa/ │ │ │ │ │ └── qmldir │ │ │ │ ├── QtPositioning/ │ │ │ │ │ └── qmldir │ │ │ │ ├── QtQml/ │ │ │ │ │ ├── Base/ │ │ │ │ │ │ └── qmldir │ │ │ │ │ ├── Models/ │ │ │ │ │ │ └── qmldir │ │ │ │ │ ├── StateMachine/ │ │ │ │ │ │ └── qmldir │ │ │ │ │ ├── WorkerScript/ │ │ │ │ │ │ └── qmldir │ │ │ │ │ ├── XmlListModel/ │ │ │ │ │ │ └── qmldir │ │ │ │ │ └── qmldir │ │ │ │ ├── QtQuick/ │ │ │ │ │ ├── Controls/ │ │ │ │ │ │ ├── Basic/ │ │ │ │ │ │ │ ├── impl/ │ │ │ │ │ │ │ │ └── qmldir │ │ │ │ │ │ │ └── qmldir │ │ │ │ │ │ ├── Fusion/ │ │ │ │ │ │ │ ├── impl/ │ │ │ │ │ │ │ │ └── qmldir │ │ │ │ │ │ │ └── qmldir │ │ │ │ │ │ ├── Imagine/ │ │ │ │ │ │ │ ├── impl/ │ │ │ │ │ │ │ │ └── qmldir │ │ │ │ │ │ │ └── qmldir │ │ │ │ │ │ ├── Material/ │ │ │ │ │ │ │ ├── impl/ │ │ │ │ │ │ │ │ └── qmldir │ │ │ │ │ │ │ └── qmldir │ │ │ │ │ │ ├── Universal/ │ │ │ │ │ │ │ ├── impl/ │ │ │ │ │ │ │ │ └── qmldir │ │ │ │ │ │ │ └── qmldir │ │ │ │ │ │ ├── designer/ │ │ │ │ │ │ │ └── qtquickcontrols2.metainfo │ │ │ │ │ │ ├── impl/ │ │ │ │ │ │ │ └── qmldir │ │ │ │ │ │ └── qmldir │ │ │ │ │ ├── Dialogs/ │ │ │ │ │ │ ├── qmldir │ │ │ │ │ │ └── quickimpl/ │ │ │ │ │ │ └── qmldir │ │ │ │ │ ├── Effects/ │ │ │ │ │ │ └── qmldir │ │ │ │ │ ├── Layouts/ │ │ │ │ │ │ └── qmldir │ │ │ │ │ ├── LocalStorage/ │ │ │ │ │ │ └── qmldir │ │ │ │ │ ├── NativeStyle/ │ │ │ │ │ │ └── qmldir │ │ │ │ │ ├── Particles/ │ │ │ │ │ │ └── qmldir │ │ │ │ │ ├── Pdf/ │ │ │ │ │ │ └── qmldir │ │ │ │ │ ├── Scene2D/ │ │ │ │ │ │ └── qmldir │ │ │ │ │ ├── Scene3D/ │ │ │ │ │ │ └── qmldir │ │ │ │ │ ├── Shapes/ │ │ │ │ │ │ └── qmldir │ │ │ │ │ ├── Templates/ │ │ │ │ │ │ └── qmldir │ │ │ │ │ ├── Timeline/ │ │ │ │ │ │ └── qmldir │ │ │ │ │ ├── VirtualKeyboard/ │ │ │ │ │ │ ├── Components/ │ │ │ │ │ │ │ └── qmldir │ │ │ │ │ │ ├── Layouts/ │ │ │ │ │ │ │ └── qmldir │ │ │ │ │ │ ├── Plugins/ │ │ │ │ │ │ │ ├── Hangul/ │ │ │ │ │ │ │ │ └── qmldir │ │ │ │ │ │ │ ├── OpenWNN/ │ │ │ │ │ │ │ │ └── qmldir │ │ │ │ │ │ │ ├── Pinyin/ │ │ │ │ │ │ │ │ └── qmldir │ │ │ │ │ │ │ ├── TCIme/ │ │ │ │ │ │ │ │ └── qmldir │ │ │ │ │ │ │ ├── Thai/ │ │ │ │ │ │ │ │ └── qmldir │ │ │ │ │ │ │ └── qmldir │ │ │ │ │ │ ├── Settings/ │ │ │ │ │ │ │ └── qmldir │ │ │ │ │ │ ├── Styles/ │ │ │ │ │ │ │ ├── Builtin/ │ │ │ │ │ │ │ │ └── qmldir │ │ │ │ │ │ │ └── qmldir │ │ │ │ │ │ └── qmldir │ │ │ │ │ ├── Window/ │ │ │ │ │ │ └── qmldir │ │ │ │ │ ├── qmldir │ │ │ │ │ └── tooling/ │ │ │ │ │ └── qmldir │ │ │ │ ├── QtQuick3D/ │ │ │ │ │ ├── AssetUtils/ │ │ │ │ │ │ ├── designer/ │ │ │ │ │ │ │ └── assetutils.metainfo │ │ │ │ │ │ └── qmldir │ │ │ │ │ ├── Effects/ │ │ │ │ │ │ ├── designer/ │ │ │ │ │ │ │ └── effectlib.metainfo │ │ │ │ │ │ └── qmldir │ │ │ │ │ ├── Helpers/ │ │ │ │ │ │ ├── designer/ │ │ │ │ │ │ │ └── helpers.metainfo │ │ │ │ │ │ ├── impl/ │ │ │ │ │ │ │ └── qmldir │ │ │ │ │ │ └── qmldir │ │ │ │ │ ├── MaterialEditor/ │ │ │ │ │ │ └── qmldir │ │ │ │ │ ├── ParticleEffects/ │ │ │ │ │ │ ├── designer/ │ │ │ │ │ │ │ └── particleeffects.metainfo │ │ │ │ │ │ └── qmldir │ │ │ │ │ ├── Particles3D/ │ │ │ │ │ │ ├── designer/ │ │ │ │ │ │ │ └── particles3d.metainfo │ │ │ │ │ │ └── qmldir │ │ │ │ │ ├── Physics/ │ │ │ │ │ │ ├── Helpers/ │ │ │ │ │ │ │ └── qmldir │ │ │ │ │ │ ├── designer/ │ │ │ │ │ │ │ └── physics.metainfo │ │ │ │ │ │ └── qmldir │ │ │ │ │ ├── SpatialAudio/ │ │ │ │ │ │ └── qmldir │ │ │ │ │ ├── designer/ │ │ │ │ │ │ └── quick3d.metainfo │ │ │ │ │ └── qmldir │ │ │ │ ├── QtRemoteObjects/ │ │ │ │ │ └── qmldir │ │ │ │ ├── QtScxml/ │ │ │ │ │ └── qmldir │ │ │ │ ├── QtSensors/ │ │ │ │ │ └── qmldir │ │ │ │ ├── QtTest/ │ │ │ │ │ └── qmldir │ │ │ │ ├── QtTextToSpeech/ │ │ │ │ │ └── qmldir │ │ │ │ ├── QtVncServer/ │ │ │ │ │ └── qmldir │ │ │ │ ├── QtWayland/ │ │ │ │ │ ├── Client/ │ │ │ │ │ │ └── TextureSharing/ │ │ │ │ │ │ └── qmldir │ │ │ │ │ └── Compositor/ │ │ │ │ │ ├── IviApplication/ │ │ │ │ │ │ └── qmldir │ │ │ │ │ ├── PresentationTime/ │ │ │ │ │ │ └── qmldir │ │ │ │ │ ├── QtShell/ │ │ │ │ │ │ └── qmldir │ │ │ │ │ ├── TextureSharingExtension/ │ │ │ │ │ │ └── qmldir │ │ │ │ │ ├── WlShell/ │ │ │ │ │ │ └── qmldir │ │ │ │ │ ├── XdgShell/ │ │ │ │ │ │ └── qmldir │ │ │ │ │ └── qmldir │ │ │ │ ├── QtWebChannel/ │ │ │ │ │ └── qmldir │ │ │ │ ├── QtWebEngine/ │ │ │ │ │ ├── ControlsDelegates/ │ │ │ │ │ │ └── qmldir │ │ │ │ │ └── qmldir │ │ │ │ ├── QtWebSockets/ │ │ │ │ │ └── qmldir │ │ │ │ └── QtWebView/ │ │ │ │ └── qmldir │ │ │ ├── directorypathcompressor-test.cpp │ │ │ ├── filestatuscache-test.cpp │ │ │ ├── modulescanner-test.cpp │ │ │ ├── modulesstorage-test.cpp │ │ │ ├── projectstorage-test.cpp │ │ │ ├── projectstoragepathwatcher-test.cpp │ │ │ ├── projectstorageupdater-test.cpp │ │ │ ├── qmldocumentparser-test.cpp │ │ │ ├── qmltypesparser-test.cpp │ │ │ └── typeannotationreader-test.cpp │ │ ├── qmldesignerutils/ │ │ │ ├── CMakeLists.txt │ │ │ ├── importutils-test.cpp │ │ │ ├── stringutils-test.cpp │ │ │ └── version-test.cpp │ │ ├── qmlprojectmanager/ │ │ │ ├── CMakeLists.txt │ │ │ ├── data/ │ │ │ │ ├── README.md │ │ │ │ ├── converter/ │ │ │ │ │ ├── test-set-mcu-1/ │ │ │ │ │ │ ├── mcu-modules/ │ │ │ │ │ │ │ ├── from_importpath/ │ │ │ │ │ │ │ │ ├── imported_module.qmlproject │ │ │ │ │ │ │ │ └── mismatched_uri.qmlproject │ │ │ │ │ │ │ ├── module.qmlproject │ │ │ │ │ │ │ └── no_module.qmlproject │ │ │ │ │ │ ├── testfile.jsontoqml │ │ │ │ │ │ ├── testfile.qmlproject │ │ │ │ │ │ └── testfile.qmltojson │ │ │ │ │ └── test-set-mcu-2/ │ │ │ │ │ ├── testfile.jsontoqml │ │ │ │ │ ├── testfile.qmlproject │ │ │ │ │ └── testfile.qmltojson │ │ │ │ ├── file-filters/ │ │ │ │ │ ├── MaterialBundle.qmlproject │ │ │ │ │ ├── MaterialBundle.qmlproject.qtds │ │ │ │ │ ├── MaterialLibrary.qrc │ │ │ │ │ ├── asset_imports/ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── ComponentBundles/ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── MaterialBundle/ │ │ │ │ │ │ ├── AcrylicPaintMaterial.qml │ │ │ │ │ │ ├── AluminiumMaterial.qml │ │ │ │ │ │ ├── AsphaltMaterial.qml │ │ │ │ │ │ ├── BrickMaterial.qml │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── CarPaintGlitterMaterial.qml │ │ │ │ │ │ ├── CarPaintMaterial.qml │ │ │ │ │ │ ├── CarbonFiberMaterial.qml │ │ │ │ │ │ ├── CeramicMaterial.qml │ │ │ │ │ │ ├── ChromeMaterial.qml │ │ │ │ │ │ ├── ConcreteMaterial.qml │ │ │ │ │ │ ├── CopperMaterial.qml │ │ │ │ │ │ ├── FabricMaterial.qml │ │ │ │ │ │ ├── FabricRoughMaterial.qml │ │ │ │ │ │ ├── FabricSatinMaterial.qml │ │ │ │ │ │ ├── GlassMaterial.qml │ │ │ │ │ │ ├── GlassTintedMaterial.qml │ │ │ │ │ │ ├── GoldMaterial.qml │ │ │ │ │ │ ├── LeatherMaterial.qml │ │ │ │ │ │ ├── MirrorMaterial.qml │ │ │ │ │ │ ├── PaperMaterial.qml │ │ │ │ │ │ ├── PlasticMatteMaterial.qml │ │ │ │ │ │ ├── PlasticShinyMaterial.qml │ │ │ │ │ │ ├── PlasticTexturedMaterial.qml │ │ │ │ │ │ ├── RubberMaterial.qml │ │ │ │ │ │ ├── SilverMaterial.qml │ │ │ │ │ │ ├── SteelBrushedMaterial.qml │ │ │ │ │ │ ├── SteelFloorMaterial.qml │ │ │ │ │ │ ├── SteelMaterial.qml │ │ │ │ │ │ ├── StoneMaterial.qml │ │ │ │ │ │ ├── WaxMaterial.qml │ │ │ │ │ │ ├── WoodMaterial.qml │ │ │ │ │ │ ├── WoodParquetMaterial.qml │ │ │ │ │ │ ├── WoodPlanksMaterial.qml │ │ │ │ │ │ ├── _asset_ref.json │ │ │ │ │ │ ├── designer/ │ │ │ │ │ │ │ ├── acrylicpaint.metainfo │ │ │ │ │ │ │ ├── aluminium.metainfo │ │ │ │ │ │ │ ├── asphalt.metainfo │ │ │ │ │ │ │ ├── brick.metainfo │ │ │ │ │ │ │ ├── carbonfiber.metainfo │ │ │ │ │ │ │ ├── carpaint.metainfo │ │ │ │ │ │ │ ├── carpaintglitter.metainfo │ │ │ │ │ │ │ ├── ceramic.metainfo │ │ │ │ │ │ │ ├── chrome.metainfo │ │ │ │ │ │ │ ├── concrete.metainfo │ │ │ │ │ │ │ ├── copper.metainfo │ │ │ │ │ │ │ ├── fabric.metainfo │ │ │ │ │ │ │ ├── fabricrough.metainfo │ │ │ │ │ │ │ ├── fabricsatin.metainfo │ │ │ │ │ │ │ ├── glass.metainfo │ │ │ │ │ │ │ ├── glasstinted.metainfo │ │ │ │ │ │ │ ├── gold.metainfo │ │ │ │ │ │ │ ├── leather.metainfo │ │ │ │ │ │ │ ├── mirror.metainfo │ │ │ │ │ │ │ ├── paper.metainfo │ │ │ │ │ │ │ ├── plasticmatte.metainfo │ │ │ │ │ │ │ ├── plasticshiny.metainfo │ │ │ │ │ │ │ ├── plastictextured.metainfo │ │ │ │ │ │ │ ├── rubber.metainfo │ │ │ │ │ │ │ ├── silver.metainfo │ │ │ │ │ │ │ ├── steel.metainfo │ │ │ │ │ │ │ ├── steelbrushed.metainfo │ │ │ │ │ │ │ ├── steelfloor.metainfo │ │ │ │ │ │ │ ├── stone.metainfo │ │ │ │ │ │ │ ├── wax.metainfo │ │ │ │ │ │ │ ├── wood.metainfo │ │ │ │ │ │ │ ├── woodparquet.metainfo │ │ │ │ │ │ │ └── woodplanks.metainfo │ │ │ │ │ │ ├── images/ │ │ │ │ │ │ │ └── blurrynoise.tga │ │ │ │ │ │ ├── qmldir │ │ │ │ │ │ └── shaders/ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── SSS.frag │ │ │ │ │ │ ├── SSS.vert │ │ │ │ │ │ ├── carmat_simple.frag │ │ │ │ │ │ ├── carmat_simple.vert │ │ │ │ │ │ ├── carmat_simple_nf.frag │ │ │ │ │ │ ├── carmat_simple_nf.vert │ │ │ │ │ │ ├── glass.frag │ │ │ │ │ │ ├── glass.vert │ │ │ │ │ │ ├── satin.frag │ │ │ │ │ │ └── satin.vert │ │ │ │ │ ├── content/ │ │ │ │ │ │ ├── App.qml │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── CustomRoundButton.qml │ │ │ │ │ │ ├── MaterialNames.qml │ │ │ │ │ │ ├── MouseRotator.qml │ │ │ │ │ │ ├── Screen01.ui.qml │ │ │ │ │ │ ├── fonts/ │ │ │ │ │ │ │ └── fonts.txt │ │ │ │ │ │ └── meshes/ │ │ │ │ │ │ ├── floor.mesh │ │ │ │ │ │ └── materialBall.mesh │ │ │ │ │ ├── filelist.txt │ │ │ │ │ ├── imports/ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── MaterialLibrary/ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── Constants.qml │ │ │ │ │ │ ├── DirectoryFontLoader.qml │ │ │ │ │ │ ├── EventListModel.qml │ │ │ │ │ │ ├── EventListSimulator.qml │ │ │ │ │ │ ├── designer/ │ │ │ │ │ │ │ └── plugin.metainfo │ │ │ │ │ │ └── qmldir │ │ │ │ │ ├── main.qml │ │ │ │ │ ├── qmlcomponents │ │ │ │ │ ├── qmlmodules │ │ │ │ │ ├── qtquickcontrols2.conf │ │ │ │ │ ├── share.qrc │ │ │ │ │ └── src/ │ │ │ │ │ ├── app_environment.h │ │ │ │ │ ├── import_qml_plugins.h │ │ │ │ │ └── main.cpp │ │ │ │ ├── getter-setter/ │ │ │ │ │ ├── empty.qmlproject │ │ │ │ │ ├── mcu_project_with_modules.qmlproject │ │ │ │ │ ├── with_qds_prefix.qmlproject │ │ │ │ │ └── without_qds_prefix.qmlproject │ │ │ │ └── qmldirtoqmlproject/ │ │ │ │ ├── existing_qmlproject/ │ │ │ │ │ ├── File1.qml │ │ │ │ │ ├── File2.qml │ │ │ │ │ ├── Internal/ │ │ │ │ │ │ └── File3.qml │ │ │ │ │ ├── TestSingleton.qml │ │ │ │ │ ├── qmldir │ │ │ │ │ └── test_module.qmlproject │ │ │ │ ├── incorrect_module_name_qmldir/ │ │ │ │ │ ├── TestSingleton.qml │ │ │ │ │ └── qmldir │ │ │ │ ├── invalid_qmlproject/ │ │ │ │ │ └── test_module.qmlproject │ │ │ │ ├── missing_module_name_qmldir/ │ │ │ │ │ ├── TestSingleton.qml │ │ │ │ │ └── qmldir │ │ │ │ ├── missing_qml_files_qmldir/ │ │ │ │ │ └── qmldir │ │ │ │ └── missing_qmlproject/ │ │ │ │ ├── File1.qml │ │ │ │ ├── File2.qml │ │ │ │ ├── Internal/ │ │ │ │ │ └── File3.qml │ │ │ │ ├── TestSingleton.qml │ │ │ │ └── qmldir │ │ │ ├── mcumoduleprojectitem-test.cpp │ │ │ └── projectitem-test.cpp │ │ ├── sourcepathstorage/ │ │ │ ├── CMakeLists.txt │ │ │ ├── sourcepath-test.cpp │ │ │ ├── sourcepathcache-test.cpp │ │ │ ├── sourcepathstorage-test.cpp │ │ │ ├── sourcepathview-test.cpp │ │ │ └── storagecache-test.cpp │ │ ├── sqlite/ │ │ │ ├── CMakeLists.txt │ │ │ ├── createtablesqlstatementbuilder-test.cpp │ │ │ ├── lastchangedrowid-test.cpp │ │ │ ├── sqlitealgorithms-test.cpp │ │ │ ├── sqlitecolumn-test.cpp │ │ │ ├── sqlitedatabase-test.cpp │ │ │ ├── sqlitedatabasebackend-test.cpp │ │ │ ├── sqlitefunctionregistry-test.cpp │ │ │ ├── sqliteindex-test.cpp │ │ │ ├── sqlitesessions-test.cpp │ │ │ ├── sqlitestatement-test.cpp │ │ │ ├── sqlitetable-test.cpp │ │ │ ├── sqliteteststatement.h │ │ │ ├── sqlitetransaction-test.cpp │ │ │ ├── sqlitevalue-test.cpp │ │ │ └── sqlstatementbuilder-test.cpp │ │ ├── unittests-main.cpp │ │ └── utils/ │ │ ├── CMakeLists.txt │ │ ├── sizedarray-test.cpp │ │ ├── smallstring-benchmark.cpp │ │ └── smallstring-test.cpp │ └── utils/ │ ├── CMakeLists.txt │ ├── conditionally-disabled-tests.h │ ├── google-using-declarations.h │ ├── googletest.h │ ├── notification.h │ ├── processevents-utilities.cpp │ ├── processevents-utilities.h │ ├── spydummy.cpp │ ├── spydummy.h │ └── unittest-utility-functions.h ├── tools/ │ ├── CMakeLists.txt │ └── qmlprojectmanager/ │ ├── CMakeLists.txt │ └── main.cpp └── unit.qbs