qregion.h 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  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 QREGION_H
  40. #define QREGION_H
  41. #include <QtCore/qatomic.h>
  42. #include <QtCore/qrect.h>
  43. #include <QtGui/qwindowdefs.h>
  44. #ifndef QT_NO_DATASTREAM
  45. #include <QtCore/qdatastream.h>
  46. #endif
  47. QT_BEGIN_NAMESPACE
  48. template <class T> class QVector;
  49. class QVariant;
  50. struct QRegionPrivate;
  51. class QBitmap;
  52. class Q_GUI_EXPORT QRegion
  53. {
  54. public:
  55. enum RegionType { Rectangle, Ellipse };
  56. QRegion();
  57. QRegion(int x, int y, int w, int h, RegionType t = Rectangle);
  58. QRegion(const QRect &r, RegionType t = Rectangle);
  59. QRegion(const QPolygon &pa, Qt::FillRule fillRule = Qt::OddEvenFill);
  60. QRegion(const QRegion &region);
  61. QRegion(QRegion &&other) Q_DECL_NOTHROW
  62. : d(other.d) { other.d = const_cast<QRegionData*>(&shared_empty); }
  63. QRegion(const QBitmap &bitmap);
  64. ~QRegion();
  65. QRegion &operator=(const QRegion &);
  66. #ifdef Q_COMPILER_RVALUE_REFS
  67. inline QRegion &operator=(QRegion &&other) Q_DECL_NOEXCEPT
  68. { qSwap(d, other.d); return *this; }
  69. #endif
  70. inline void swap(QRegion &other) Q_DECL_NOEXCEPT { qSwap(d, other.d); }
  71. bool isEmpty() const;
  72. bool isNull() const;
  73. bool contains(const QPoint &p) const;
  74. bool contains(const QRect &r) const;
  75. void translate(int dx, int dy);
  76. inline void translate(const QPoint &p) { translate(p.x(), p.y()); }
  77. QRegion translated(int dx, int dy) const Q_REQUIRED_RESULT;
  78. inline QRegion translated(const QPoint &p) const Q_REQUIRED_RESULT { return translated(p.x(), p.y()); }
  79. QRegion united(const QRegion &r) const Q_REQUIRED_RESULT;
  80. QRegion united(const QRect &r) const Q_REQUIRED_RESULT;
  81. QRegion intersected(const QRegion &r) const Q_REQUIRED_RESULT;
  82. QRegion intersected(const QRect &r) const Q_REQUIRED_RESULT;
  83. QRegion subtracted(const QRegion &r) const Q_REQUIRED_RESULT;
  84. QRegion xored(const QRegion &r) const Q_REQUIRED_RESULT;
  85. #if QT_DEPRECATED_SINCE(5, 0)
  86. inline QT_DEPRECATED QRegion unite(const QRegion &r) const Q_REQUIRED_RESULT { return united(r); }
  87. inline QT_DEPRECATED QRegion unite(const QRect &r) const Q_REQUIRED_RESULT { return united(r); }
  88. inline QT_DEPRECATED QRegion intersect(const QRegion &r) const Q_REQUIRED_RESULT { return intersected(r); }
  89. inline QT_DEPRECATED QRegion intersect(const QRect &r) const Q_REQUIRED_RESULT { return intersected(r); }
  90. inline QT_DEPRECATED QRegion subtract(const QRegion &r) const Q_REQUIRED_RESULT { return subtracted(r); }
  91. inline QT_DEPRECATED QRegion eor(const QRegion &r) const Q_REQUIRED_RESULT { return xored(r); }
  92. #endif
  93. bool intersects(const QRegion &r) const;
  94. bool intersects(const QRect &r) const;
  95. QRect boundingRect() const;
  96. QVector<QRect> rects() const;
  97. void setRects(const QRect *rect, int num);
  98. int rectCount() const;
  99. #ifdef Q_COMPILER_MANGLES_RETURN_TYPE
  100. // ### Qt 6: remove these, they're kept for MSVC compat
  101. const QRegion operator|(const QRegion &r) const;
  102. const QRegion operator+(const QRegion &r) const;
  103. const QRegion operator+(const QRect &r) const;
  104. const QRegion operator&(const QRegion &r) const;
  105. const QRegion operator&(const QRect &r) const;
  106. const QRegion operator-(const QRegion &r) const;
  107. const QRegion operator^(const QRegion &r) const;
  108. #else
  109. QRegion operator|(const QRegion &r) const;
  110. QRegion operator+(const QRegion &r) const;
  111. QRegion operator+(const QRect &r) const;
  112. QRegion operator&(const QRegion &r) const;
  113. QRegion operator&(const QRect &r) const;
  114. QRegion operator-(const QRegion &r) const;
  115. QRegion operator^(const QRegion &r) const;
  116. #endif // Q_COMPILER_MANGLES_RETURN_TYPE
  117. QRegion& operator|=(const QRegion &r);
  118. QRegion& operator+=(const QRegion &r);
  119. QRegion& operator+=(const QRect &r);
  120. QRegion& operator&=(const QRegion &r);
  121. QRegion& operator&=(const QRect &r);
  122. QRegion& operator-=(const QRegion &r);
  123. QRegion& operator^=(const QRegion &r);
  124. bool operator==(const QRegion &r) const;
  125. inline bool operator!=(const QRegion &r) const { return !(operator==(r)); }
  126. operator QVariant() const;
  127. #ifndef QT_NO_DATASTREAM
  128. friend Q_GUI_EXPORT QDataStream &operator<<(QDataStream &, const QRegion &);
  129. friend Q_GUI_EXPORT QDataStream &operator>>(QDataStream &, QRegion &);
  130. #endif
  131. private:
  132. QRegion copy() const; // helper of detach.
  133. void detach();
  134. Q_GUI_EXPORT
  135. friend bool qt_region_strictContains(const QRegion &region,
  136. const QRect &rect);
  137. friend struct QRegionPrivate;
  138. #ifndef QT_NO_DATASTREAM
  139. void exec(const QByteArray &ba, int ver = 0, QDataStream::ByteOrder byteOrder = QDataStream::BigEndian);
  140. #endif
  141. struct QRegionData {
  142. QtPrivate::RefCount ref;
  143. QRegionPrivate *qt_rgn;
  144. };
  145. struct QRegionData *d;
  146. static const struct QRegionData shared_empty;
  147. static void cleanUp(QRegionData *x);
  148. };
  149. /*****************************************************************************
  150. QRegion stream functions
  151. *****************************************************************************/
  152. #ifndef QT_NO_DATASTREAM
  153. Q_GUI_EXPORT QDataStream &operator<<(QDataStream &, const QRegion &);
  154. Q_GUI_EXPORT QDataStream &operator>>(QDataStream &, QRegion &);
  155. #endif
  156. #ifndef QT_NO_DEBUG_STREAM
  157. Q_GUI_EXPORT QDebug operator<<(QDebug, const QRegion &);
  158. #endif
  159. QT_END_NAMESPACE
  160. #endif // QREGION_H