7#include <QtCore/qcheckedint_impl.h>
8#include <QtCore/qcompare.h>
9#include <QtCore/qnamespace.h>
11#include <QtCore/q20type_traits.h>
12#include <QtCore/q23utility.h>
16QT_ENABLE_P0846_SEMANTICS_FOR(get)
22
23
29 constexpr QMargins(
int left,
int top,
int right,
int bottom)
noexcept;
31 constexpr bool isNull()
const noexcept;
33 constexpr int left()
const noexcept;
34 constexpr int top()
const noexcept;
35 constexpr int right()
const noexcept;
36 constexpr int bottom()
const noexcept;
38 constexpr void setLeft(
int left)
noexcept;
39 constexpr void setTop(
int top)
noexcept;
40 constexpr void setRight(
int right)
noexcept;
41 constexpr void setBottom(
int bottom)
noexcept;
70 constexpr QMargins(Representation left,
73 Representation bottom)
noexcept
78 Representation m_left;
80 Representation m_right;
81 Representation m_bottom;
85 return lhs.m_left == rhs.m_left
86 && lhs.m_top == rhs.m_top
87 && lhs.m_right == rhs.m_right
88 && lhs.m_bottom == rhs.m_bottom;
96 friend constexpr decltype(
auto)
get(
M &&
m)
noexcept
100 else if constexpr (
I == 1)
102 else if constexpr (
I == 2)
104 else if constexpr (
I == 3)
112
113
114#ifndef QT_NO_DATASTREAM
120
121
129{
return m_left==0 && m_top==0 && m_right==0 && m_bottom==0; }
132{
return m_left.value(); }
135{
return m_top.value(); }
138{
return m_right.value(); }
141{
return m_bottom.value(); }
145{ m_left.setValue(aleft); }
148{ m_top.setValue(atop); }
151{ m_right.setValue(aright); }
154{ m_bottom.setValue(abottom); }
158 return QMargins(m1.m_left + m2.m_left, m1.m_top + m2.m_top,
159 m1.m_right + m2.m_right, m1.m_bottom + m2.m_bottom);
164 return QMargins(m1.m_left - m2.m_left, m1.m_top - m2.m_top,
165 m1.m_right - m2.m_right, m1.m_bottom - m2.m_bottom);
170 return QMargins(lhs.m_left + rhs, lhs.m_top + rhs,
171 lhs.m_right + rhs, lhs.m_bottom + rhs);
176 return QMargins(rhs.m_left + lhs, rhs.m_top + lhs,
177 rhs.m_right + lhs, rhs.m_bottom + lhs);
182 return QMargins(lhs.m_left - rhs, lhs.m_top - rhs,
183 lhs.m_right - rhs, lhs.m_bottom - rhs);
188 return QMargins(margins.m_left * factor, margins.m_top * factor,
189 margins.m_right * factor, margins.m_bottom * factor);
194 return QMargins(margins.m_left * factor, margins.m_top * factor,
195 margins.m_right * factor, margins.m_bottom * factor);
201 return QMargins(QtPrivate::qSaturateRound(margins.left() * factor),
202 QtPrivate::qSaturateRound(margins.top() * factor),
203 QtPrivate::qSaturateRound(margins.right() * factor),
204 QtPrivate::qSaturateRound(margins.bottom() * factor));
209 return QMargins(QtPrivate::qSaturateRound(margins.left() * factor),
210 QtPrivate::qSaturateRound(margins.top() * factor),
211 QtPrivate::qSaturateRound(margins.right() * factor),
212 QtPrivate::qSaturateRound(margins.bottom() * factor));
217 return QMargins(margins.m_left / divisor, margins.m_top / divisor,
218 margins.m_right / divisor, margins.m_bottom / divisor);
223 Q_ASSERT(!qFuzzyIsNull(divisor));
224 return QMargins(QtPrivate::qSaturateRound(margins.left() / divisor),
225 QtPrivate::qSaturateRound(margins.top() / divisor),
226 QtPrivate::qSaturateRound(margins.right() / divisor),
227 QtPrivate::qSaturateRound(margins.bottom() / divisor));
232 return QMargins(qMax(m1.m_left, m2.m_left), qMax(m1.m_top, m2.m_top),
233 qMax(m1.m_right, m2.m_right), qMax(m1.m_bottom, m2.m_bottom));
238 return *
this = *
this + margins;
243 return *
this = *
this - margins;
266 return *
this = *
this * factor;
271 return *
this = *
this / divisor;
276 return *
this = *
this * factor;
281 return *
this = *
this / divisor;
291 return QMargins(-margins.left(), -margins.top(), -margins.right(), -margins.bottom());
294#ifndef QT_NO_DEBUG_STREAM
299
300
306 constexpr QMarginsF(qreal left, qreal top, qreal right, qreal bottom)
noexcept;
309 constexpr bool isNull()
const noexcept;
312 constexpr qreal top()
const noexcept;
316 constexpr void setLeft(qreal aleft)
noexcept;
317 constexpr void setTop(qreal atop)
noexcept;
318 constexpr void setRight(qreal aright)
noexcept;
319 constexpr void setBottom(qreal abottom)
noexcept;
337 QT_WARNING_DISABLE_FLOAT_COMPARE
370 friend constexpr decltype(
auto)
get(
M &&
m)
noexcept
372 if constexpr (
I == 0)
374 else if constexpr (
I == 1)
376 else if constexpr (
I == 2)
378 else if constexpr (
I == 3)
386
387
389#ifndef QT_NO_DATASTREAM
395
396
408{
return qFuzzyIsNull(m_left) && qFuzzyIsNull(m_top) && qFuzzyIsNull(m_right) && qFuzzyIsNull(m_bottom); }
433{ m_bottom = abottom; }
437 return QMarginsF(lhs.left() + rhs.left(), lhs.top() + rhs.top(),
438 lhs.right() + rhs.right(), lhs.bottom() + rhs.bottom());
443 return QMarginsF(lhs.left() - rhs.left(), lhs.top() - rhs.top(),
444 lhs.right() - rhs.right(), lhs.bottom() - rhs.bottom());
449 return QMarginsF(lhs.left() + rhs, lhs.top() + rhs,
450 lhs.right() + rhs, lhs.bottom() + rhs);
455 return QMarginsF(rhs.left() + lhs, rhs.top() + lhs,
456 rhs.right() + lhs, rhs.bottom() + lhs);
461 return QMarginsF(lhs.left() - rhs, lhs.top() - rhs,
462 lhs.right() - rhs, lhs.bottom() - rhs);
467 return QMarginsF(lhs.left() * rhs, lhs.top() * rhs,
468 lhs.right() * rhs, lhs.bottom() * rhs);
473 return QMarginsF(rhs.left() * lhs, rhs.top() * lhs,
474 rhs.right() * lhs, rhs.bottom() * lhs);
479 Q_ASSERT(divisor < 0 || divisor > 0);
480 return QMarginsF(lhs.left() / divisor, lhs.top() / divisor,
481 lhs.right() / divisor, lhs.bottom() / divisor);
486 return QMarginsF(qMax(m1.left(), m2.left()), qMax(m1.top(), m2.top()),
487 qMax(m1.right(), m2.right()), qMax(m1.bottom(), m2.bottom()));
492 return *
this = *
this + margins;
497 return *
this = *
this - margins;
511 m_left -= subtrahend;
513 m_right -= subtrahend;
514 m_bottom -= subtrahend;
520 return *
this = *
this * factor;
525 return *
this = *
this / divisor;
535 return QMarginsF(-margins.left(), -margins.top(), -margins.right(), -margins.bottom());
542 return QMargins(QtPrivate::qSaturateRound(m_left),
543 QtPrivate::qSaturateRound(m_top),
544 QtPrivate::qSaturateRound(m_right),
545 QtPrivate::qSaturateRound(m_bottom));
548#ifndef QT_NO_DEBUG_STREAM
555
556
560 class tuple_size<QT_PREPEND_NAMESPACE(QMargins)> :
public integral_constant<size_t, 4> {};
562 class tuple_element<0, QT_PREPEND_NAMESPACE(QMargins)> {
public:
using type =
int; };
\inmodule QtCore\reentrant
constexpr QMarginsF & operator-=(const QMarginsF &margins) noexcept
Subtract each component of margins from the respective component of this object and returns a referen...
constexpr qreal right() const noexcept
Returns the right margin.
constexpr qreal left() const noexcept
Returns the left margin.
constexpr QMarginsF() noexcept
Constructs a margins object with all margins set to 0.
constexpr qreal top() const noexcept
Returns the top margin.
constexpr void setLeft(qreal aleft) noexcept
Sets the left margin to aleft (which must be finite).
constexpr QMarginsF & operator+=(const QMarginsF &margins) noexcept
Add each component of margins to the respective component of this object and returns a reference to i...
constexpr QMarginsF & operator-=(qreal subtrahend) noexcept
This is an overloaded member function, provided for convenience. It differs from the above function o...
constexpr QMarginsF & operator/=(qreal divisor)
Divides each component of this object by divisor and returns a reference to this object.
constexpr bool isNull() const noexcept
Returns true if all margins are very close to 0; otherwise returns false.
constexpr QMarginsF(const QMargins &margins) noexcept
Constructs margins copied from the given margins.
constexpr QMargins toMargins() const noexcept
Returns an integer-based copy of this margins object.
constexpr QMarginsF & operator*=(qreal factor) noexcept
Multiplies each component of this object by the given finite factor and returns a reference to this o...
constexpr void setRight(qreal aright) noexcept
Sets the right margin to aright (which must be finite).
constexpr QMarginsF(qreal left, qreal top, qreal right, qreal bottom) noexcept
Constructs margins with the given left, top, right, and bottom.
constexpr void setBottom(qreal abottom) noexcept
Sets the bottom margin to abottom (which must be finite).
constexpr void setTop(qreal atop) noexcept
Sets the top margin to atop (which must be finite).
constexpr QMarginsF & operator+=(qreal addend) noexcept
This is an overloaded member function, provided for convenience. It differs from the above function o...
constexpr qreal bottom() const noexcept
Returns the bottom margin.
constexpr void setTop(int top) noexcept
Sets the Top margin to Top.
friend constexpr QMargins operator+(const QMargins &lhs, int rhs) noexcept
Returns a QMargins object that is formed by adding rhs to lhs.
constexpr int bottom() const noexcept
Returns the bottom margin.
constexpr QMarginsF toMarginsF() const noexcept
friend constexpr QMargins operator-(const QMargins &lhs, int rhs) noexcept
Returns a QMargins object that is formed by subtracting rhs from lhs.
friend constexpr QMargins operator+(const QMargins &m1, const QMargins &m2) noexcept
Returns a QMargins object that is the sum of the given margins, m1 and m2; each component is added se...
constexpr QMargins & operator-=(int) noexcept
This is an overloaded member function, provided for convenience. It differs from the above function o...
constexpr bool isNull() const noexcept
Returns true if all margins are is 0; otherwise returns false.
constexpr void setBottom(int bottom) noexcept
Sets the bottom margin to bottom.
friend constexpr QMargins operator*(int factor, const QMargins &margins) noexcept
This is an overloaded member function, provided for convenience. It differs from the above function o...
constexpr void setLeft(int left) noexcept
Sets the left margin to left.
constexpr QMargins & operator-=(const QMargins &margins) noexcept
Subtract each component of margins from the respective component of this object and returns a referen...
constexpr int left() const noexcept
Returns the left margin.
friend constexpr QMargins operator/(const QMargins &margins, int divisor)
Returns a QMargins object that is formed by dividing the components of the given margins by the given...
constexpr QMargins & operator*=(int) noexcept
Multiplies each component of this object by factor and returns a reference to it.
friend constexpr bool comparesEqual(const QMargins &lhs, const QMargins &rhs) noexcept
constexpr QMargins & operator+=(int) noexcept
This is an overloaded member function, provided for convenience. It differs from the above function o...
friend constexpr QMargins operator-(const QMargins &m1, const QMargins &m2) noexcept
Returns a QMargins object that is formed by subtracting m2 from m1; each component is subtracted sepa...
friend constexpr QMargins operator|(const QMargins &m1, const QMargins &m2) noexcept
Returns a QMargins object that is formed from the maximum of each component of m2 and m1.
constexpr QMargins & operator/=(int)
Divides each component of this object by divisor and returns a reference to it.
constexpr QMargins & operator+=(const QMargins &margins) noexcept
Add each component of margins to the respective component of this object and returns a reference to i...
constexpr QMargins() noexcept
Constructs a margins object with all margins set to 0.
friend constexpr QMargins operator+(int lhs, const QMargins &rhs) noexcept
Returns a QMargins object that is formed by adding lhs to rhs.
constexpr QMargins(int left, int top, int right, int bottom) noexcept
Constructs margins with the given left, top, right, and bottom.
constexpr int right() const noexcept
Returns the right margin.
constexpr int top() const noexcept
Returns the top margin.
friend constexpr QMargins operator*(const QMargins &margins, int factor) noexcept
Returns a QMargins object that is formed by multiplying each component of the given margins by factor...
constexpr void setRight(int right) noexcept
Sets the right margin to right.
Combined button and popup list for selecting options.
Q_CORE_EXPORT QDebug operator<<(QDebug debug, QDir::Filters filters)
QDebug operator<<(QDebug dbg, const QMargins &m)
QDebug operator<<(QDebug dbg, const QMarginsF &m)
QDataStream & operator>>(QDataStream &s, QMargins &m)
QDataStream & operator>>(QDataStream &s, QMarginsF &m)
constexpr QMarginsF operator*(qreal lhs, const QMarginsF &rhs) noexcept
constexpr QMarginsF operator+(const QMarginsF &lhs, const QMarginsF &rhs) noexcept
constexpr QMarginsF operator|(const QMarginsF &m1, const QMarginsF &m2) noexcept
constexpr QMarginsF operator/(const QMarginsF &lhs, qreal divisor)
constexpr QMargins operator+(const QMargins &margins) noexcept
constexpr QMarginsF operator*(const QMarginsF &lhs, qreal rhs) noexcept
Q_DECLARE_TYPEINFO(QMarginsF, Q_RELOCATABLE_TYPE)
constexpr QMarginsF operator+(qreal lhs, const QMarginsF &rhs) noexcept
constexpr QMarginsF operator+(const QMarginsF &margins) noexcept
Q_DECLARE_TYPEINFO(QMargins, Q_RELOCATABLE_TYPE)
constexpr QMarginsF operator+(const QMarginsF &lhs, qreal rhs) noexcept
constexpr QMarginsF operator-(const QMarginsF &lhs, qreal rhs) noexcept
constexpr QMarginsF operator-(const QMarginsF &lhs, const QMarginsF &rhs) noexcept
constexpr QMargins operator-(const QMargins &margins) noexcept
constexpr QMarginsF operator-(const QMarginsF &margins) noexcept