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

系统编程

开发平台:

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 QtCore 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 QLINE_H
  38. #define QLINE_H
  39. #include <QtCore/qpoint.h>
  40. QT_BEGIN_HEADER
  41. QT_BEGIN_NAMESPACE
  42. QT_MODULE(Core)
  43. /*******************************************************************************
  44.  * class QLine
  45.  *******************************************************************************/
  46. class Q_CORE_EXPORT QLine
  47. {
  48. public:
  49.     inline QLine();
  50.     inline QLine(const QPoint &pt1, const QPoint &pt2);
  51.     inline QLine(int x1, int y1, int x2, int y2);
  52.     inline bool isNull() const;
  53.     inline QPoint p1() const;
  54.     inline QPoint p2() const;
  55.     inline int x1() const;
  56.     inline int y1() const;
  57.     inline int x2() const;
  58.     inline int y2() const;
  59.     inline int dx() const;
  60.     inline int dy() const;
  61.     inline void translate(const QPoint &p);
  62.     inline void translate(int dx, int dy);
  63.     inline QLine translated(const QPoint &p) const;
  64.     inline QLine translated(int dx, int dy) const;
  65.     inline void setP1(const QPoint &p1);
  66.     inline void setP2(const QPoint &p2);
  67.     inline void setPoints(const QPoint &p1, const QPoint &p2);
  68.     inline void setLine(int x1, int y1, int x2, int y2);
  69.     inline bool operator==(const QLine &d) const;
  70.     inline bool operator!=(const QLine &d) const { return !(*this == d); }
  71. private:
  72.     QPoint pt1, pt2;
  73. };
  74. Q_DECLARE_TYPEINFO(QLine, Q_MOVABLE_TYPE);
  75. /*******************************************************************************
  76.  * class QLine inline members
  77.  *******************************************************************************/
  78. inline QLine::QLine() { }
  79. inline QLine::QLine(const QPoint &pt1_, const QPoint &pt2_) : pt1(pt1_), pt2(pt2_) { }
  80. inline QLine::QLine(int x1pos, int y1pos, int x2pos, int y2pos) : pt1(QPoint(x1pos, y1pos)), pt2(QPoint(x2pos, y2pos)) { }
  81. inline bool QLine::isNull() const
  82. {
  83.     return pt1 == pt2;
  84. }
  85. inline int QLine::x1() const
  86. {
  87.     return pt1.x();
  88. }
  89. inline int QLine::y1() const
  90. {
  91.     return pt1.y();
  92. }
  93. inline int QLine::x2() const
  94. {
  95.     return pt2.x();
  96. }
  97. inline int QLine::y2() const
  98. {
  99.     return pt2.y();
  100. }
  101. inline QPoint QLine::p1() const
  102. {
  103.     return pt1;
  104. }
  105. inline QPoint QLine::p2() const
  106. {
  107.     return pt2;
  108. }
  109. inline int QLine::dx() const
  110. {
  111.     return pt2.x() - pt1.x();
  112. }
  113. inline int QLine::dy() const
  114. {
  115.     return pt2.y() - pt1.y();
  116. }
  117. inline void QLine::translate(const QPoint &point)
  118. {
  119.     pt1 += point;
  120.     pt2 += point;
  121. }
  122. inline void QLine::translate(int adx, int ady)
  123. {
  124.     this->translate(QPoint(adx, ady));
  125. }
  126. inline QLine QLine::translated(const QPoint &p) const
  127. {
  128.     return QLine(pt1 + p, pt2 + p);
  129. }
  130. inline QLine QLine::translated(int adx, int ady) const
  131. {
  132.     return translated(QPoint(adx, ady));
  133. }
  134. inline void QLine::setP1(const QPoint &aP1)
  135. {
  136.     pt1 = aP1;
  137. }
  138. inline void QLine::setP2(const QPoint &aP2)
  139. {
  140.     pt2 = aP2;
  141. }
  142. inline void QLine::setPoints(const QPoint &aP1, const QPoint &aP2)
  143. {
  144.     pt1 = aP1;
  145.     pt2 = aP2;
  146. }
  147. inline void QLine::setLine(int aX1, int aY1, int aX2, int aY2)
  148. {
  149.     pt1 = QPoint(aX1, aY1);
  150.     pt2 = QPoint(aX2, aY2);
  151. }
  152. inline bool QLine::operator==(const QLine &d) const
  153. {
  154.     return pt1 == d.pt1 && pt2 == d.pt2;
  155. }
  156. #ifndef QT_NO_DEBUG_STREAM
  157. Q_CORE_EXPORT QDebug operator<<(QDebug d, const QLine &p);
  158. #endif
  159. #ifndef QT_NO_DATASTREAM
  160. Q_CORE_EXPORT QDataStream &operator<<(QDataStream &, const QLine &);
  161. Q_CORE_EXPORT QDataStream &operator>>(QDataStream &, QLine &);
  162. #endif
  163. /*******************************************************************************
  164.  * class QLineF
  165.  *******************************************************************************/
  166. class Q_CORE_EXPORT QLineF {
  167. public:
  168.     enum IntersectType { NoIntersection, BoundedIntersection, UnboundedIntersection };
  169.     inline QLineF();
  170.     inline QLineF(const QPointF &pt1, const QPointF &pt2);
  171.     inline QLineF(qreal x1, qreal y1, qreal x2, qreal y2);
  172.     inline QLineF(const QLine &line) : pt1(line.p1()), pt2(line.p2()) { }
  173.     static QLineF fromPolar(qreal length, qreal angle);
  174.     bool isNull() const;
  175.     inline QPointF p1() const;
  176.     inline QPointF p2() const;
  177.     inline qreal x1() const;
  178.     inline qreal y1() const;
  179.     inline qreal x2() const;
  180.     inline qreal y2() const;
  181.     inline qreal dx() const;
  182.     inline qreal dy() const;
  183.     qreal length() const;
  184.     void setLength(qreal len);
  185.     qreal angle() const;
  186.     void setAngle(qreal angle);
  187.     qreal angleTo(const QLineF &l) const;
  188.     QLineF unitVector() const;
  189.     QLineF normalVector() const;
  190.     // ### Qt 5: rename intersects() or intersection() and rename IntersectType IntersectionType
  191.     IntersectType intersect(const QLineF &l, QPointF *intersectionPoint) const;
  192.     qreal angle(const QLineF &l) const;
  193.     QPointF pointAt(qreal t) const;
  194.     inline void translate(const QPointF &p);
  195.     inline void translate(qreal dx, qreal dy);
  196.     inline QLineF translated(const QPointF &p) const;
  197.     inline QLineF translated(qreal dx, qreal dy) const;
  198.     inline void setP1(const QPointF &p1);
  199.     inline void setP2(const QPointF &p2);
  200.     inline void setPoints(const QPointF &p1, const QPointF &p2);
  201.     inline void setLine(qreal x1, qreal y1, qreal x2, qreal y2);
  202.     inline bool operator==(const QLineF &d) const;
  203.     inline bool operator!=(const QLineF &d) const { return !(*this == d); }
  204.     QLine toLine() const;
  205. private:
  206.     QPointF pt1, pt2;
  207. };
  208. Q_DECLARE_TYPEINFO(QLineF, Q_MOVABLE_TYPE);
  209. /*******************************************************************************
  210.  * class QLineF inline members
  211.  *******************************************************************************/
  212. inline QLineF::QLineF()
  213. {
  214. }
  215. inline QLineF::QLineF(const QPointF &apt1, const QPointF &apt2)
  216.     : pt1(apt1), pt2(apt2)
  217. {
  218. }
  219. inline QLineF::QLineF(qreal x1pos, qreal y1pos, qreal x2pos, qreal y2pos)
  220.     : pt1(x1pos, y1pos), pt2(x2pos, y2pos)
  221. {
  222. }
  223. inline qreal QLineF::x1() const
  224. {
  225.     return pt1.x();
  226. }
  227. inline qreal QLineF::y1() const
  228. {
  229.     return pt1.y();
  230. }
  231. inline qreal QLineF::x2() const
  232. {
  233.     return pt2.x();
  234. }
  235. inline qreal QLineF::y2() const
  236. {
  237.     return pt2.y();
  238. }
  239. inline QPointF QLineF::p1() const
  240. {
  241.     return pt1;
  242. }
  243. inline QPointF QLineF::p2() const
  244. {
  245.     return pt2;
  246. }
  247. inline qreal QLineF::dx() const
  248. {
  249.     return pt2.x() - pt1.x();
  250. }
  251. inline qreal QLineF::dy() const
  252. {
  253.     return pt2.y() - pt1.y();
  254. }
  255. inline QLineF QLineF::normalVector() const
  256. {
  257.     return QLineF(p1(), p1() + QPointF(dy(), -dx()));
  258. }
  259. inline void QLineF::translate(const QPointF &point)
  260. {
  261.     pt1 += point;
  262.     pt2 += point;
  263. }
  264. inline void QLineF::translate(qreal adx, qreal ady)
  265. {
  266.     this->translate(QPointF(adx, ady));
  267. }
  268. inline QLineF QLineF::translated(const QPointF &p) const
  269. {
  270.     return QLineF(pt1 + p, pt2 + p);
  271. }
  272. inline QLineF QLineF::translated(qreal adx, qreal ady) const
  273. {
  274.     return translated(QPointF(adx, ady));
  275. }
  276. inline void QLineF::setLength(qreal len)
  277. {
  278.     if (isNull())
  279.         return;
  280.     QLineF v = unitVector();
  281.     pt2 = QPointF(pt1.x() + v.dx() * len, pt1.y() + v.dy() * len);
  282. }
  283. inline QPointF QLineF::pointAt(qreal t) const
  284. {
  285.     qreal vx = pt2.x() - pt1.x();
  286.     qreal vy = pt2.y() - pt1.y();
  287.     return QPointF(pt1.x() + vx * t, pt1.y() + vy * t);
  288. }
  289. inline QLine QLineF::toLine() const
  290. {
  291.     return QLine(pt1.toPoint(), pt2.toPoint());
  292. }
  293. inline void QLineF::setP1(const QPointF &aP1)
  294. {
  295.     pt1 = aP1;
  296. }
  297. inline void QLineF::setP2(const QPointF &aP2)
  298. {
  299.     pt2 = aP2;
  300. }
  301. inline void QLineF::setPoints(const QPointF &aP1, const QPointF &aP2)
  302. {
  303.     pt1 = aP1;
  304.     pt2 = aP2;
  305. }
  306. inline void QLineF::setLine(qreal aX1, qreal aY1, qreal aX2, qreal aY2)
  307. {
  308.     pt1 = QPointF(aX1, aY1);
  309.     pt2 = QPointF(aX2, aY2);
  310. }
  311. inline bool QLineF::operator==(const QLineF &d) const
  312. {
  313.     return pt1 == d.pt1 && pt2 == d.pt2;
  314. }
  315. #ifndef QT_NO_DEBUG_STREAM
  316. Q_CORE_EXPORT QDebug operator<<(QDebug d, const QLineF &p);
  317. #endif
  318. #ifndef QT_NO_DATASTREAM
  319. Q_CORE_EXPORT QDataStream &operator<<(QDataStream &, const QLineF &);
  320. Q_CORE_EXPORT QDataStream &operator>>(QDataStream &, QLineF &);
  321. #endif
  322. QT_END_NAMESPACE
  323. QT_END_HEADER
  324. #endif // QLINE_H