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 setFillTextureProvider(int index, QQuickItem *textureProviderItem) = 0;
66 virtual void setFillTransform(int index, const QSGTransform &transform) = 0;
67 virtual void setTriangulationScale(int, qreal) { }
68 virtual void handleSceneChange(QQuickWindow *window) = 0;
69
70 // Render thread, with gui blocked
71 virtual void updateNode() = 0;
72};
73
74Q_DECLARE_OPERATORS_FOR_FLAGS(QQuickAbstractPathRenderer::Flags)
75
76inline void QQuickAbstractPathRenderer::setPath(int index, const QQuickPath *path)
77{
78 QQuickShapePath::PathHints hints;
79 QPainterPath newPath = path ? path->path() : QPainterPath();
80 if (const auto *shapePath = qobject_cast<const QQuickShapePath *>(path)) {
81 hints = shapePath->pathHints();
82 if (shapePath->hasTrim()) {
83 const QQuickShapeTrim *trim = const_cast<QQuickShapePath *>(shapePath)->trim();
84 newPath = path->path().trimmed(trim->start(), trim->end(), trim->offset());
85 }
86 }
87 setPath(index, newPath, hints);
88}
89
110
111class Q_QUICKSHAPES_EXPORT QQuickShapePathPrivate : public QQuickPathPrivate
112{
113 Q_DECLARE_PUBLIC(QQuickShapePath)
114
115public:
116 enum Dirty {
117 DirtyPath = 0x01,
118 DirtyStrokeColor = 0x02,
119 DirtyStrokeWidth = 0x04,
120 DirtyFillColor = 0x08,
121 DirtyFillRule = 0x10,
122 DirtyStyle = 0x20,
123 DirtyDash = 0x40,
124 DirtyFillGradient = 0x80,
125 DirtyFillTransform = 0x100,
126 DirtyFillItem = 0x200,
127 DirtyTrim = 0x400,
128
129 DirtyAll = 0x7FF
130 };
131
132 QQuickShapePathPrivate();
133
134 void _q_pathChanged();
135 void _q_fillGradientChanged();
136 void _q_fillItemDestroyed();
137
138 void handleSceneChange();
139
140 void writeToDebugStream(QDebug &debug) const override;
141
142 static QQuickShapePathPrivate *get(QQuickShapePath *p) { return p->d_func(); }
143
144 int dirty;
145 QQuickShapeStrokeFillParams sfp;
146 QQuickShapePath::PathHints pathHints;
147};
148
149class Q_QUICKSHAPES_EXPORT QQuickShapePrivate : public QQuickItemPrivate
150{
151 Q_DECLARE_PUBLIC(QQuickShape)
152
153public:
154 QQuickShapePrivate();
155 ~QQuickShapePrivate();
156
157 void init();
158
159 QQuickShape::RendererType selectRendererType();
160 void createRenderer();
161 QSGNode *createNode();
162 void sync();
163
164 void _q_shapePathChanged();
165 void setStatus(QQuickShape::Status newStatus);
166 void handleSceneChange(QQuickWindow *w);
167
168 static QQuickShapePrivate *get(QQuickShape *item) { return item->d_func(); }
169
170 static void asyncShapeReady(void *data);
171
172 qreal getImplicitWidth() const override;
173 qreal getImplicitHeight() const override;
174
175 int effectRefCount;
176 QList<QQuickShapePath *> sp;
177 QElapsedTimer syncTimer;
178 QQuickAbstractPathRenderer *renderer = nullptr;
179 int syncTimingTotalDirty = 0;
180 int syncTimeCounter = 0;
181 QQuickShape::Status status = QQuickShape::Null;
182 QQuickShape::RendererType rendererType = QQuickShape::UnknownRenderer;
183 QQuickShape::RendererType preferredType = QQuickShape::UnknownRenderer;
184 QQuickShape::ContainsMode containsMode = QQuickShape::BoundingRectContains;
185 QQuickShape::FillMode fillMode = QQuickShape::NoResize;
186 QQuickShape::HAlignment horizontalAlignment = QQuickShape::AlignLeft;
187 QQuickShape::VAlignment verticalAlignment = QQuickShape::AlignTop;
188
189 bool spChanged = false;
190 bool rendererChanged = false;
191 bool async = false;
192 bool enableVendorExts = false;
193 bool syncTimingActive = false;
194 qreal triangulationScale = 1.0;
195};
196
197QT_END_NAMESPACE
198
199#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 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 * fillGradient