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
qquickshape_p_p.h
Go to the documentation of this file.
1// Copyright (C) 2016 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
5#ifndef QQUICKSHAPE_P_P_H
6#define QQUICKSHAPE_P_P_H
7
8//
9// W A R N I N G
10// -------------
11//
12// This file is not part of the Qt API. It exists purely as an
13// implementation detail. This header file may change from version to
14// version without notice, or even be removed.
15//
16// We mean it.
17//
18
19#include <QtQuickShapes/private/qquickshapesglobal_p.h>
20#include <QtQuickShapes/private/qquickshape_p.h>
21#include <private/qquickitem_p.h>
22#include <private/qsgtransform_p.h>
23#include <QPainterPath>
24#include <QColor>
25#include <QBrush>
26#include <QElapsedTimer>
27#if QT_CONFIG(opengl)
28# include <private/qopenglcontext_p.h>
29#endif
31
32class QSGPlainTexture;
33class QRhi;
34
36{
37public:
38 enum Flag {
40 };
41 Q_DECLARE_FLAGS(Flags, Flag)
43
45
46 // Gui thread
47 virtual void beginSync(int totalCount, bool *countChanged) = 0;
48 virtual void endSync(bool async) = 0;
49 virtual void setAsyncCallback(void (*)(void *), void *) { }
50 virtual Flags flags() const { return {}; }
51 virtual void setPath(int index, const QQuickPath *path);
52 virtual void setPath(int index, const QPainterPath &path, QQuickShapePath::PathHints pathHints = {}) = 0;
53
54 virtual void setStrokeColor(int index, const QColor &color) = 0;
55 virtual void setStrokeWidth(int index, qreal w) = 0;
56 virtual void setCosmeticStroke(int index, bool c) = 0;
57 virtual void setJoinStyle(int index, QQuickShapePath::JoinStyle joinStyle, int miterLimit) = 0;
58 virtual void setCapStyle(int index, QQuickShapePath::CapStyle capStyle) = 0;
59 virtual void setStrokeStyle(int index, QQuickShapePath::StrokeStyle strokeStyle,
60 qreal dashOffset, const QList<qreal> &dashPattern) = 0;
61
62 virtual void setFillColor(int index, const QColor &color) = 0;
63 virtual void setFillRule(int index, QQuickShapePath::FillRule fillRule) = 0;
64 virtual void setFillGradient(int index, QQuickShapeGradient *gradient) = 0;
65 virtual void setStrokeGradient(int index, QQuickShapeGradient *gradient) = 0;
66 virtual void setFillTextureProvider(int index, QQuickItem *textureProviderItem) = 0;
67 virtual void setFillTransform(int index, const QSGTransform &transform) = 0;
68 virtual void setTriangulationScale(int, qreal) { }
69 virtual void handleSceneChange(QQuickWindow *window) = 0;
70
71 // Render thread, with gui blocked
72 virtual void updateNode() = 0;
73};
74
75Q_DECLARE_OPERATORS_FOR_FLAGS(QQuickAbstractPathRenderer::Flags)
76
77inline void QQuickAbstractPathRenderer::setPath(int index, const QQuickPath *path)
78{
79 QQuickShapePath::PathHints hints;
80 QPainterPath newPath = path ? path->path() : QPainterPath();
81 if (const auto *shapePath = qobject_cast<const QQuickShapePath *>(path)) {
82 hints = shapePath->pathHints();
83 if (shapePath->hasTrim()) {
84 const QQuickShapeTrim *trim = const_cast<QQuickShapePath *>(shapePath)->trim();
85 newPath = path->path().trimmed(trim->start(), trim->end(), trim->offset());
86 }
87 }
88 setPath(index, newPath, hints);
89}
90
112
113class Q_QUICKSHAPES_EXPORT QQuickShapePathPrivate : public QQuickPathPrivate
114{
115 Q_DECLARE_PUBLIC(QQuickShapePath)
116
117public:
118 enum Dirty {
119 DirtyPath = 0x01,
120 DirtyStrokeColor = 0x02,
121 DirtyStrokeWidth = 0x04,
122 DirtyFillColor = 0x08,
123 DirtyFillRule = 0x10,
124 DirtyStyle = 0x20,
125 DirtyDash = 0x40,
126 DirtyFillGradient = 0x80,
127 DirtyFillTransform = 0x100,
128 DirtyFillItem = 0x200,
129 DirtyTrim = 0x400,
130 DirtyStrokeGradient = 0x800,
131
132 DirtyAll = 0xFFF
133 };
134
135 QQuickShapePathPrivate();
136
137 void _q_pathChanged();
138 void _q_fillGradientChanged();
139 void _q_strokeGradientChanged();
140 void _q_fillItemDestroyed();
141
142 void handleSceneChange();
143
144 void writeToDebugStream(QDebug &debug) const override;
145
146 static QQuickShapePathPrivate *get(QQuickShapePath *p) { return p->d_func(); }
147
148 int dirty;
149 QQuickShapeStrokeFillParams sfp;
150 QQuickShapePath::PathHints pathHints;
151};
152
153class Q_QUICKSHAPES_EXPORT QQuickShapePrivate : public QQuickItemPrivate
154{
155 Q_DECLARE_PUBLIC(QQuickShape)
156
157public:
158 QQuickShapePrivate();
159 ~QQuickShapePrivate();
160
161 void init();
162
163 QQuickShape::RendererType selectRendererType();
164 void createRenderer();
165 QSGNode *createNode();
166 void sync();
167
168 void _q_shapePathChanged();
169 void setStatus(QQuickShape::Status newStatus);
170 void handleSceneChange(QQuickWindow *w);
171
172 static QQuickShapePrivate *get(QQuickShape *item) { return item->d_func(); }
173
174 static void asyncShapeReady(void *data);
175
176 qreal getImplicitWidth() const override;
177 qreal getImplicitHeight() const override;
178
179 int effectRefCount;
180 QList<QQuickShapePath *> sp;
181 QElapsedTimer syncTimer;
182 QQuickAbstractPathRenderer *renderer = nullptr;
183 int syncTimingTotalDirty = 0;
184 int syncTimeCounter = 0;
185 QQuickShape::Status status = QQuickShape::Null;
186 QQuickShape::RendererType rendererType = QQuickShape::UnknownRenderer;
187 QQuickShape::RendererType preferredType = QQuickShape::UnknownRenderer;
188 QQuickShape::ContainsMode containsMode = QQuickShape::BoundingRectContains;
189 QQuickShape::FillMode fillMode = QQuickShape::NoResize;
190 QQuickShape::HAlignment horizontalAlignment = QQuickShape::AlignLeft;
191 QQuickShape::VAlignment verticalAlignment = QQuickShape::AlignTop;
192
193 bool spChanged = false;
194 bool rendererChanged = false;
195 bool async = false;
196 bool enableVendorExts = false;
197 bool syncTimingActive = false;
198 qreal triangulationScale = 1.0;
199};
200
201QT_END_NAMESPACE
202
203#endif
virtual void setFillTextureProvider(int index, QQuickItem *textureProviderItem)=0
virtual void beginSync(int totalCount, bool *countChanged)=0
virtual void setStrokeColor(int index, const QColor &color)=0
virtual void setPath(int index, const QPainterPath &path, QQuickShapePath::PathHints pathHints={})=0
virtual void setAsyncCallback(void(*)(void *), void *)
virtual Flags flags() const
virtual void setCapStyle(int index, QQuickShapePath::CapStyle capStyle)=0
virtual void setStrokeStyle(int index, QQuickShapePath::StrokeStyle strokeStyle, qreal dashOffset, const QList< qreal > &dashPattern)=0
virtual void setFillGradient(int index, QQuickShapeGradient *gradient)=0
virtual void setFillColor(int index, const QColor &color)=0
virtual void setCosmeticStroke(int index, bool c)=0
virtual void setPath(int index, const QQuickPath *path)
virtual void setTriangulationScale(int, qreal)
virtual void setFillRule(int index, QQuickShapePath::FillRule fillRule)=0
virtual void setStrokeWidth(int index, qreal w)=0
virtual void setFillTransform(int index, const QSGTransform &transform)=0
virtual void endSync(bool async)=0
virtual void updateNode()=0
virtual void handleSceneChange(QQuickWindow *window)=0
virtual void setStrokeGradient(int index, QQuickShapeGradient *gradient)=0
virtual void setJoinStyle(int index, QQuickShapePath::JoinStyle joinStyle, int miterLimit)=0
Combined button and popup list for selecting options.
QT_BEGIN_NAMESPACE Q_STATIC_LOGGING_CATEGORY(lcSynthesizedIterableAccess, "qt.iterable.synthesized", QtWarningMsg)
static void initResources()
static void vpe_clear(QQmlListProperty< QObject > *property)
static void vpe_append(QQmlListProperty< QObject > *property, QObject *obj)
Q_GHS_KEEP_REFERENCE(QQuickShapes_initializeModule)
QQuickShapeGradient * strokeGradient
QQuickShapeGradient * fillGradient