qskinny/src/controls/QskDirtyItemFilter.cpp

141 lines
3.9 KiB
C++
Raw Normal View History

2017-07-21 18:21:34 +02:00
/******************************************************************************
* QSkinny - Copyright (C) 2016 Uwe Rathmann
* This file may be used under the terms of the QSkinny License, Version 1.0
*****************************************************************************/
#include "QskDirtyItemFilter.h"
#include "QskControl.h"
QSK_QT_PRIVATE_BEGIN
#include <private/qquickwindow_p.h>
#include <private/qquickitem_p.h>
QSK_QT_PRIVATE_END
static inline bool qskIsUpdateBlocked( const QQuickItem* item )
{
if ( !item->isVisible() )
{
if ( const auto control = qobject_cast< const QskControl* >( item ) )
return control->testControlFlag( QskControl::DeferredUpdate );
}
2018-01-24 10:14:50 +01:00
#if 0
/*
Blocking items, that are outside the window would be easy,
but we have not yet found a performant way to send update notifications
when an item enters/leaves the window. TODO ...
*/
else if ( const auto control = qobject_cast< const QskControl* >( item ) )
{
const QRectF itemRect( item->mapToScene( QPointF() ), item->size() );
const QRectF sceneRect( 0, 0, item->window()->width(), item->window()->height() );
return !itemRect.intersects( sceneRect );
}
#endif
2017-07-21 18:21:34 +02:00
return false;
}
static inline void qskBlockDirty( QQuickItem* item, bool on )
{
if ( qskIsUpdateBlocked( item ) )
QQuickItemPrivate::get( item )->componentComplete = !on;
2017-10-30 12:06:19 +01:00
const auto children = item->childItems();
for ( auto child : children )
2017-07-21 18:21:34 +02:00
qskBlockDirty( child, on );
}
namespace
{
class ResetBlockedDirtyJob final : public QRunnable
{
public:
inline ResetBlockedDirtyJob( QQuickWindow* window ):
m_window( window )
{
}
2018-07-31 17:32:25 +02:00
void run() override
{
qskBlockDirty( m_window->contentItem(), false );
}
private:
const QQuickWindow* m_window;
};
}
2017-07-21 18:21:34 +02:00
QskDirtyItemFilter::QskDirtyItemFilter( QObject* parent ):
QObject( parent )
{
}
QskDirtyItemFilter::~QskDirtyItemFilter()
{
}
void QskDirtyItemFilter::addWindow( QQuickWindow* window )
{
if ( m_windows.contains( window ) )
return;
m_windows.insert( window );
/*
Depending on the configration the scene graph runs on
a different thread and we need a direct connection to
filter the dirty list in the scene graph thread.
As QObject::sender() is not valid, when using a direct
connection between different threads, we need an
extra lambda to pass window as parameter.
*/
connect( window, &QQuickWindow::beforeSynchronizing,
2017-12-14 09:41:41 +01:00
window, [ this, window ] { beforeSynchronizing( window ); },
2017-07-21 18:21:34 +02:00
Qt::DirectConnection );
2018-02-01 08:29:38 +01:00
connect( window, &QObject::destroyed,
this, [ this, window ] { m_windows.remove( window ); } );
2017-07-21 18:21:34 +02:00
}
void QskDirtyItemFilter::beforeSynchronizing( QQuickWindow* window )
{
filterDirtyList( window, qskIsUpdateBlocked );
if ( QQuickWindowPrivate::get( window )->renderer == nullptr )
{
/*
In this specific initial situation QQuickWindow updates
the dirtyList after emitting "beforeSynchronizing".
So we need a special hack setting/resetting componentComplete
to avoid having all items in the dirtyList.
*/
qskBlockDirty( window->contentItem(), true );
window->scheduleRenderJob( new ResetBlockedDirtyJob( window ),
QQuickWindow::AfterSynchronizingStage );
}
2017-07-21 18:21:34 +02:00
}
void QskDirtyItemFilter::filterDirtyList( QQuickWindow* window,
bool ( *isBlocked )( const QQuickItem* ) )
{
if ( window == nullptr )
return;
auto d = QQuickWindowPrivate::get( window );
for ( QQuickItem* item = d->dirtyItemList; item != nullptr; )
{
auto nextItem = QQuickItemPrivate::get( item )->nextDirtyItem;
if ( isBlocked( item ) )
QQuickItemPrivate::get( item )->removeFromDirtyList();
item = nextItem;
}
}