ovrloading ungrab notifications for debugging purposes
This commit is contained in:
parent
b1948f8655
commit
85a9ffd3cc
@ -850,6 +850,21 @@ void QskQuickItem::geometryChange(
|
||||
QCoreApplication::sendEvent( this, &event );
|
||||
}
|
||||
|
||||
void QskQuickItem::mouseUngrabEvent()
|
||||
{
|
||||
Inherited::mouseUngrabEvent();
|
||||
}
|
||||
|
||||
void QskQuickItem::touchUngrabEvent()
|
||||
{
|
||||
Inherited::touchUngrabEvent();
|
||||
}
|
||||
|
||||
void QskQuickItem::windowDeactivateEvent()
|
||||
{
|
||||
Inherited::windowDeactivateEvent();
|
||||
}
|
||||
|
||||
void QskQuickItem::updatePolish()
|
||||
{
|
||||
Q_D( QskQuickItem );
|
||||
|
@ -131,6 +131,10 @@ class QSK_EXPORT QskQuickItem : public QQuickItem
|
||||
virtual void geometryChangeEvent( QskGeometryChangeEvent* );
|
||||
virtual void windowChangeEvent( QskWindowChangeEvent* );
|
||||
|
||||
void mouseUngrabEvent() override;
|
||||
void touchUngrabEvent() override;
|
||||
void windowDeactivateEvent() override;
|
||||
|
||||
void itemChange( ItemChange, const ItemChangeData& ) override;
|
||||
#if QT_VERSION >= QT_VERSION_CHECK( 6, 0, 0 )
|
||||
void geometryChange( const QRectF&, const QRectF& ) override;
|
||||
|
Loading…
x
Reference in New Issue
Block a user