// Copyright (C) 2021 The Qt Company Ltd. // Copyright (C) 2019 Luxoft Sweden AB // Copyright (C) 2018 Pelagicore AG // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only #pragma once #include #include #include #include #include #include QT_BEGIN_NAMESPACE_AM class ApplicationManagerPrivate { public: bool securityChecksEnabled = true; bool singleProcess; bool shuttingDown = false; bool windowManagerCompositorReady = false; QVariantMap systemProperties; QVector apps; QString currentLocale; QHash roleNames; QList> containerSelectionConfig; QJSValue containerSelectionFunction; QSet registeredMimeSchemes; struct OpenUrlRequest { QString requestId; QString urlStr; QString mimeTypeName; QStringList possibleAppIds; }; QVector openUrlRequests; ApplicationManagerPrivate(); ~ApplicationManagerPrivate(); }; QT_END_NAMESPACE_AM // We mean it. Dummy comment since syncqt needs this also for completely private Qt modules.