123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377 |
- /****************************************************************************
- **
- ** Copyright (C) 2016 The Qt Company Ltd.
- ** Contact: https://www.qt.io/licensing/
- **
- ** This file is part of the QtGui module of the Qt Toolkit.
- **
- ** $QT_BEGIN_LICENSE:LGPL$
- ** Commercial License Usage
- ** Licensees holding valid commercial Qt licenses may use this file in
- ** accordance with the commercial license agreement provided with the
- ** Software or, alternatively, in accordance with the terms contained in
- ** a written agreement between you and The Qt Company. For licensing terms
- ** and conditions see https://www.qt.io/terms-conditions. For further
- ** information use the contact form at https://www.qt.io/contact-us.
- **
- ** GNU Lesser General Public License Usage
- ** Alternatively, this file may be used under the terms of the GNU Lesser
- ** General Public License version 3 as published by the Free Software
- ** Foundation and appearing in the file LICENSE.LGPL3 included in the
- ** packaging of this file. Please review the following information to
- ** ensure the GNU Lesser General Public License version 3 requirements
- ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
- **
- ** GNU General Public License Usage
- ** Alternatively, this file may be used under the terms of the GNU
- ** General Public License version 2.0 or (at your option) the GNU General
- ** Public license version 3 or any later version approved by the KDE Free
- ** Qt Foundation. The licenses are as published by the Free Software
- ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
- ** included in the packaging of this file. Please review the following
- ** information to ensure the GNU General Public License requirements will
- ** be met: https://www.gnu.org/licenses/gpl-2.0.html and
- ** https://www.gnu.org/licenses/gpl-3.0.html.
- **
- ** $QT_END_LICENSE$
- **
- ****************************************************************************/
- #ifndef QPAINTERPATH_H
- #define QPAINTERPATH_H
- #include <QtGui/qmatrix.h>
- #include <QtCore/qglobal.h>
- #include <QtCore/qrect.h>
- #include <QtCore/qline.h>
- #include <QtCore/qvector.h>
- #include <QtCore/qscopedpointer.h>
- QT_BEGIN_NAMESPACE
- class QFont;
- class QPainterPathPrivate;
- struct QPainterPathPrivateDeleter;
- class QPainterPathData;
- class QPainterPathStrokerPrivate;
- class QPen;
- class QPolygonF;
- class QRegion;
- class QVectorPath;
- class Q_GUI_EXPORT QPainterPath
- {
- public:
- enum ElementType {
- MoveToElement,
- LineToElement,
- CurveToElement,
- CurveToDataElement
- };
- class Element {
- public:
- qreal x;
- qreal y;
- ElementType type;
- bool isMoveTo() const { return type == MoveToElement; }
- bool isLineTo() const { return type == LineToElement; }
- bool isCurveTo() const { return type == CurveToElement; }
- operator QPointF () const { return QPointF(x, y); }
- bool operator==(const Element &e) const { return qFuzzyCompare(x, e.x)
- && qFuzzyCompare(y, e.y) && type == e.type; }
- inline bool operator!=(const Element &e) const { return !operator==(e); }
- };
- QPainterPath() Q_DECL_NOEXCEPT;
- explicit QPainterPath(const QPointF &startPoint);
- QPainterPath(const QPainterPath &other);
- QPainterPath &operator=(const QPainterPath &other);
- #ifdef Q_COMPILER_RVALUE_REFS
- inline QPainterPath &operator=(QPainterPath &&other) Q_DECL_NOEXCEPT
- { qSwap(d_ptr, other.d_ptr); return *this; }
- #endif
- ~QPainterPath();
- inline void swap(QPainterPath &other) Q_DECL_NOEXCEPT { d_ptr.swap(other.d_ptr); }
- void closeSubpath();
- void moveTo(const QPointF &p);
- inline void moveTo(qreal x, qreal y);
- void lineTo(const QPointF &p);
- inline void lineTo(qreal x, qreal y);
- void arcMoveTo(const QRectF &rect, qreal angle);
- inline void arcMoveTo(qreal x, qreal y, qreal w, qreal h, qreal angle);
- void arcTo(const QRectF &rect, qreal startAngle, qreal arcLength);
- inline void arcTo(qreal x, qreal y, qreal w, qreal h, qreal startAngle, qreal arcLength);
- void cubicTo(const QPointF &ctrlPt1, const QPointF &ctrlPt2, const QPointF &endPt);
- inline void cubicTo(qreal ctrlPt1x, qreal ctrlPt1y, qreal ctrlPt2x, qreal ctrlPt2y,
- qreal endPtx, qreal endPty);
- void quadTo(const QPointF &ctrlPt, const QPointF &endPt);
- inline void quadTo(qreal ctrlPtx, qreal ctrlPty, qreal endPtx, qreal endPty);
- QPointF currentPosition() const;
- void addRect(const QRectF &rect);
- inline void addRect(qreal x, qreal y, qreal w, qreal h);
- void addEllipse(const QRectF &rect);
- inline void addEllipse(qreal x, qreal y, qreal w, qreal h);
- inline void addEllipse(const QPointF ¢er, qreal rx, qreal ry);
- void addPolygon(const QPolygonF &polygon);
- void addText(const QPointF &point, const QFont &f, const QString &text);
- inline void addText(qreal x, qreal y, const QFont &f, const QString &text);
- void addPath(const QPainterPath &path);
- void addRegion(const QRegion ®ion);
- void addRoundedRect(const QRectF &rect, qreal xRadius, qreal yRadius,
- Qt::SizeMode mode = Qt::AbsoluteSize);
- inline void addRoundedRect(qreal x, qreal y, qreal w, qreal h,
- qreal xRadius, qreal yRadius,
- Qt::SizeMode mode = Qt::AbsoluteSize);
- void addRoundRect(const QRectF &rect, int xRnd, int yRnd);
- inline void addRoundRect(qreal x, qreal y, qreal w, qreal h,
- int xRnd, int yRnd);
- inline void addRoundRect(const QRectF &rect, int roundness);
- inline void addRoundRect(qreal x, qreal y, qreal w, qreal h,
- int roundness);
- void connectPath(const QPainterPath &path);
- bool contains(const QPointF &pt) const;
- bool contains(const QRectF &rect) const;
- bool intersects(const QRectF &rect) const;
- void translate(qreal dx, qreal dy);
- inline void translate(const QPointF &offset);
- QPainterPath translated(qreal dx, qreal dy) const Q_REQUIRED_RESULT;
- inline QPainterPath translated(const QPointF &offset) const Q_REQUIRED_RESULT;
- QRectF boundingRect() const;
- QRectF controlPointRect() const;
- Qt::FillRule fillRule() const;
- void setFillRule(Qt::FillRule fillRule);
- bool isEmpty() const;
- QPainterPath toReversed() const Q_REQUIRED_RESULT;
- QList<QPolygonF> toSubpathPolygons(const QMatrix &matrix = QMatrix()) const;
- QList<QPolygonF> toFillPolygons(const QMatrix &matrix = QMatrix()) const;
- QPolygonF toFillPolygon(const QMatrix &matrix = QMatrix()) const;
- QList<QPolygonF> toSubpathPolygons(const QTransform &matrix) const;
- QList<QPolygonF> toFillPolygons(const QTransform &matrix) const;
- QPolygonF toFillPolygon(const QTransform &matrix) const;
- int elementCount() const;
- QPainterPath::Element elementAt(int i) const;
- void setElementPositionAt(int i, qreal x, qreal y);
- qreal length() const;
- qreal percentAtLength(qreal t) const;
- QPointF pointAtPercent(qreal t) const;
- qreal angleAtPercent(qreal t) const;
- qreal slopeAtPercent(qreal t) const;
- bool intersects(const QPainterPath &p) const;
- bool contains(const QPainterPath &p) const;
- QPainterPath united(const QPainterPath &r) const Q_REQUIRED_RESULT;
- QPainterPath intersected(const QPainterPath &r) const Q_REQUIRED_RESULT;
- QPainterPath subtracted(const QPainterPath &r) const Q_REQUIRED_RESULT;
- QPainterPath subtractedInverted(const QPainterPath &r) const Q_REQUIRED_RESULT;
- QPainterPath simplified() const Q_REQUIRED_RESULT;
- bool operator==(const QPainterPath &other) const;
- bool operator!=(const QPainterPath &other) const;
- QPainterPath operator&(const QPainterPath &other) const;
- QPainterPath operator|(const QPainterPath &other) const;
- QPainterPath operator+(const QPainterPath &other) const;
- QPainterPath operator-(const QPainterPath &other) const;
- QPainterPath &operator&=(const QPainterPath &other);
- QPainterPath &operator|=(const QPainterPath &other);
- QPainterPath &operator+=(const QPainterPath &other);
- QPainterPath &operator-=(const QPainterPath &other);
- private:
- QScopedPointer<QPainterPathPrivate, QPainterPathPrivateDeleter> d_ptr;
- inline void ensureData() { if (!d_ptr) ensureData_helper(); }
- void ensureData_helper();
- void detach();
- void detach_helper();
- void setDirty(bool);
- void computeBoundingRect() const;
- void computeControlPointRect() const;
- QPainterPathData *d_func() const { return reinterpret_cast<QPainterPathData *>(d_ptr.data()); }
- friend class QPainterPathData;
- friend class QPainterPathStroker;
- friend class QPainterPathStrokerPrivate;
- friend class QMatrix;
- friend class QTransform;
- friend class QVectorPath;
- friend Q_GUI_EXPORT const QVectorPath &qtVectorPathForPath(const QPainterPath &);
- #ifndef QT_NO_DATASTREAM
- friend Q_GUI_EXPORT QDataStream &operator<<(QDataStream &, const QPainterPath &);
- friend Q_GUI_EXPORT QDataStream &operator>>(QDataStream &, QPainterPath &);
- #endif
- };
- Q_DECLARE_SHARED_NOT_MOVABLE_UNTIL_QT6(QPainterPath)
- Q_DECLARE_TYPEINFO(QPainterPath::Element, Q_PRIMITIVE_TYPE);
- #ifndef QT_NO_DATASTREAM
- Q_GUI_EXPORT QDataStream &operator<<(QDataStream &, const QPainterPath &);
- Q_GUI_EXPORT QDataStream &operator>>(QDataStream &, QPainterPath &);
- #endif
- class Q_GUI_EXPORT QPainterPathStroker
- {
- Q_DECLARE_PRIVATE(QPainterPathStroker)
- public:
- QPainterPathStroker();
- explicit QPainterPathStroker(const QPen &pen);
- ~QPainterPathStroker();
- void setWidth(qreal width);
- qreal width() const;
- void setCapStyle(Qt::PenCapStyle style);
- Qt::PenCapStyle capStyle() const;
- void setJoinStyle(Qt::PenJoinStyle style);
- Qt::PenJoinStyle joinStyle() const;
- void setMiterLimit(qreal length);
- qreal miterLimit() const;
- void setCurveThreshold(qreal threshold);
- qreal curveThreshold() const;
- void setDashPattern(Qt::PenStyle);
- void setDashPattern(const QVector<qreal> &dashPattern);
- QVector<qreal> dashPattern() const;
- void setDashOffset(qreal offset);
- qreal dashOffset() const;
- QPainterPath createStroke(const QPainterPath &path) const;
- private:
- Q_DISABLE_COPY(QPainterPathStroker)
- friend class QX11PaintEngine;
- QScopedPointer<QPainterPathStrokerPrivate> d_ptr;
- };
- inline void QPainterPath::moveTo(qreal x, qreal y)
- {
- moveTo(QPointF(x, y));
- }
- inline void QPainterPath::lineTo(qreal x, qreal y)
- {
- lineTo(QPointF(x, y));
- }
- inline void QPainterPath::arcTo(qreal x, qreal y, qreal w, qreal h, qreal startAngle, qreal arcLength)
- {
- arcTo(QRectF(x, y, w, h), startAngle, arcLength);
- }
- inline void QPainterPath::arcMoveTo(qreal x, qreal y, qreal w, qreal h, qreal angle)
- {
- arcMoveTo(QRectF(x, y, w, h), angle);
- }
- inline void QPainterPath::cubicTo(qreal ctrlPt1x, qreal ctrlPt1y, qreal ctrlPt2x, qreal ctrlPt2y,
- qreal endPtx, qreal endPty)
- {
- cubicTo(QPointF(ctrlPt1x, ctrlPt1y), QPointF(ctrlPt2x, ctrlPt2y),
- QPointF(endPtx, endPty));
- }
- inline void QPainterPath::quadTo(qreal ctrlPtx, qreal ctrlPty, qreal endPtx, qreal endPty)
- {
- quadTo(QPointF(ctrlPtx, ctrlPty), QPointF(endPtx, endPty));
- }
- inline void QPainterPath::addEllipse(qreal x, qreal y, qreal w, qreal h)
- {
- addEllipse(QRectF(x, y, w, h));
- }
- inline void QPainterPath::addEllipse(const QPointF ¢er, qreal rx, qreal ry)
- {
- addEllipse(QRectF(center.x() - rx, center.y() - ry, 2 * rx, 2 * ry));
- }
- inline void QPainterPath::addRect(qreal x, qreal y, qreal w, qreal h)
- {
- addRect(QRectF(x, y, w, h));
- }
- inline void QPainterPath::addRoundedRect(qreal x, qreal y, qreal w, qreal h,
- qreal xRadius, qreal yRadius,
- Qt::SizeMode mode)
- {
- addRoundedRect(QRectF(x, y, w, h), xRadius, yRadius, mode);
- }
- inline void QPainterPath::addRoundRect(qreal x, qreal y, qreal w, qreal h,
- int xRnd, int yRnd)
- {
- addRoundRect(QRectF(x, y, w, h), xRnd, yRnd);
- }
- inline void QPainterPath::addRoundRect(const QRectF &rect,
- int roundness)
- {
- int xRnd = roundness;
- int yRnd = roundness;
- if (rect.width() > rect.height())
- xRnd = int(roundness * rect.height()/rect.width());
- else
- yRnd = int(roundness * rect.width()/rect.height());
- addRoundRect(rect, xRnd, yRnd);
- }
- inline void QPainterPath::addRoundRect(qreal x, qreal y, qreal w, qreal h,
- int roundness)
- {
- addRoundRect(QRectF(x, y, w, h), roundness);
- }
- inline void QPainterPath::addText(qreal x, qreal y, const QFont &f, const QString &text)
- {
- addText(QPointF(x, y), f, text);
- }
- inline void QPainterPath::translate(const QPointF &offset)
- { translate(offset.x(), offset.y()); }
- inline QPainterPath QPainterPath::translated(const QPointF &offset) const
- { return translated(offset.x(), offset.y()); }
- #ifndef QT_NO_DEBUG_STREAM
- Q_GUI_EXPORT QDebug operator<<(QDebug, const QPainterPath &);
- #endif
- QT_END_NAMESPACE
- #endif // QPAINTERPATH_H
|