QtCore/qrect.h File Reference
|
| Q_DECLARE_TYPEINFO (QRect, Q_MOVABLE_TYPE) |
|
Q_CORE_EXPORT_INLINE bool | operator== (const QRect &, const QRect &) |
|
Q_CORE_EXPORT_INLINE bool | operator!= (const QRect &, const QRect &) |
|
Q_CORE_EXPORT QDataStream & | operator<< (QDataStream &, const QRect &) |
|
Q_CORE_EXPORT QDataStream & | operator>> (QDataStream &, QRect &) |
|
Q_CORE_EXPORT QDebug | operator<< (QDebug, const QRect &) |
|
| Q_DECLARE_TYPEINFO (QRectF, Q_MOVABLE_TYPE) |
|
Q_CORE_EXPORT_INLINE bool | operator== (const QRectF &, const QRectF &) |
|
Q_CORE_EXPORT_INLINE bool | operator!= (const QRectF &, const QRectF &) |
|
Q_CORE_EXPORT QDataStream & | operator<< (QDataStream &, const QRectF &) |
|
Q_CORE_EXPORT QDataStream & | operator>> (QDataStream &, QRectF &) |
|
Q_CORE_EXPORT QDebug | operator<< (QDebug, const QRectF &) |
|
Q_DECLARE_TYPEINFO |
( |
QRect |
, |
|
|
Q_MOVABLE_TYPE |
|
|
) |
| |
bool operator== |
( |
const QRect & |
r1, |
|
|
const QRect & |
r2 |
|
) |
| |
|
inline |
Definition at line 496 of file qrect.h.
498 return r1.x1==r2.x1 && r1.x2==r2.x2 && r1.y1==r2.y1 && r1.y2==r2.y2;
bool operator!= |
( |
const QRect & |
r1, |
|
|
const QRect & |
r2 |
|
) |
| |
|
inline |
Definition at line 501 of file qrect.h.
503 return r1.x1!=r2.x1 || r1.x2!=r2.x2 || r1.y1!=r2.y1 || r1.y2!=r2.y2;
Q_DECLARE_TYPEINFO |
( |
QRectF |
, |
|
|
Q_MOVABLE_TYPE |
|
|
) |
| |
Definition at line 833 of file qrect.h.
bool qFuzzyCompare(const QMatrix &m1, const QMatrix &m2)
Definition at line 839 of file qrect.h.
bool qFuzzyCompare(const QMatrix &m1, const QMatrix &m2)
Go to the source code of this file.