DtkDeclarative
DTK Declarative module
载入中...
搜索中...
未找到
dquickbehindwindowblur_p.h
1// SPDX-FileCopyrightText: 2022 UnionTech Software Technology Co., Ltd.
2//
3// SPDX-License-Identifier: LGPL-3.0-or-later
4
5#ifndef DQUICKBEHINDWINDOWBLUR_P_H
6#define DQUICKBEHINDWINDOWBLUR_P_H
7
8#include <DPlatformHandle>
9
10#include <dtkdeclarative_global.h>
11
12#include <QQuickItem>
13
14DQUICK_BEGIN_NAMESPACE
15
16class DQuickWindowAttached;
17class DQuickBehindWindowBlurPrivate;
18class DQuickBehindWindowBlur : public QQuickItem
19{
20 Q_OBJECT
21 Q_PROPERTY(qreal cornerRadius READ cornerRadius WRITE setCornerRadius NOTIFY cornerRadiusChanged)
22 Q_PROPERTY(QColor blendColor READ blendColor WRITE setBlendColor NOTIFY blendColorChanged)
23 Q_PROPERTY(bool valid READ valid NOTIFY validChanged)
24 Q_PROPERTY(bool blurEnabled READ blurEnabled WRITE setBlurEnabled NOTIFY blurEnabledChanged)
25#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
26 QML_NAMED_ELEMENT(BehindWindowBlur)
27#endif
28
29public:
30 explicit DQuickBehindWindowBlur(QQuickItem *parent = nullptr);
31 ~DQuickBehindWindowBlur() override;
32
33 qreal cornerRadius() const;
34 void setCornerRadius(qreal newRadius);
35
36 const QColor &blendColor() const;
37 void setBlendColor(const QColor &newBlendColor);
38
39 bool valid() const;
40
41 bool blurEnabled() const;
42 void setBlurEnabled(bool newBlurEnabled);
43
44Q_SIGNALS:
45 void cornerRadiusChanged();
46 void blendColorChanged();
47 void validChanged();
48 void blurEnabledChanged();
49
50protected:
51 QSGNode *updatePaintNode(QSGNode *, UpdatePaintNodeData *) override;
52 void itemChange(ItemChange change, const ItemChangeData &value);
53 void componentComplete() override;
54
55private:
56 void setWindowAttached(DQuickWindowAttached *wa);
57
58private:
59 Q_DISABLE_COPY(DQuickBehindWindowBlur)
60 Q_DECLARE_PRIVATE(DQuickBehindWindowBlur)
61 Q_PRIVATE_SLOT(d_func(), void _q_onHasBlurWindowChanged())
62 Q_PRIVATE_SLOT(d_func(), void _q_updateBlurArea())
63 friend class DQuickWindowAttachedPrivate;
64 friend class DSGBlendNode;
65};
66
67DQUICK_END_NAMESPACE
68
69#endif // DQUICKBEHINDWINDOWBLUR_P_H
提供一个能使窗口背景模糊的控件.
Definition dquickbehindwindowblur_p.h:19
Definition dquickwindow_p.h:29
Definition dquickwindow.h:50
Definition dquickbehindwindowblur.cpp:19