Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
qquickwindowmodule_p_p.h
Go to the documentation of this file.
1// Copyright (C) 2020 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3// Qt-Security score:significant reason:default
4#ifndef QQUICKWINDOWMODULE_P_P_H
5#define QQUICKWINDOWMODULE_P_P_H
6
7//
8// W A R N I N G
9// -------------
10//
11// This file is not part of the Qt API. It exists purely as an
12// implementation detail. This header file may change from version to
13// version without notice, or even be removed.
14//
15// We mean it.
16//
17
18#include "qquickscreen_p.h"
19#include "qquickwindow_p.h"
20#include <QtQml/private/qv4persistent_p.h>
22
24
25class Q_QUICK_EXPORT QQuickWindowQmlImplPrivate : public QQuickWindowPrivate
26{
27public:
28 QQuickWindowQmlImplPrivate();
29
30 bool componentComplete = true;
31
32 bool visible = false;
33 bool visibleExplicitlySet = false;
34 QQuickWindow::Visibility visibility = QQuickWindow::AutomaticVisibility;
35 bool visibilityExplicitlySet = false;
36
37 QV4::PersistentValue rootItemMarker;
38
39 QMetaObject::Connection itemParentWindowChangeListener;
40
41 QObject *visualParent = nullptr;
42 QPointer<QQuickWindowContainer> windowContainer;
43 qreal z = 0.0;
44 mutable QQuickScreenInfo *screenInfo = nullptr;
45};
46
47QT_END_NAMESPACE
48
49#endif // QQUICKWINDOWMODULE_P_P_H
Q_STATIC_LOGGING_CATEGORY(lcAccessibilityCore, "qt.accessibility.core")