qpolygon.h
上传用户:detong
上传日期:2022-06-22
资源大小:20675k
文件大小:6k
源码类别:

系统编程

开发平台:

Unix_Linux

  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies).
  4. ** Contact: Qt Software Information (qt-info@nokia.com)
  5. **
  6. ** This file is part of the QtGui module of the Qt Toolkit.
  7. **
  8. ** Commercial Usage
  9. ** Licensees holding valid Qt Commercial licenses may use this file in
  10. ** accordance with the Qt Commercial License Agreement provided with the
  11. ** Software or, alternatively, in accordance with the terms contained in
  12. ** a written agreement between you and Nokia.
  13. **
  14. **
  15. ** GNU General Public License Usage
  16. ** Alternatively, this file may be used under the terms of the GNU
  17. ** General Public License versions 2.0 or 3.0 as published by the Free
  18. ** Software Foundation and appearing in the file LICENSE.GPL included in
  19. ** the packaging of this file.  Please review the following information
  20. ** to ensure GNU General Public Licensing requirements will be met:
  21. ** http://www.fsf.org/licensing/licenses/info/GPLv2.html and
  22. ** http://www.gnu.org/copyleft/gpl.html.  In addition, as a special
  23. ** exception, Nokia gives you certain additional rights. These rights
  24. ** are described in the Nokia Qt GPL Exception version 1.3, included in
  25. ** the file GPL_EXCEPTION.txt in this package.
  26. **
  27. ** Qt for Windows(R) Licensees
  28. ** As a special exception, Nokia, as the sole copyright holder for Qt
  29. ** Designer, grants users of the Qt/Eclipse Integration plug-in the
  30. ** right for the Qt/Eclipse Integration to link to functionality
  31. ** provided by Qt Designer and its related libraries.
  32. **
  33. ** If you are unsure which license is appropriate for your use, please
  34. ** contact the sales department at qt-sales@nokia.com.
  35. **
  36. ****************************************************************************/
  37. #ifndef QPOLYGON_H
  38. #define QPOLYGON_H
  39. #include <QtCore/qvector.h>
  40. #include <QtCore/qpoint.h>
  41. #include <QtCore/qrect.h>
  42. QT_BEGIN_HEADER
  43. QT_BEGIN_NAMESPACE
  44. QT_MODULE(Gui)
  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 QPolygon(int size);
  55.     inline QPolygon(const QPolygon &a) : QVector<QPoint>(a) {}
  56.     inline QPolygon(const QVector<QPoint> &v) : QVector<QPoint>(v) {}
  57.     QPolygon(const QRect &r, bool closed=false);
  58.     QPolygon(int nPoints, const int *points);
  59.     operator QVariant() const;
  60.     void translate(int dx, int dy);
  61.     void translate(const QPoint &offset);
  62.     QRect boundingRect() const;
  63.     void point(int i, int *x, int *y) const;
  64.     QPoint point(int i) const;
  65.     void setPoint(int index, int x, int y);
  66.     void setPoint(int index, const QPoint &p);
  67.     void setPoints(int nPoints, const int *points);
  68.     void setPoints(int nPoints, int firstx, int firsty, ...);
  69.     void putPoints(int index, int nPoints, const int *points);
  70.     void putPoints(int index, int nPoints, int firstx, int firsty, ...);
  71.     void putPoints(int index, int nPoints, const QPolygon & from, int fromIndex=0);
  72.     bool containsPoint(const QPoint &pt, Qt::FillRule fillRule) const;
  73.     QPolygon united(const QPolygon &r) const;
  74.     QPolygon intersected(const QPolygon &r) const;
  75.     QPolygon subtracted(const QPolygon &r) const;
  76. };
  77. inline QPolygon::QPolygon(int asize) : QVector<QPoint>(asize) {}
  78. #ifndef QT_NO_DEBUG_STREAM
  79. Q_GUI_EXPORT QDebug operator<<(QDebug, const QPolygon &);
  80. #endif
  81. /*****************************************************************************
  82.   QPolygon stream functions
  83.  *****************************************************************************/
  84. #ifndef QT_NO_DATASTREAM
  85. Q_GUI_EXPORT QDataStream &operator<<(QDataStream &stream, const QPolygon &polygon);
  86. Q_GUI_EXPORT QDataStream &operator>>(QDataStream &stream, QPolygon &polygon);
  87. #endif
  88. /*****************************************************************************
  89.   Misc. QPolygon functions
  90.  *****************************************************************************/
  91. inline void QPolygon::setPoint(int index, const QPoint &pt)
  92. { (*this)[index] = pt; }
  93. inline void QPolygon::setPoint(int index, int x, int y)
  94. { (*this)[index] = QPoint(x, y); }
  95. inline QPoint QPolygon::point(int index) const
  96. { return at(index); }
  97. inline void QPolygon::translate(const QPoint &offset)
  98. { translate(offset.x(), offset.y()); }
  99. class QRectF;
  100. class Q_GUI_EXPORT QPolygonF : public QVector<QPointF>
  101. {
  102. public:
  103.     inline QPolygonF() {}
  104.     inline ~QPolygonF() {}
  105.     inline QPolygonF(int size);
  106.     inline QPolygonF(const QPolygonF &a) : QVector<QPointF>(a) {}
  107.     inline QPolygonF(const QVector<QPointF> &v) : QVector<QPointF>(v) {}
  108.     QPolygonF(const QRectF &r);
  109.     QPolygonF(const QPolygon &a);
  110.     inline void translate(qreal dx, qreal dy);
  111.     void translate(const QPointF &offset);
  112.     QPolygon toPolygon() const;
  113.     bool isClosed() const { return !isEmpty() && first() == last(); }
  114.     QRectF boundingRect() const;
  115.     bool containsPoint(const QPointF &pt, Qt::FillRule fillRule) const;
  116.     QPolygonF united(const QPolygonF &r) const;
  117.     QPolygonF intersected(const QPolygonF &r) const;
  118.     QPolygonF subtracted(const QPolygonF &r) const;
  119. };
  120. inline QPolygonF::QPolygonF(int asize) : QVector<QPointF>(asize) {}
  121. #ifndef QT_NO_DEBUG_STREAM
  122. Q_GUI_EXPORT QDebug operator<<(QDebug, const QPolygonF &);
  123. #endif
  124. /*****************************************************************************
  125.   QPolygonF stream functions
  126.  *****************************************************************************/
  127. #ifndef QT_NO_DATASTREAM
  128. Q_GUI_EXPORT QDataStream &operator<<(QDataStream &stream, const QPolygonF &array);
  129. Q_GUI_EXPORT QDataStream &operator>>(QDataStream &stream, QPolygonF &array);
  130. #endif
  131. inline void QPolygonF::translate(qreal dx, qreal dy)
  132. { translate(QPointF(dx, dy)); }
  133. QT_END_NAMESPACE
  134. QT_END_HEADER
  135. #endif // QPOLYGON_H