7#include "QskItemPrivate.h"
11#include "QskSkinManager.h"
13#include "QskDirtyItemFilter.h"
14#include "QskInternalMacros.h"
16#include <qglobalstatic.h>
17#include <qquickwindow.h>
19#if defined( QT_DEBUG )
23#if QT_VERSION >= QT_VERSION_CHECK( 6, 2, 0 )
26 #include <private/qabstractanimation_p.h>
31#if defined( QT_DEBUG )
32#include <private/qquickpositioners_p.h>
35#include <private/qquickitemchangelistener_p.h>
41#include <unordered_set>
43static inline void qskSendEventTo( QObject*
object, QEvent::Type type )
46 QCoreApplication::sendEvent(
object, &event );
49static inline void qskApplyUpdateFlags(
50 QskItem::UpdateFlags flags,
QskItem* item )
52 auto d =
static_cast< QskItemPrivate*
>( QskItemPrivate::get( item ) );
53 d->applyUpdateFlags( flags );
56static inline void qskFilterWindow( QQuickWindow* window )
58 if ( window ==
nullptr )
62 itemFilter.addWindow( window );
79 QObject::connect( qskSkinManager, &QskSkinManager::skinChanged,
80 qskSkinManager, [
this ] { updateSkin(); } );
82 QObject::connect( qskSkinManager, &QskSkinManager::colorSchemeChanged,
83 qskSkinManager, [
this ] { updateSkin(); } );
86 inline void insert(
QskItem* item )
88 m_items.insert( item );
91 inline void remove(
QskItem* item )
93 m_items.erase( item );
96 void updateItemFlags()
98 const auto flags = QskSetup::updateFlags();
100 for (
auto item : m_items )
101 qskApplyUpdateFlags( flags, item );
106 QEvent event( QEvent::StyleChange );
108 for (
auto item : m_items )
110 event.setAccepted(
true );
111 QCoreApplication::sendEvent( item, &event );
116 std::unordered_set< QskItem* > m_items;
131 , m_window( nullptr )
135 void setWindow( QQuickWindow* window )
137 if ( m_window != window )
147 QQuickWindow* window()
149 QQuickWindow* w = m_window;
153 if ( --m_refCount == 0 )
162 QQuickWindow* m_window;
170 class QskParentListener final :
public QQuickItemChangeListener
173 void update( QQuickItem* parentItem )
175 if ( parentItem ==
nullptr )
178 const auto changeTypes =
179 QQuickItemPrivate::Geometry | QQuickItemPrivate::Children;
181 auto d = QQuickItemPrivate::get( parentItem );
183 if ( needListening( parentItem ) )
184 d->updateOrAddItemChangeListener(
this, changeTypes );
186 d->removeItemChangeListener(
this, changeTypes );
190 inline bool needListening(
const QQuickItem* parentItem )
const
192 const auto children = parentItem->childItems();
193 for (
auto child : children )
195 if (
auto item = qobject_cast< const QskItem* >( child ) )
197 if ( item->polishOnParentResize() )
205 void itemGeometryChanged( QQuickItem* parentItem,
206 QQuickGeometryChange,
const QRectF& )
override
208 const auto children = parentItem->childItems();
209 for (
auto child : children )
211 if (
auto item = qobject_cast< QskItem* >( child ) )
213 if ( item->polishOnParentResize() )
222 void itemChildRemoved(
223 QQuickItem* parentItem, QQuickItem* )
override
225 update( parentItem );
230Q_GLOBAL_STATIC( QskItemRegistry, qskRegistry )
231Q_GLOBAL_STATIC( QskWindowStore, qskReleasedWindowCounter )
232Q_GLOBAL_STATIC( QskParentListener, qskParentListener )
235 : QQuickItem( dd, parent )
237 setFlag( QQuickItem::ItemHasContents,
true );
238 Inherited::setActiveFocusOnTab(
false );
241 qskFilterWindow( window() );
243 qskRegistry->insert(
this );
258 d_func()->componentComplete =
false;
261 qskRegistry->remove(
this );
266 return metaObject()->className();
271 Inherited::classBegin();
276#if defined( QT_DEBUG )
279 if ( qobject_cast< const QQuickBasePositioner* >( parent() ) )
281 qWarning(
"QskItem in DeferredLayout mode under control of a positioner" );
286 Inherited::componentComplete();
291 Inherited::releaseResources();
299 qskReleasedWindowCounter->setWindow( window() );
304 Inherited::setEnabled( !on );
309 Inherited::setVisible( !on );
314 Inherited::setVisible(
true );
319 Inherited::setVisible(
false );
324 return qskIsVisibleTo(
this, ancestor );
329 return d_func()->explicitVisible;
340#if QT_VERSION >= QT_VERSION_CHECK( 6, 2, 0 )
341 d->heightValidFlag =
true;
342 d->widthValidFlag =
true;
344 d->heightValid =
true;
345 d->widthValid =
true;
348 const QRectF oldRect( d->x, d->y, d->width, d->height );
352 if ( d->x != x || d->y != y )
357 dirtyType |= QQuickItemPrivate::Position;
360 if ( d->width != width || d->height != height )
365 dirtyType |= QQuickItemPrivate::Size;
370 if ( dirtyType & QQuickItemPrivate::Position )
371 d->dirty( QQuickItemPrivate::Position );
373 if ( dirtyType & QQuickItemPrivate::Size )
374 d->dirty( QQuickItemPrivate::Size );
381 const QRectF newRect( d->x, d->y, d->width, d->height );
382#if QT_VERSION >= QT_VERSION_CHECK( 6, 0, 0 )
385 geometryChanged( newRect, oldRect );
392 Q_D(
const QQuickItem );
393 return QRectF( 0, 0, d->width, d->height );
398 Q_D(
const QQuickItem );
399 return QRectF( d->x, d->y, d->width, d->height );
405 if ( on != d->isTabFence )
414 return d_func()->isTabFence;
417#if QT_VERSION < QT_VERSION_CHECK( 6, 7, 0 )
419void QskItem::setFocusPolicy( Qt::FocusPolicy policy )
422 if ( policy != d->focusPolicy )
424 d->focusPolicy = ( policy & ~Qt::TabFocus );
426 const bool tabFocus = policy & Qt::TabFocus;
428 if ( !tabFocus && window() )
431 if ( window()->activeFocusItem() == this )
433 if (
auto focusItem = nextItemInFocusChain(
true ) )
434 focusItem->setFocus(
true );
438 Inherited::setActiveFocusOnTab( tabFocus );
440 Q_EMIT focusPolicyChanged( focusPolicy() );
444Qt::FocusPolicy QskItem::focusPolicy()
const
446 uint policy = d_func()->focusPolicy;
447 if ( Inherited::activeFocusOnTab() )
448 policy |= Qt::TabFocus;
450 return static_cast< Qt::FocusPolicy
>( policy );
461void QskItem::setWheelEnabled(
bool on )
464 if ( on != d->wheelEnabled )
466 d->wheelEnabled = on;
467 Q_EMIT wheelEnabledChanged( on );
471bool QskItem::isWheelEnabled()
const
473 return d_func()->wheelEnabled;
479 if ( on != d->polishOnResize )
481 d->polishOnResize = on;
490 return d_func()->polishOnResize;
493void QskItem::setPolishOnParentResize(
bool on )
496 if ( on != d->polishOnParentResize )
498 d->polishOnParentResize = on;
500 if ( parentItem() && qskParentListener )
502 qskParentListener->update( parentItem() );
512bool QskItem::polishOnParentResize()
const
514 return d_func()->polishOnParentResize;
527 return d_func()->effectiveLayoutMirror;
543 if ( childrenInherit != d->inheritMirrorFromItem )
545 d->inheritMirrorFromItem = childrenInherit;
546 d->resolveLayoutMirror();
549 d->isMirrorImplicit =
false;
551 if ( on != d->effectiveLayoutMirror )
553 d->setLayoutMirror( on );
554 if ( childrenInherit )
555 d->resolveLayoutMirror();
563 if ( d && !d->isMirrorImplicit )
565 d->isMirrorImplicit =
true;
567 d->resolveLayoutMirror();
573 return d_func()->polishScheduled;
580 return ( d->dirtyAttributes & QQuickItemPrivate::ContentUpdateMask ) &&
581 ( d->flags & QQuickItem::ItemHasContents );
586 return d_func()->initiallyPainted;
593 if ( d->width <= 0.0 && d->height <= 0.0 )
602 if ( d->polishOnResize && qskIsPolishScheduled( parentItem() ) )
619 d->updateFlagsMask = 0;
620 d->applyUpdateFlags( QskSetup::updateFlags() );
627 d->updateFlagsMask |= flag;
631 applyUpdateFlag( flag, on );
640 d->updateFlagsMask &= ~flag;
642 const bool on = QskSetup::testUpdateFlag( flag );
646 applyUpdateFlag( flag, on );
653 return d_func()->updateFlags & flag;
656void QskItem::applyUpdateFlag( UpdateFlag flag,
bool on )
664 d->updateFlags |= flag;
666 d->updateFlags &= ~flag;
674 qskFilterWindow( window() );
686 if ( !on && d->blockedPolish )
698#if QT_VERSION >= QT_VERSION_CHECK( 6, 2, 0 )
699 d->widthValidFlag = d->heightValidFlag =
false;
701 d->widthValid = d->heightValid =
false;
703 d->updateImplicitSize(
false );
710 if ( on && !isVisible() )
718 if ( flags() & QQuickItem::ItemHasContents )
733 d->blockedImplicitSize =
true;
734 d->layoutConstraintChanged();
738 d->updateImplicitSize(
true );
744 const int eventType =
event->type();
745 const bool hasContents = flags() & QQuickItem::ItemHasContents;
749 case QEvent::StyleChange:
751 d_func()->clearPreviousNodes =
true;
762 case QEvent::ContentsRectChange:
775 case QEvent::ReadOnlyChange:
776 case QEvent::EnabledChange:
777 case QEvent::LocaleChange:
778 case QEvent::ParentChange:
779 case QEvent::LayoutDirectionChange:
784 case QskEvent::ViewportChange:
789 case QskEvent::GeometryChange:
794 case QskEvent::WindowChange:
799 case QEvent::LayoutRequest:
806 case QEvent::FocusIn:
808 if ( window() ==
nullptr )
821 case QEvent::MouseButtonPress:
822 case QEvent::MouseButtonRelease:
824 if ( ( focusPolicy() & Qt::ClickFocus ) == Qt::ClickFocus )
826 if ( QGuiApplication::styleHints()->setFocusOnTouchRelease() )
828 if (
event->type() == QEvent::MouseButtonRelease )
829 forceActiveFocus( Qt::MouseFocusReason );
833 if (
event->type() == QEvent::MouseButtonPress )
834 forceActiveFocus( Qt::MouseFocusReason );
841 if ( !isWheelEnabled() )
852 if ( ( focusPolicy() & Qt::WheelFocus ) == Qt::WheelFocus )
853 forceActiveFocus( Qt::MouseFocusReason );
859 return Inherited::event(
event );
880 const QQuickItem::ItemChangeData& changeData )
884 case QQuickItem::ItemSceneChange:
886 if ( changeData.window )
890 qskFilterWindow( changeData.window );
893 auto oldWindow = qskReleasedWindowCounter->window();
895 if ( oldWindow && oldWindow->contentItem()
896 && ( oldWindow->activeFocusItem() ==
this ) )
909#if QT_VERSION >= QT_VERSION_CHECK( 6, 1, 0 )
910 auto wd = QQuickWindowPrivate::get( oldWindow )->deliveryAgentPrivate();
912 auto wd = QQuickWindowPrivate::get( oldWindow );
914 if (
auto scope = qskNearestFocusScope(
this ) )
916 wd->clearFocusInScope( scope,
this, Qt::OtherFocusReason );
920 wd->activeFocusItem =
nullptr;
923 if ( changeData.window ==
nullptr )
943 QCoreApplication::sendEvent(
this, &
event );
947 case QQuickItem::ItemEnabledHasChanged:
949 qskSendEventTo(
this, QEvent::EnabledChange );
952 case QQuickItem::ItemVisibleHasChanged:
956 if ( changeData.boolValue )
958 if ( d->blockedPolish )
963 if ( d->dirtyAttributes && ( d->flags & QQuickItem::ItemHasContents ) )
972 d->initiallyPainted =
false;
975 if ( parentItem() && parentItem()->isVisible() )
986 d->layoutConstraintChanged();
991 case QQuickItem::ItemParentHasChanged:
993 if( polishOnParentResize() && qskParentListener )
994 qskParentListener->update( parentItem() );
998 case QQuickItem::ItemChildAddedChange:
999 case QQuickItem::ItemChildRemovedChange:
1005 case QQuickItem::ItemOpacityHasChanged:
1006 case QQuickItem::ItemActiveFocusHasChanged:
1007 case QQuickItem::ItemRotationHasChanged:
1008 case QQuickItem::ItemAntialiasingHasChanged:
1009 case QQuickItem::ItemDevicePixelRatioHasChanged:
1010#if QT_VERSION >= QT_VERSION_CHECK( 6, 9, 0 )
1011 case QQuickItem::ItemScaleHasChanged:
1012 case QQuickItem::ItemTransformHasChanged:
1019 Inherited::itemChange( change, changeData );
1022#if QT_VERSION < QT_VERSION_CHECK( 6, 0, 0 )
1024void QskItem::geometryChanged(
1025 const QRectF& newGeometry,
const QRectF& oldGeometry )
1033 const QRectF& newGeometry,
const QRectF& oldGeometry )
1035#if QT_VERSION < QT_VERSION_CHECK( 6, 0, 0 )
1036 Inherited::geometryChanged( newGeometry, oldGeometry );
1038 Inherited::geometryChange( newGeometry, oldGeometry );
1042 if ( !d->polishScheduled && d->polishOnResize )
1044 if ( newGeometry.size() != oldGeometry.size() )
1049 QCoreApplication::sendEvent(
this, &
event );
1054 Inherited::mouseUngrabEvent();
1059 Inherited::touchUngrabEvent();
1062#if QT_VERSION < QT_VERSION_CHECK( 6, 0, 0 )
1064void QskItem::windowDeactivateEvent()
1066 Inherited::windowDeactivateEvent();
1071void QskItem::updatePolish()
1079 d->blockedPolish =
true;
1084 d->blockedPolish =
false;
1086 if ( !d->initiallyPainted )
1103void QskItem::updateItemPolish()
1107QSGNode* QskItem::updatePaintNode( QSGNode* node, UpdatePaintNodeData* data )
1115 d->initiallyPainted =
true;
1117 if ( d->clearPreviousNodes )
1132 d->paintNode =
nullptr;
1135 d->clearPreviousNodes =
false;
1138 return updateItemPaintNode( node );
1141QSGNode* QskItem::updateItemPaintNode( QSGNode* node )
1146QSK_HIDDEN_EXTERNAL_BEGIN
1148void qskUpdateItemFlags()
1151 qskRegistry->updateItemFlags();
1154QSK_HIDDEN_EXTERNAL_END
1156#include "moc_QskItem.cpp"
bool isPolishScheduled() const
void mouseUngrabEvent() override
bool isVisibleToParent() const
void geometryChange(const QRectF &, const QRectF &) override
void itemChange(ItemChange, const ItemChangeData &) override
bool event(QEvent *) override
void setPolishOnResize(bool)
void classBegin() override
virtual void aboutToShow()
void resetLayoutMirroring()
void touchUngrabEvent() override
void releaseResources() override
const char * className() const
void setLayoutMirroring(bool on, bool childrenInherit=false)
virtual void geometryChangeEvent(QskGeometryChangeEvent *)
bool isInitiallyPainted() const
void resetUpdateFlag(UpdateFlag)
virtual void changeEvent(QEvent *)
virtual void windowChangeEvent(QskWindowChangeEvent *)
bool isUpdateNodeScheduled() const
void updateFlagsChanged(UpdateFlags)
bool maybeUnresized() const
void setUpdateFlag(UpdateFlag, bool on=true)
bool isVisibleTo(const QQuickItem *) const
bool testUpdateFlag(UpdateFlag) const
void componentComplete() override
void setGeometry(qreal x, qreal y, qreal width, qreal height)
bool layoutMirroring() const