qmatrix.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 QMATRIX_H
  38. #define QMATRIX_H
  39. #include <QtGui/qpolygon.h>
  40. #include <QtGui/qregion.h>
  41. #include <QtGui/qwindowdefs.h>
  42. #include <QtCore/qline.h>
  43. #include <QtCore/qpoint.h>
  44. #include <QtCore/qrect.h>
  45. QT_BEGIN_HEADER
  46. QT_BEGIN_NAMESPACE
  47. QT_MODULE(Gui)
  48. class QPainterPath;
  49. class QVariant;
  50. class Q_GUI_EXPORT QMatrix // 2D transform matrix
  51. {
  52. public:
  53.     QMatrix();
  54.     QMatrix(qreal m11, qreal m12, qreal m21, qreal m22,
  55.             qreal dx, qreal dy);
  56.     QMatrix(const QMatrix &matrix);
  57.     void setMatrix(qreal m11, qreal m12, qreal m21, qreal m22,
  58.                    qreal dx, qreal dy);
  59.     qreal m11() const { return _m11; }
  60.     qreal m12() const { return _m12; }
  61.     qreal m21() const { return _m21; }
  62.     qreal m22() const { return _m22; }
  63.     qreal dx() const { return _dx; }
  64.     qreal dy() const { return _dy; }
  65.     void map(int x, int y, int *tx, int *ty) const;
  66.     void map(qreal x, qreal y, qreal *tx, qreal *ty) const;
  67.     QRect mapRect(const QRect &) const;
  68.     QRectF mapRect(const QRectF &) const;
  69.     QPoint map(const QPoint &p) const;
  70.     QPointF map(const QPointF&p) const;
  71.     QLine map(const QLine &l) const;
  72.     QLineF map(const QLineF &l) const;
  73.     QPolygonF map(const QPolygonF &a) const;
  74.     QPolygon map(const QPolygon &a) const;
  75.     QRegion map(const QRegion &r) const;
  76.     QPainterPath map(const QPainterPath &p) const;
  77.     QPolygon mapToPolygon(const QRect &r) const;
  78.     void reset();
  79.     inline bool isIdentity() const;
  80.     QMatrix &translate(qreal dx, qreal dy);
  81.     QMatrix &scale(qreal sx, qreal sy);
  82.     QMatrix &shear(qreal sh, qreal sv);
  83.     QMatrix &rotate(qreal a);
  84.     bool isInvertible() const { return !qFuzzyCompare(_m11*_m22 - _m12*_m21 + 1, 1); }
  85.     qreal det() const { return _m11*_m22 - _m12*_m21; }
  86.     QMatrix inverted(bool *invertible = 0) const;
  87.     bool operator==(const QMatrix &) const;
  88.     bool operator!=(const QMatrix &) const;
  89.     QMatrix &operator*=(const QMatrix &);
  90.     QMatrix operator*(const QMatrix &o) const;
  91.     QMatrix &operator=(const QMatrix &);
  92.     operator QVariant() const;
  93. #ifdef QT3_SUPPORT
  94.     inline QT3_SUPPORT QMatrix invert(bool *invertible=0) const { return inverted(invertible); }
  95.     inline QT3_SUPPORT QRect map(const QRect &r) const { return mapRect(r); }
  96.     QT3_SUPPORT QRegion mapToRegion(const QRect &r) const;
  97. #endif
  98. private:
  99.     friend class QTransform;
  100.     qreal _m11, _m12;
  101.     qreal _m21, _m22;
  102.     qreal _dx, _dy;
  103. };
  104. Q_DECLARE_TYPEINFO(QMatrix, Q_MOVABLE_TYPE);
  105. // mathematical semantics
  106. Q_GUI_EXPORT_INLINE QPoint operator*(const QPoint &p, const QMatrix &m)
  107. { return m.map(p); }
  108. Q_GUI_EXPORT_INLINE QPointF operator*(const QPointF &p, const QMatrix &m)
  109. { return m.map(p); }
  110. Q_GUI_EXPORT_INLINE QLineF operator*(const QLineF &l, const QMatrix &m)
  111. { return m.map(l); }
  112. Q_GUI_EXPORT_INLINE QLine operator*(const QLine &l, const QMatrix &m)
  113. { return m.map(l); }
  114. Q_GUI_EXPORT_INLINE QPolygon operator *(const QPolygon &a, const QMatrix &m)
  115. { return m.map(a); }
  116. Q_GUI_EXPORT_INLINE QPolygonF operator *(const QPolygonF &a, const QMatrix &m)
  117. { return m.map(a); }
  118. Q_GUI_EXPORT_INLINE QRegion operator *(const QRegion &r, const QMatrix &m)
  119. { return m.map(r); }
  120. Q_GUI_EXPORT QPainterPath operator *(const QPainterPath &p, const QMatrix &m);
  121. inline bool QMatrix::isIdentity() const
  122. {
  123.     return qFuzzyCompare(_m11, 1) && qFuzzyCompare(_m22, 1) && qFuzzyCompare(_m12 + 1, 1)
  124.            && qFuzzyCompare(_m21 + 1, 1) && qFuzzyCompare(_dx + 1, 1) && qFuzzyCompare(_dy + 1, 1);
  125. }
  126. /*****************************************************************************
  127.  QMatrix stream functions
  128.  *****************************************************************************/
  129. Q_GUI_EXPORT QDataStream &operator<<(QDataStream &, const QMatrix &);
  130. Q_GUI_EXPORT QDataStream &operator>>(QDataStream &, QMatrix &);
  131. #ifndef QT_NO_DEBUG_STREAM
  132. Q_GUI_EXPORT QDebug operator<<(QDebug, const QMatrix &);
  133. #endif
  134. #ifdef QT3_SUPPORT
  135. QT_BEGIN_INCLUDE_NAMESPACE
  136. #include <QtGui/qwmatrix.h>
  137. QT_END_INCLUDE_NAMESPACE
  138. #endif
  139. QT_END_NAMESPACE
  140. QT_END_HEADER
  141. #endif // QMATRIX_H