DtkDeclarative
DTK Declarative module
载入中...
搜索中...
未找到
dquickitemviewport.h
1// SPDX-FileCopyrightText: 2020 - 2022 UnionTech Software Technology Co., Ltd.
2//
3// SPDX-License-Identifier: LGPL-3.0-or-later
4
5#ifndef DQUICKITEMVIEWPORT_H
6#define DQUICKITEMVIEWPORT_H
7
8#include <dtkdeclarative_global.h>
9#include <DObject>
10
11#include <QQuickItem>
12#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
13#include <QPainter>
14#endif
15
16DQUICK_BEGIN_NAMESPACE
17
18class DQuickItemViewportPrivate;
19class DQuickItemViewport : public QQuickItem, public DCORE_NAMESPACE::DObject
20{
21 Q_OBJECT
22 Q_PROPERTY(QQuickItem* sourceItem READ sourceItem WRITE setSourceItem NOTIFY sourceItemChanged)
23 Q_PROPERTY(QRectF sourceRect READ sourceRect WRITE setSourceRect NOTIFY sourceRectChanged)
24 Q_PROPERTY(float radius READ radius WRITE setRadius NOTIFY radiusChanged)
25 Q_PROPERTY(bool fixed READ fixed WRITE setFixed NOTIFY fixedChanged)
26 Q_PROPERTY(bool hideSource READ hideSource WRITE setHideSource NOTIFY hideSourceChanged)
27#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
28 Q_PROPERTY(QPainter::CompositionMode compositionMode READ compositionMode WRITE setCompositionMode NOTIFY compositionModeChanged RESET resetCompositionMode)
29#endif
30 D_DECLARE_PRIVATE(DQuickItemViewport)
31#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
32 QML_NAMED_ELEMENT(ItemViewport)
33#endif
34
35public:
36 explicit DQuickItemViewport(QQuickItem *parent = nullptr);
37 ~DQuickItemViewport() override;
38
39 QQuickItem* sourceItem() const;
40 void setSourceItem(QQuickItem* sourceItem);
41
42 QRectF sourceRect() const;
43 void setSourceRect(const QRectF &sourceRect);
44
45 float radius() const;
46 void setRadius(float radius);
47
48 bool fixed() const;
49 void setFixed(bool newFixed);
50
51 bool hideSource() const;
52 void setHideSource(bool newHideSource);
53
54 bool isTextureProvider() const override { return true; }
55 QSGTextureProvider *textureProvider() const override;
56
57#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
58 QPainter::CompositionMode compositionMode() const;
59 void setCompositionMode(QPainter::CompositionMode newCompositionMode);
60 void resetCompositionMode();
61#endif
62
63Q_SIGNALS:
64 void sourceItemChanged();
65 void sourceRectChanged();
66 void radiusChanged();
67 void fixedChanged();
68 void hideSourceChanged();
69#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
70 void compositionModeChanged();
71#endif
72
73private Q_SLOTS:
74 void invalidateSceneGraph();
75
76protected:
77 void itemChange(ItemChange, const ItemChangeData &) override;
78#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
79 void geometryChanged(const QRectF &newGeometry, const QRectF &oldGeometry) override;
80#else
81 void geometryChange(const QRectF &newGeometry, const QRectF &oldGeometry) override;
82#endif
83 QSGNode *updatePaintNode(QSGNode *old, UpdatePaintNodeData *) override;
84 void componentComplete() override;
85 void releaseResources() override;
86};
87
88DQUICK_END_NAMESPACE
89
90#endif // DQUICKITEMVIEWPORT_H
DQuickItemViewport 类是根据 sourceItem 属性设定的 QQuickItem 作为绘制时的材质来源,这个行为依赖于 QQuickItem::textureProvider 提供...
Definition dquickitemviewport.h:20