DtkDeclarative
DTK Declarative module
载入中...
搜索中...
未找到
dquickwindow.h
1// SPDX-FileCopyrightText: 2020 - 2022 UnionTech Software Technology Co., Ltd.
2//
3// SPDX-License-Identifier: LGPL-3.0-or-later
4
5#ifndef DWINDOW_H
6#define DWINDOW_H
7
8#include <QQuickWindow>
9#include <DObject>
10
11#include <dtkdeclarative_global.h>
12#include <DWindowManagerHelper>
13#include <DPlatformHandle>
14#include <DGuiApplicationHelper>
15
16QT_BEGIN_NAMESPACE
17class QQmlComponent;
18class QQuickPath;
19class QQuickTransition;
20QT_END_NAMESPACE
21
22DQUICK_BEGIN_NAMESPACE
23
24class DQuickWindowPrivate;
25class DQuickWindowAttached;
26class DQuickWindowAttachedPrivate;
27
28class DQuickWindow : public QQuickWindow, public DTK_CORE_NAMESPACE::DObject
29{
30 Q_OBJECT
31#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
32 QML_UNCREATABLE("DQuickWindow Attached.")
33 QML_NAMED_ELEMENT(DWindow)
34 QML_ATTACHED(DQuickWindowAttached)
35#endif
36public:
37 explicit DQuickWindow(QWindow *parent = nullptr);
38 ~DQuickWindow() override;
39
40 DQuickWindowAttached *attached() const;
41 static DQuickWindowAttached *qmlAttachedProperties(QObject *object);
42
43private:
44 D_DECLARE_PRIVATE(DQuickWindow)
45};
46
49class DQuickWindowAttached : public QObject, public DTK_CORE_NAMESPACE::DObject
50{
51 Q_OBJECT
52 Q_PROPERTY(QQuickWindow *window READ window CONSTANT)
53 Q_PROPERTY(bool enabled READ isEnabled WRITE setEnabled NOTIFY enabledChanged)
54 Q_PROPERTY(int windowRadius READ windowRadius WRITE setWindowRadius NOTIFY windowRadiusChanged)
55 Q_PROPERTY(int borderWidth READ borderWidth WRITE setBorderWidth NOTIFY borderWidthChanged)
56 Q_PROPERTY(QColor borderColor READ borderColor WRITE setBorderColor NOTIFY borderColorChanged)
57 Q_PROPERTY(int shadowRadius READ shadowRadius WRITE setShadowRadius NOTIFY shadowRadiusChanged)
58 Q_PROPERTY(QPoint shadowOffset READ shadowOffset WRITE setShadowOffset NOTIFY shadowOffsetChanged)
59 Q_PROPERTY(QColor shadowColor READ shadowColor WRITE setShadowColor NOTIFY shadowColorChanged)
60 Q_PROPERTY(bool translucentBackground READ translucentBackground WRITE setTranslucentBackground NOTIFY translucentBackgroundChanged)
61 Q_PROPERTY(bool enableSystemResize READ enableSystemResize WRITE setEnableSystemResize NOTIFY enableSystemResizeChanged)
62 Q_PROPERTY(bool enableSystemMove READ enableSystemMove WRITE setEnableSystemMove NOTIFY enableSystemMoveChanged)
63 Q_PROPERTY(bool enableBlurWindow READ enableBlurWindow WRITE setEnableBlurWindow NOTIFY enableBlurWindowChanged)
64 Q_PROPERTY(int alphaBufferSize READ alphaBufferSize WRITE setAlphaBufferSize NOTIFY alphaBufferSizeChanged)
65 Q_PROPERTY(QQuickPath *clipPath READ clipPath WRITE setClipPath NOTIFY clipPathChanged)
66 Q_PROPERTY(DTK_GUI_NAMESPACE::DWindowManagerHelper::WmWindowTypes wmWindowTypes READ wmWindowTypes WRITE setWmWindowTypes NOTIFY wmWindowTypesChanged)
67 Q_PROPERTY(DTK_GUI_NAMESPACE::DWindowManagerHelper::MotifFunctions motifFunctions READ motifFunctions WRITE setMotifFunctions NOTIFY motifFunctionsChanged)
68 Q_PROPERTY(DTK_GUI_NAMESPACE::DWindowManagerHelper::MotifDecorations motifDecorations READ motifDecorations WRITE setMotifDecorations NOTIFY motifDecorationsChanged)
69 Q_PROPERTY(QQuickTransition *overlayExited READ overlayExited WRITE setOverlayExited NOTIFY overlayExitedChanged FINAL)
70 Q_PROPERTY(QQmlComponent *loadingOverlay READ loadingOverlay WRITE setLoadingOverlay NOTIFY loadingOverlayChanged FINAL)
71 Q_PROPERTY(DTK_QUICK_NAMESPACE::DQuickAppLoaderItem *appLoader READ appLoader NOTIFY appLoaderChanged)
72#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
73 Q_PROPERTY(DTK_GUI_NAMESPACE::DGuiApplicationHelper::ColorType themeType READ themeType WRITE setThemeType RESET resetThemeType NOTIFY themeTypeChanged)
74#endif
75 Q_PROPERTY(DTK_GUI_NAMESPACE::DPlatformHandle::EffectScene windowEffect READ windowEffect WRITE setWindowEffect NOTIFY windowEffectChanged)
76 Q_PROPERTY(DTK_GUI_NAMESPACE::DPlatformHandle::EffectType windowStartUpEffect READ windowStartUpEffect WRITE setWindowStartUpEffect NOTIFY windowStartUpEffectChanged)
77#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
78 QML_ANONYMOUS
79#endif
80
81public:
82 explicit DQuickWindowAttached(QWindow *window);
83
84 QQuickWindow *window() const;
85 bool isEnabled() const;
86
87 int windowRadius() const;
88
89 int borderWidth() const;
90 QColor borderColor() const;
91
92 int shadowRadius() const;
93 QPoint shadowOffset() const;
94 QColor shadowColor() const;
95
96 QRegion frameMask() const;
97
98 bool translucentBackground() const;
99 bool enableSystemResize() const;
100 bool enableSystemMove() const;
101 bool enableBlurWindow() const;
102 int alphaBufferSize() const;
103
104 QQuickPath *clipPath() const;
105
106 QQuickTransition *overlayExited() const;
107 QQmlComponent *loadingOverlay() const;
108
109 DQuickAppLoaderItem *appLoader() const;
110 void setAppLoader(DQuickAppLoaderItem *item);
111
112 DTK_GUI_NAMESPACE::DWindowManagerHelper::WmWindowTypes wmWindowTypes() const;
113 DTK_GUI_NAMESPACE::DWindowManagerHelper::MotifFunctions motifFunctions() const;
114 DTK_GUI_NAMESPACE::DWindowManagerHelper::MotifDecorations motifDecorations() const;
115
116#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
117 DTK_GUI_NAMESPACE::DGuiApplicationHelper::ColorType themeType() const;
118 void setThemeType(const DTK_GUI_NAMESPACE::DGuiApplicationHelper::ColorType &newThemeType);
119 void resetThemeType();
120#endif
121
122 DTK_GUI_NAMESPACE::DPlatformHandle::EffectScene windowEffect() const;
123 DTK_GUI_NAMESPACE::DPlatformHandle::EffectType windowStartUpEffect() const;
124
125public Q_SLOTS:
126 void setEnabled(bool e);
127
128 void setWindowRadius(int windowRadius);
129
130 void setBorderWidth(int borderWidth);
131 void setBorderColor(const QColor &borderColor);
132
133 void setShadowRadius(int shadowRadius);
134 void setShadowOffset(const QPoint &shadowOffset);
135 void setShadowColor(const QColor &shadowColor);
136
137 void setTranslucentBackground(bool translucentBackground);
138 void setEnableSystemResize(bool enableSystemResize);
139 void setEnableSystemMove(bool enableSystemMove);
140 void setEnableBlurWindow(bool enableBlurWindow);
141 void setAlphaBufferSize(int size);
142
143 void setWmWindowTypes(DTK_GUI_NAMESPACE::DWindowManagerHelper::WmWindowTypes wmWindowTypes);
144 void setMotifFunctions(DTK_GUI_NAMESPACE::DWindowManagerHelper::MotifFunctions motifFunctions);
145 void setMotifDecorations(DTK_GUI_NAMESPACE::DWindowManagerHelper::MotifDecorations motifDecorations);
146
147 void popupSystemWindowMenu();
148
149 bool setWindowBlurAreaByWM(const QVector<DPlatformHandle::WMBlurArea> &area);
150 bool setWindowBlurAreaByWM(const QList<QPainterPath> &area);
151
152 void setClipPathByWM(const QPainterPath &clipPath);
153 void setClipPath(QQuickPath *path);
154 void setOverlayExited(QQuickTransition *exit);
155 void setLoadingOverlay(QQmlComponent *component);
156
157 void setWindowEffect(DTK_GUI_NAMESPACE::DPlatformHandle::EffectScenes effect);
158 void setWindowStartUpEffect(DTK_GUI_NAMESPACE::DPlatformHandle::EffectTypes type);
159
160protected:
161 bool eventFilter(QObject *watched, QEvent *event) override;
162
163Q_SIGNALS:
164 void enabledChanged();
165 void windowRadiusChanged();
166 void borderWidthChanged();
167 void borderColorChanged();
168 void shadowRadiusChanged();
169 void shadowOffsetChanged();
170 void shadowColorChanged();
171 void translucentBackgroundChanged();
172 void enableSystemResizeChanged();
173 void enableSystemMoveChanged();
174 void enableBlurWindowChanged();
175 void wmWindowTypesChanged();
176 void motifFunctionsChanged();
177 void motifDecorationsChanged();
178 void alphaBufferSizeChanged();
179 void clipPathChanged();
180 void overlayExitedChanged();
181 void loadingOverlayChanged();
182 void appLoaderChanged();
183#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
184 void themeTypeChanged();
185#endif
186 void windowEffectChanged();
187 void windowStartUpEffectChanged();
188
189private:
190 D_DECLARE_PRIVATE(DQuickWindowAttached)
191 D_PRIVATE_SLOT(void _q_onWindowMotifHintsChanged(quint32))
192 D_PRIVATE_SLOT(void _q_updateBlurAreaForWindow())
193 D_PRIVATE_SLOT(void _q_updateClipPath())
194 D_PRIVATE_SLOT(void _q_ensurePlatformHandle())
195#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
196 D_PRIVATE_SLOT(void _q_onPaletteChanged())
197 D_PRIVATE_SLOT(void _q_updateWindowPalette())
198#endif
199
200 friend class DQuickBehindWindowBlur;
202};
203
204DQUICK_END_NAMESPACE
205
206QML_DECLARE_TYPEINFO(DTK_QUICK_NAMESPACE::DQuickWindow, QML_HAS_ATTACHED_PROPERTIES)
207
208#endif // DWINDOW_H
Definition dquickapploaderitem_p.h:16
Definition dquickbehindwindowblur_p_p.h:16
Definition dquickbehindwindowblur_p.h:19
Definition dquickwindow_p.h:29
Definition dquickwindow.h:50
Definition dquickwindow.h:29