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
qvectorpath_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 QVECTORPATH_P_H
6#define QVECTORPATH_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 <QtGui/private/qtguiglobal_p.h>
20#include <QtGui/qpaintengine.h>
21
22#include <private/qpaintengine_p.h>
23#include <private/qstroker_p.h>
24#include <private/qpainter_p.h>
25
26
27QT_BEGIN_NAMESPACE
28
29
30class QPaintEngineEx;
31
32typedef void (*qvectorpath_cache_cleanup)(QPaintEngineEx *engine, void *data);
33
34struct QRealRect {
36};
37
38class Q_GUI_EXPORT QVectorPath
39{
40public:
41 enum Hint {
42 // Shape hints, in 0x000000ff, access using shape()
43 AreaShapeMask = 0x0001, // shape covers an area
44 NonConvexShapeMask = 0x0002, // shape is not convex
45 CurvedShapeMask = 0x0004, // shape contains curves...
46 LinesShapeMask = 0x0008,
47 RectangleShapeMask = 0x0010,
48 ShapeMask = 0x001f,
49
50 // Shape hints merged into basic shapes..
51 LinesHint = LinesShapeMask,
52 RectangleHint = AreaShapeMask | RectangleShapeMask,
53 EllipseHint = AreaShapeMask | CurvedShapeMask,
54 ConvexPolygonHint = AreaShapeMask,
55 PolygonHint = AreaShapeMask | NonConvexShapeMask,
56 RoundedRectHint = AreaShapeMask | CurvedShapeMask,
57 ArbitraryShapeHint = AreaShapeMask | NonConvexShapeMask | CurvedShapeMask,
58
59 // Other hints
60 IsCachedHint = 0x0100, // Set if the cache hint is set
61 ShouldUseCacheHint = 0x0200, // Set if the path should be cached when possible..
62 ControlPointRect = 0x0400, // Set if the control point rect has been calculated...
63
64 // Shape rendering specifiers...
65 OddEvenFill = 0x1000,
66 WindingFill = 0x2000,
67 ImplicitClose = 0x4000,
68 ExplicitOpen = 0x8000
69 };
70
71 // ### Falcon: introduca a struct XY for points so lars is not so confused...
72 QVectorPath(const qreal *points,
73 int count,
74 const QPainterPath::ElementType *elements = nullptr,
75 uint hints = ArbitraryShapeHint)
76 : m_elements(elements),
77 m_points(points),
78 m_count(count),
79 m_hints(hints)
80 {
81 }
82
83 ~QVectorPath();
84
85 QRectF controlPointRect() const;
86
87 inline Hint shape() const { return (Hint) (m_hints & ShapeMask); }
88 inline bool isConvex() const { return (m_hints & NonConvexShapeMask) == 0; }
89 inline bool isCurved() const { return m_hints & CurvedShapeMask; }
90
91 inline bool isCacheable() const { return m_hints & ShouldUseCacheHint; }
92 inline bool hasImplicitClose() const { return m_hints & ImplicitClose; }
93 inline bool hasExplicitOpen() const { return m_hints & ExplicitOpen; }
94 inline bool hasWindingFill() const { return m_hints & WindingFill; }
95
96 inline void makeCacheable() const { m_hints |= ShouldUseCacheHint; m_cache = nullptr; }
97 inline uint hints() const { return m_hints; }
98
99 inline const QPainterPath::ElementType *elements() const { return m_elements; }
100 inline const qreal *points() const { return m_points; }
101 inline bool isEmpty() const { return m_points == nullptr; }
102
103 inline int elementCount() const { return m_count; }
104 inline const QPainterPath convertToPainterPath() const;
105
106 static inline uint polygonFlags(QPaintEngine::PolygonDrawMode mode)
107 {
108 switch (mode) {
109 case QPaintEngine::ConvexMode: return ConvexPolygonHint | ImplicitClose;
110 case QPaintEngine::OddEvenMode: return PolygonHint | OddEvenFill | ImplicitClose;
111 case QPaintEngine::WindingMode: return PolygonHint | WindingFill | ImplicitClose;
112 case QPaintEngine::PolylineMode: return PolygonHint | ExplicitOpen;
113 default: return 0;
114 }
115 }
116
117 struct CacheEntry {
118 QPaintEngineEx *engine;
119 void *data;
120 qvectorpath_cache_cleanup cleanup;
121 CacheEntry *next;
122 };
123
124 CacheEntry *addCacheData(QPaintEngineEx *engine, void *data, qvectorpath_cache_cleanup cleanup) const;
125 inline CacheEntry *lookupCacheData(QPaintEngineEx *engine) const {
126 Q_ASSERT(m_hints & ShouldUseCacheHint);
127 CacheEntry *e = m_cache;
128 while (e) {
129 if (e->engine == engine)
130 return e;
131 e = e->next;
132 }
133 return nullptr;
134 }
135
136 template <typename T> static inline bool isRect(const T *pts, int elementCount) {
137 return (elementCount == 5 // 5-point polygon, check for closed rect
138 && pts[0] == pts[8] && pts[1] == pts[9] // last point == first point
139 && pts[0] == pts[6] && pts[2] == pts[4] // x values equal
140 && pts[1] == pts[3] && pts[5] == pts[7] // y values equal...
141 && pts[0] < pts[4] && pts[1] < pts[5]
142 ) ||
143 (elementCount == 4 // 4-point polygon, check for unclosed rect
144 && pts[0] == pts[6] && pts[2] == pts[4] // x values equal
145 && pts[1] == pts[3] && pts[5] == pts[7] // y values equal...
146 && pts[0] < pts[4] && pts[1] < pts[5]
147 );
148 }
149
150 inline bool isRect() const
151 {
152 const QPainterPath::ElementType * const types = elements();
153
154 return (shape() == QVectorPath::RectangleHint)
155 || (isRect(points(), elementCount())
156 && (!types || (types[0] == QPainterPath::MoveToElement
157 && types[1] == QPainterPath::LineToElement
158 && types[2] == QPainterPath::LineToElement
159 && types[3] == QPainterPath::LineToElement)));
160 }
161
162
163private:
164 Q_DISABLE_COPY_MOVE(QVectorPath)
165
166 const QPainterPath::ElementType *m_elements;
167 const qreal *m_points;
168 const int m_count;
169
170 mutable uint m_hints;
171 mutable QRealRect m_cp_rect;
172
173 mutable CacheEntry *m_cache;
174};
175
176Q_GUI_EXPORT const QVectorPath &qtVectorPathForPath(const QPainterPath &path);
177
178QT_END_NAMESPACE
179
180#endif
void(* qvectorpath_cache_cleanup)(QPaintEngineEx *engine, void *data)