5#ifndef QQUICKSHAPE_P_P_H
6#define QQUICKSHAPE_P_P_H
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>
26#include <QElapsedTimer>
28# include <private/qopenglcontext_p.h>
41 Q_DECLARE_FLAGS(Flags,
Flag)
47 virtual void beginSync(
int totalCount,
bool *countChanged) = 0;
51 virtual void setPath(
int index,
const QQuickPath *path);
52 virtual void setPath(
int index,
const QPainterPath &path, QQuickShapePath::PathHints pathHints = {}) = 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;
63 virtual void setFillRule(
int index, QQuickShapePath::FillRule fillRule) = 0;
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());
87 setPath(index, newPath, hints);
113 Q_DECLARE_PUBLIC(QQuickShapePath)
118 DirtyStrokeColor = 0x02,
119 DirtyStrokeWidth = 0x04,
120 DirtyFillColor = 0x08,
121 DirtyFillRule = 0x10,
124 DirtyFillGradient = 0x80,
125 DirtyFillTransform = 0x100,
126 DirtyFillItem = 0x200,
132 QQuickShapePathPrivate();
134 void _q_pathChanged();
135 void _q_fillGradientChanged();
136 void _q_fillItemDestroyed();
138 void handleSceneChange();
140 void writeToDebugStream(QDebug &debug)
const override;
142 static QQuickShapePathPrivate *get(QQuickShapePath *p) {
return p->d_func(); }
145 QQuickShapeStrokeFillParams sfp;
146 QQuickShapePath::PathHints pathHints;
151 Q_DECLARE_PUBLIC(QQuickShape)
154 QQuickShapePrivate();
155 ~QQuickShapePrivate();
159 QQuickShape::RendererType selectRendererType();
160 void createRenderer();
161 QSGNode *createNode();
164 void _q_shapePathChanged();
165 void setStatus(QQuickShape::Status newStatus);
166 void handleSceneChange(QQuickWindow *w);
168 static QQuickShapePrivate *get(QQuickShape *item) {
return item->d_func(); }
170 static void asyncShapeReady(
void *data);
172 qreal getImplicitWidth()
const override;
173 qreal getImplicitHeight()
const override;
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;
189 bool spChanged =
false;
190 bool rendererChanged =
false;
192 bool enableVendorExts =
false;
193 bool syncTimingActive =
false;
194 qreal triangulationScale = 1.0;
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 ~QQuickAbstractPathRenderer()
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)
QList< qreal > dashPattern
QSGTransform fillTransform
QQuickShapeStrokeFillParams()
QQuickShapeGradient * fillGradient