#include <QtCore/qsize.h>
#include <QtCore/qpoint.h>
Go to the source code of this file.
|
class | QRect |
| The QRect class defines a rectangle in the plane using integer precision. More...
|
|
class | QRectF |
| The QRectF class defines a rectangle in the plane using floating point precision. More...
|
|
|
Q_CORE_EXPORT_INLINE bool | operator!= (const QRect &, const QRect &) |
|
Q_CORE_EXPORT_INLINE bool | operator!= (const QRectF &, const QRectF &) |
|
Q_CORE_EXPORT QDataStream & | operator<< (QDataStream &, const QRect &) |
|
Q_CORE_EXPORT QDebug | operator<< (QDebug, const QRect &) |
|
Q_CORE_EXPORT QDataStream & | operator<< (QDataStream &, const QRectF &) |
|
Q_CORE_EXPORT QDebug | operator<< (QDebug, const QRectF &) |
|
Q_CORE_EXPORT_INLINE bool | operator== (const QRect &, const QRect &) |
|
Q_CORE_EXPORT_INLINE bool | operator== (const QRectF &, const QRectF &) |
|
Q_CORE_EXPORT QDataStream & | operator>> (QDataStream &, QRect &) |
|
Q_CORE_EXPORT QDataStream & | operator>> (QDataStream &, QRectF &) |
|
| Q_DECLARE_TYPEINFO (QRect, Q_MOVABLE_TYPE) |
|
| Q_DECLARE_TYPEINFO (QRectF, Q_MOVABLE_TYPE) |
|
◆ operator!=() [1/2]
bool operator!= |
( |
const QRect & |
r1, |
|
|
const QRect & |
r2 |
|
) |
| |
|
inline |
◆ operator!=() [2/2]
Definition at line 839 of file qrect.h.
bool qFuzzyCompare(const QMatrix &m1, const QMatrix &m2)
The qFuzzyCompare function is for comparing two matrices using a fuzziness factor.
◆ operator<<() [1/4]
Definition at line 1512 of file qrect.cpp.
1514 if (s.version() == 1)
◆ operator<<() [2/4]
Definition at line 1555 of file qrect.cpp.
1556 dbg.nospace() <<
"QRect(" << r.x() <<
',' << r.y() <<
' ' 1557 << r.width() <<
'x' << r.height() <<
')';
◆ operator<<() [3/4]
Definition at line 2879 of file qrect.cpp.
2881 s << double(r.x()) <<
double(r.y()) <<
double(r.width()) <<
double(r.height());
◆ operator<<() [4/4]
Definition at line 2914 of file qrect.cpp.
2915 dbg.nospace() <<
"QRectF(" << r.x() <<
',' << r.y() <<
' ' 2916 << r.width() <<
'x' << r.height() <<
')';
◆ operator==() [1/2]
bool operator== |
( |
const QRect & |
r1, |
|
|
const QRect & |
r2 |
|
) |
| |
|
inline |
◆ operator==() [2/2]
Definition at line 833 of file qrect.h.
bool qFuzzyCompare(const QMatrix &m1, const QMatrix &m2)
The qFuzzyCompare function is for comparing two matrices using a fuzziness factor.
◆ operator>>() [1/2]
Definition at line 1536 of file qrect.cpp.
1538 if (s.version() == 1) {
1540 s >> x1; s >> y1; s >> x2; s >> y2;
1541 r.setCoords(x1, y1, x2, y2);
1545 s >> x1; s >> y1; s >> x2; s >> y2;
1546 r.setCoords(x1, y1, x2, y2);
◆ operator>>() [2/2]
◆ Q_DECLARE_TYPEINFO() [1/2]
◆ Q_DECLARE_TYPEINFO() [2/2]