You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.0 KiB
36 lines
1.0 KiB
/* |
|
* SPDX-FileCopyrightText: 2014 Hugo Pereira Da Costa <hugo.pereira@free.fr> |
|
* |
|
* SPDX-License-Identifier: GPL-2.0-or-later |
|
*/ |
|
|
|
#include "breezeheaderviewengine.h" |
|
|
|
#include <QEvent> |
|
|
|
namespace Breeze |
|
{ |
|
|
|
//____________________________________________________________ |
|
bool HeaderViewEngine::registerWidget( QWidget* widget ) |
|
{ |
|
|
|
if( !widget ) return false; |
|
|
|
// create new data class |
|
if( !_data.contains( widget ) ) _data.insert( widget, new HeaderViewData( this, widget, duration() ), enabled() ); |
|
|
|
// connect destruction signal |
|
connect( widget, SIGNAL(destroyed(QObject*)), this, SLOT(unregisterWidget(QObject*)), Qt::UniqueConnection ); |
|
return true; |
|
|
|
} |
|
|
|
//____________________________________________________________ |
|
bool HeaderViewEngine::updateState( const QObject* object, const QPoint& position, bool value ) |
|
{ |
|
DataMap<HeaderViewData>::Value data( _data.find( object ) ); |
|
return ( data && data.data()->updateState( position, value ) ); |
|
} |
|
|
|
}
|
|
|