6#include "QskItemAnchors.h"
8#include "QskInternalMacros.h"
11#include <private/qquickanchors_p.h>
12#include <private/qquickanchors_p_p.h>
13#include <private/qquickitem_p.h>
18 struct AnchorLineOperators
20 QQuickAnchorLine ( QQuickAnchors::*line ) () const;
21 void ( QQuickAnchors::*setLine )( const QQuickAnchorLine& );
22 void ( QQuickAnchors::*resetLine )();
28 UpdateBlocker( QQuickAnchors* anchors )
29 : m_anchors( anchors )
31 auto d = QQuickAnchorsPrivate::get( anchors );
33 m_wasComplete = d->componentComplete;
34 d->componentComplete =
false;
44 auto d = QQuickAnchorsPrivate::get( m_anchors );
45 d->componentComplete = m_wasComplete;
48 QQuickAnchors* m_anchors;
53static inline QQuickAnchors* qskGetOrCreateAnchors( QQuickItem* item )
55 if ( item ==
nullptr )
58 return QQuickItemPrivate::get( item )->anchors();
61static inline QQuickAnchors* qskGetAnchors( QQuickItem* item )
63 if ( item ==
nullptr )
66 return QQuickItemPrivate::get( item )->_anchors;
69static inline const QQuickAnchors* qskGetAnchors(
const QQuickItem* item )
71 return qskGetAnchors(
const_cast< QQuickItem*
>( item ) );
74static inline QQuickAnchors::Anchor qskToQuickAnchor( Qt::AnchorPoint edge )
76 using A = QQuickAnchors;
80 case Qt::AnchorLeft:
return A::LeftAnchor;
81 case Qt::AnchorHorizontalCenter:
return A::HCenterAnchor;
82 case Qt::AnchorRight:
return A::RightAnchor;
83 case Qt::AnchorTop:
return A::TopAnchor;
84 case Qt::AnchorVerticalCenter:
return A::VCenterAnchor;
85 case Qt::AnchorBottom:
return A::BottomAnchor;
86 default:
return A::InvalidAnchor;
90static inline Qt::AnchorPoint qskToAnchorPoint( QQuickAnchors::Anchor anchor )
92 using A = QQuickAnchors;
96 case A::LeftAnchor:
return Qt::AnchorLeft;
97 case A::HCenterAnchor:
return Qt::AnchorHorizontalCenter;
98 case A::RightAnchor:
return Qt::AnchorRight;
99 case A::TopAnchor:
return Qt::AnchorTop;
100 case A::VCenterAnchor:
return Qt::AnchorVerticalCenter;
101 case A::BottomAnchor:
return Qt::AnchorBottom;
102 case A::BaselineAnchor:
return Qt::AnchorTop;
103 default:
return Qt::AnchorLeft;
107static inline bool qskIsCenterAnchorPoint( Qt::AnchorPoint edge )
109 return ( edge == Qt::AnchorHorizontalCenter )
110 || ( edge == Qt::AnchorVerticalCenter );
113static inline const AnchorLineOperators& qskAnchorLineOperators( Qt::AnchorPoint edge )
115 using A = QQuickAnchors;
117 static constexpr AnchorLineOperators table[] =
121 { &A::left, &A::setLeft, &A::resetLeft },
122 { &A::horizontalCenter, &A::setHorizontalCenter, &A::resetHorizontalCenter },
123 { &A::right, &A::setRight, &A::resetRight },
124 { &A::top, &A::setTop, &A::resetTop },
125 { &A::verticalCenter, &A::setVerticalCenter, &A::resetVerticalCenter },
126 { &A::bottom, &A::setBottom, &A::resetBottom }
132QskItemAnchors::QskItemAnchors( QQuickItem* attachedItem )
133 : m_attachedItem( attachedItem )
137QskItemAnchors::~QskItemAnchors()
141bool QskItemAnchors::operator==(
const QskItemAnchors& other )
const noexcept
143 return m_attachedItem.data() == other.m_attachedItem.data();
146QQuickItem* QskItemAnchors::attachedItem()
const
148 return m_attachedItem;
151QMarginsF QskItemAnchors::margins()
const
153 const auto anchors = qskGetAnchors( m_attachedItem );
154 if ( anchors ==
nullptr )
157 const auto d = QQuickAnchorsPrivate::get( anchors );
159 const auto left = d->leftMarginExplicit ? d->leftMargin : d->margins;
160 const auto right = d->rightMarginExplicit ? d->rightMargin : d->margins;
161 const auto top = d->rightMarginExplicit ? d->rightMargin : d->margins;
162 const auto bottom = d->bottomMarginExplicit ? d->bottomMargin : d->margins;
164 return QMarginsF( left, top, right, bottom );
167void QskItemAnchors::setMargins(
const QMarginsF& margins )
169 auto anchors = qskGetOrCreateAnchors( m_attachedItem );
170 if ( anchors ==
nullptr )
173 const auto oldMargins = this->margins();
175 Qt::Orientations changes;
177 if ( margins.left() != oldMargins.left() )
178 changes |= Qt::Horizontal;
180 if ( margins.right() != oldMargins.right() )
181 changes |= Qt::Horizontal;
183 if ( margins.top() != oldMargins.top() )
184 changes |= Qt::Vertical;
186 if ( margins.bottom() != oldMargins.bottom() )
187 changes |= Qt::Vertical;
191 const auto left = margins.left();
193 UpdateBlocker blocker( anchors );
195 anchors->setLeftMargin( left + 1.0 );
196 anchors->setRightMargin( margins.right() );
197 anchors->setTopMargin( margins.top() );
198 anchors->setBottomMargin( margins.bottom() );
202 anchors->setLeftMargin( left );
206void QskItemAnchors::setCenterOffsets(
207 qreal horizontalOffset, qreal verticalOffset )
209 if (
auto anchors = qskGetOrCreateAnchors( m_attachedItem ) )
211 anchors->setHorizontalCenterOffset( horizontalOffset );
212 anchors->setVerticalCenterOffset( verticalOffset );
216void QskItemAnchors::setCenterOffset( Qt::Orientation orientation, qreal offset )
218 auto anchors = qskGetOrCreateAnchors( m_attachedItem );
219 if ( anchors ==
nullptr )
222 if ( orientation == Qt::Horizontal )
223 anchors->setHorizontalCenterOffset( offset );
225 anchors->setVerticalCenterOffset( offset );
228qreal QskItemAnchors::centerOffset( Qt::Orientation orientation )
230 if (
const auto anchors = qskGetAnchors( m_attachedItem ) )
232 if ( orientation == Qt::Horizontal )
233 return anchors->horizontalCenterOffset();
235 return anchors->verticalCenterOffset();
241QQuickItem* QskItemAnchors::settledItem( Qt::AnchorPoint edge )
const
243 const auto anchors = qskGetAnchors( m_attachedItem );
244 if ( anchors ==
nullptr )
247 if (
auto fill = anchors->fill() )
248 return !qskIsCenterAnchorPoint( edge ) ? fill :
nullptr;
250 if (
auto centerIn = anchors->centerIn() )
251 return qskIsCenterAnchorPoint( edge ) ? centerIn :
nullptr;
253 const auto& ops = qskAnchorLineOperators( edge );
254 return ( ( anchors->*ops.line ) () ).item;
257void QskItemAnchors::addAnchors( Qt::Corner corner,
258 QQuickItem* settledItem, Qt::Corner settledItemCorner )
261 []( Qt::Corner cn, Qt::Orientation orientation )
263 if ( orientation == Qt::Horizontal )
264 return ( cn & 0x1 ) ? Qt::AnchorRight : Qt::AnchorLeft;
266 return ( cn >= 0x2 ) ? Qt::AnchorBottom : Qt::AnchorTop;
269 addAnchor( anchorPoint( corner, Qt::Horizontal ),
270 settledItem, anchorPoint( settledItemCorner, Qt::Horizontal ) );
272 addAnchor( anchorPoint( corner, Qt::Vertical ),
273 settledItem, anchorPoint( settledItemCorner, Qt::Vertical ) );
276void QskItemAnchors::addAnchor( Qt::AnchorPoint edge, QQuickItem* settledItem,
277 Qt::AnchorPoint settledItemEdge )
279 if ( settledItem ==
nullptr )
282 if (
const auto anchors = qskGetOrCreateAnchors( m_attachedItem ) )
284 const auto& ops = qskAnchorLineOperators( edge );
285 ( anchors->*ops.setLine )( { settledItem, qskToQuickAnchor( settledItemEdge ) } );
289void QskItemAnchors::removeAnchor( Qt::AnchorPoint edge )
291 const auto anchors = qskGetAnchors( m_attachedItem );
292 if ( anchors ==
nullptr )
295 if (
auto fill = anchors->fill() )
297 if ( !qskIsCenterAnchorPoint( edge ) )
299 anchors->resetFill();
302 for (
auto anchorPoint : { Qt::AnchorLeft, Qt::AnchorRight,
303 Qt::AnchorTop, Qt::AnchorBottom } )
305 if ( edge != anchorPoint )
306 addAnchor( anchorPoint, fill, anchorPoint );
313 if (
auto centerIn = anchors->centerIn() )
315 if ( qskIsCenterAnchorPoint( edge ) )
317 anchors->resetCenterIn();
320 const auto otherEdge = ( edge == Qt::AnchorHorizontalCenter )
321 ? Qt::AnchorVerticalCenter : Qt::AnchorHorizontalCenter;
323 addAnchor( otherEdge, centerIn, otherEdge );
329 const auto& ops = qskAnchorLineOperators( edge );
330 ( anchors->*ops.resetLine ) ();
333void QskItemAnchors::clearAnchors()
335 const auto anchors = qskGetAnchors( m_attachedItem );
336 if ( anchors ==
nullptr )
339 const UpdateBlocker blocker( anchors );
341 anchors->resetFill();
342 anchors->resetCenterIn();
344 for (
int i = 0; i < 6; i++ )
346 const auto& ops = qskAnchorLineOperators(
static_cast< Qt::AnchorPoint
>( i ) );
347 ( anchors->*ops.resetLine ) ();
351void QskItemAnchors::setBorderAnchors(
352 QQuickItem* settledItem, Qt::Orientations orientations )
354 if ( settledItem ==
nullptr || m_attachedItem ==
nullptr )
357 auto anchors = qskGetOrCreateAnchors( m_attachedItem );
359 switch( orientations )
365 const UpdateBlocker blocker( anchors );
366 addAnchor( Qt::AnchorLeft, settledItem, Qt::AnchorLeft );
369 addAnchor( Qt::AnchorRight, settledItem, Qt::AnchorRight );
379 const UpdateBlocker blocker( anchors );
380 addAnchor( Qt::AnchorTop, settledItem, Qt::AnchorTop );
383 addAnchor( Qt::AnchorBottom, settledItem, Qt::AnchorBottom );
388 case Qt::Horizontal | Qt::Vertical:
390 if ( settledItem != anchors->fill() )
393 anchors->setFill( settledItem );
400void QskItemAnchors::setCenterAnchors(
401 QQuickItem* settledItem, Qt::Orientations orientations )
403 if ( settledItem ==
nullptr || m_attachedItem ==
nullptr )
406 switch( orientations )
411 addAnchor( Qt::AnchorHorizontalCenter,
412 settledItem, Qt::AnchorHorizontalCenter );
419 addAnchor( Qt::AnchorVerticalCenter,
420 settledItem, Qt::AnchorVerticalCenter );
424 case Qt::Horizontal | Qt::Vertical:
426 auto anchors = qskGetOrCreateAnchors( m_attachedItem );
428 if ( settledItem != anchors->centerIn() )
431 anchors->setCenterIn( settledItem );
438Qt::AnchorPoint QskItemAnchors::settledItemAnchorPoint( Qt::AnchorPoint edge )
const
440 if (
const auto anchors = qskGetAnchors( m_attachedItem ) )
449 const auto& ops = qskAnchorLineOperators( edge );
450 return qskToAnchorPoint( ( ( anchors->*ops.line ) () ).anchorLine );
453 return Qt::AnchorLeft;