qpolygon.h 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2016 The Qt Company Ltd.
  4. ** Contact: https://www.qt.io/licensing/
  5. **
  6. ** This file is part of the QtGui module of the Qt Toolkit.
  7. **
  8. ** $QT_BEGIN_LICENSE:LGPL$
  9. ** Commercial License Usage
  10. ** Licensees holding valid commercial Qt licenses may use this file in
  11. ** accordance with the commercial license agreement provided with the
  12. ** Software or, alternatively, in accordance with the terms contained in
  13. ** a written agreement between you and The Qt Company. For licensing terms
  14. ** and conditions see https://www.qt.io/terms-conditions. For further
  15. ** information use the contact form at https://www.qt.io/contact-us.
  16. **
  17. ** GNU Lesser General Public License Usage
  18. ** Alternatively, this file may be used under the terms of the GNU Lesser
  19. ** General Public License version 3 as published by the Free Software
  20. ** Foundation and appearing in the file LICENSE.LGPL3 included in the
  21. ** packaging of this file. Please review the following information to
  22. ** ensure the GNU Lesser General Public License version 3 requirements
  23. ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
  24. **
  25. ** GNU General Public License Usage
  26. ** Alternatively, this file may be used under the terms of the GNU
  27. ** General Public License version 2.0 or (at your option) the GNU General
  28. ** Public license version 3 or any later version approved by the KDE Free
  29. ** Qt Foundation. The licenses are as published by the Free Software
  30. ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
  31. ** included in the packaging of this file. Please review the following
  32. ** information to ensure the GNU General Public License requirements will
  33. ** be met: https://www.gnu.org/licenses/gpl-2.0.html and
  34. ** https://www.gnu.org/licenses/gpl-3.0.html.
  35. **
  36. ** $QT_END_LICENSE$
  37. **
  38. ****************************************************************************/
  39. #ifndef QPOLYGON_H
  40. #define QPOLYGON_H
  41. #include <QtCore/qvector.h>
  42. #include <QtCore/qpoint.h>
  43. #include <QtCore/qrect.h>
  44. QT_BEGIN_NAMESPACE
  45. class QMatrix;
  46. class QTransform;
  47. class QRect;
  48. class QVariant;
  49. class Q_GUI_EXPORT QPolygon : public QVector<QPoint>
  50. {
  51. public:
  52. inline QPolygon() {}
  53. inline ~QPolygon() {}
  54. inline explicit QPolygon(int size);
  55. inline /*implicit*/ QPolygon(const QVector<QPoint> &v) : QVector<QPoint>(v) {}
  56. #ifdef Q_COMPILER_RVALUE_REFS
  57. /*implicit*/ QPolygon(QVector<QPoint> &&v) Q_DECL_NOTHROW : QVector<QPoint>(std::move(v)) {}
  58. #endif
  59. QPolygon(const QRect &r, bool closed=false);
  60. QPolygon(int nPoints, const int *points);
  61. QPolygon(const QPolygon &other) : QVector<QPoint>(other) {}
  62. #ifdef Q_COMPILER_RVALUE_REFS
  63. QPolygon(QPolygon &&other) Q_DECL_NOTHROW : QVector<QPoint>(std::move(other)) {}
  64. QPolygon &operator=(QPolygon &&other) Q_DECL_NOTHROW { swap(other); return *this; }
  65. #endif
  66. QPolygon &operator=(const QPolygon &other) { QVector<QPoint>::operator=(other); return *this; }
  67. void swap(QPolygon &other) Q_DECL_NOTHROW { QVector<QPoint>::swap(other); } // prevent QVector<QPoint><->QPolygon swaps
  68. operator QVariant() const;
  69. void translate(int dx, int dy);
  70. void translate(const QPoint &offset);
  71. QPolygon translated(int dx, int dy) const Q_REQUIRED_RESULT;
  72. inline QPolygon translated(const QPoint &offset) const Q_REQUIRED_RESULT;
  73. QRect boundingRect() const;
  74. void point(int i, int *x, int *y) const;
  75. QPoint point(int i) const;
  76. void setPoint(int index, int x, int y);
  77. void setPoint(int index, const QPoint &p);
  78. void setPoints(int nPoints, const int *points);
  79. void setPoints(int nPoints, int firstx, int firsty, ...);
  80. void putPoints(int index, int nPoints, const int *points);
  81. void putPoints(int index, int nPoints, int firstx, int firsty, ...);
  82. void putPoints(int index, int nPoints, const QPolygon & from, int fromIndex=0);
  83. bool containsPoint(const QPoint &pt, Qt::FillRule fillRule) const;
  84. QPolygon united(const QPolygon &r) const Q_REQUIRED_RESULT;
  85. QPolygon intersected(const QPolygon &r) const Q_REQUIRED_RESULT;
  86. QPolygon subtracted(const QPolygon &r) const Q_REQUIRED_RESULT;
  87. };
  88. Q_DECLARE_SHARED_NOT_MOVABLE_UNTIL_QT6(QPolygon)
  89. inline QPolygon::QPolygon(int asize) : QVector<QPoint>(asize) {}
  90. #ifndef QT_NO_DEBUG_STREAM
  91. Q_GUI_EXPORT QDebug operator<<(QDebug, const QPolygon &);
  92. #endif
  93. /*****************************************************************************
  94. QPolygon stream functions
  95. *****************************************************************************/
  96. #ifndef QT_NO_DATASTREAM
  97. Q_GUI_EXPORT QDataStream &operator<<(QDataStream &stream, const QPolygon &polygon);
  98. Q_GUI_EXPORT QDataStream &operator>>(QDataStream &stream, QPolygon &polygon);
  99. #endif
  100. /*****************************************************************************
  101. Misc. QPolygon functions
  102. *****************************************************************************/
  103. inline void QPolygon::setPoint(int index, const QPoint &pt)
  104. { (*this)[index] = pt; }
  105. inline void QPolygon::setPoint(int index, int x, int y)
  106. { (*this)[index] = QPoint(x, y); }
  107. inline QPoint QPolygon::point(int index) const
  108. { return at(index); }
  109. inline void QPolygon::translate(const QPoint &offset)
  110. { translate(offset.x(), offset.y()); }
  111. inline QPolygon QPolygon::translated(const QPoint &offset) const
  112. { return translated(offset.x(), offset.y()); }
  113. class QRectF;
  114. class Q_GUI_EXPORT QPolygonF : public QVector<QPointF>
  115. {
  116. public:
  117. inline QPolygonF() {}
  118. inline ~QPolygonF() {}
  119. inline explicit QPolygonF(int size);
  120. inline /*implicit*/ QPolygonF(const QVector<QPointF> &v) : QVector<QPointF>(v) {}
  121. #ifdef Q_COMPILER_RVALUE_REFS
  122. /* implicit */ QPolygonF(QVector<QPointF> &&v) Q_DECL_NOTHROW : QVector<QPointF>(std::move(v)) {}
  123. #endif
  124. QPolygonF(const QRectF &r);
  125. /*implicit*/ QPolygonF(const QPolygon &a);
  126. inline QPolygonF(const QPolygonF &a) : QVector<QPointF>(a) {}
  127. #ifdef Q_COMPILER_RVALUE_REFS
  128. QPolygonF(QPolygonF &&other) Q_DECL_NOTHROW : QVector<QPointF>(std::move(other)) {}
  129. QPolygonF &operator=(QPolygonF &&other) Q_DECL_NOTHROW { swap(other); return *this; }
  130. #endif
  131. QPolygonF &operator=(const QPolygonF &other) { QVector<QPointF>::operator=(other); return *this; }
  132. inline void swap(QPolygonF &other) { QVector<QPointF>::swap(other); } // prevent QVector<QPointF><->QPolygonF swaps
  133. operator QVariant() const;
  134. inline void translate(qreal dx, qreal dy);
  135. void translate(const QPointF &offset);
  136. inline QPolygonF translated(qreal dx, qreal dy) const;
  137. QPolygonF translated(const QPointF &offset) const Q_REQUIRED_RESULT;
  138. QPolygon toPolygon() const;
  139. bool isClosed() const { return !isEmpty() && first() == last(); }
  140. QRectF boundingRect() const;
  141. bool containsPoint(const QPointF &pt, Qt::FillRule fillRule) const;
  142. QPolygonF united(const QPolygonF &r) const Q_REQUIRED_RESULT;
  143. QPolygonF intersected(const QPolygonF &r) const Q_REQUIRED_RESULT;
  144. QPolygonF subtracted(const QPolygonF &r) const Q_REQUIRED_RESULT;
  145. };
  146. Q_DECLARE_SHARED_NOT_MOVABLE_UNTIL_QT6(QPolygonF)
  147. inline QPolygonF::QPolygonF(int asize) : QVector<QPointF>(asize) {}
  148. #ifndef QT_NO_DEBUG_STREAM
  149. Q_GUI_EXPORT QDebug operator<<(QDebug, const QPolygonF &);
  150. #endif
  151. /*****************************************************************************
  152. QPolygonF stream functions
  153. *****************************************************************************/
  154. #ifndef QT_NO_DATASTREAM
  155. Q_GUI_EXPORT QDataStream &operator<<(QDataStream &stream, const QPolygonF &array);
  156. Q_GUI_EXPORT QDataStream &operator>>(QDataStream &stream, QPolygonF &array);
  157. #endif
  158. inline void QPolygonF::translate(qreal dx, qreal dy)
  159. { translate(QPointF(dx, dy)); }
  160. inline QPolygonF QPolygonF::translated(qreal dx, qreal dy) const
  161. { return translated(QPointF(dx, dy)); }
  162. QT_END_NAMESPACE
  163. #endif // QPOLYGON_H