// Copyright (C) 2024 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only #ifndef QTQUICKCONTROLS2BASICFOREIGN_P_H #define QTQUICKCONTROLS2BASICFOREIGN_P_H #include #include #if QT_CONFIG(quicktemplates2_container) #include #endif QT_BEGIN_NAMESPACE // // W A R N I N G // ------------- // // This file is not part of the Qt API. It exists purely as an // implementation detail. This header file may change from version to // version without notice, or even be removed. // // We mean it. // // These are necessary in order to use C++ types in a file where only QtQuick.Controls has been imported. // Control types like Button don't need this done for them, as each style module provides a Button type, // and QtQuick.Controls is a sort of alias for the active style import. struct QQuickOverlayAttachedForeign { Q_GADGET QML_NAMED_ELEMENT(Overlay) QML_FOREIGN(QQuickOverlay) QML_UNCREATABLE("") QML_ADDED_IN_VERSION(2, 3) }; #if QT_CONFIG(quicktemplates2_container) struct QQuickSplitHandleAttachedForeign { Q_GADGET QML_NAMED_ELEMENT(SplitHandle) QML_FOREIGN(QQuickSplitHandleAttached) QML_UNCREATABLE("") QML_ADDED_IN_VERSION(2, 13) }; #endif QT_END_NAMESPACE #endif // QTQUICKCONTROLS2BASICFOREIGN_P_H