ResourceBrowser: stop preview when drag operation starts

Make sure preview is stopped as soon as a drag operation starts. This
is done by overloading QAbstractItemView::startDrag() and emit a signal
from there which is connected to an according slot in ResourceBrowser.

Signed-off-by: Tobias Doerffel <tobias.doerffel@gmail.com>
This commit is contained in:
Tobias Doerffel
2009-06-23 00:13:40 +02:00
parent 65b044c5c1
commit 75a45cca5f
4 changed files with 34 additions and 2 deletions

View File

@@ -63,6 +63,7 @@ private slots:
void updateFilterStatus();
void startItemPreview( const QModelIndex & _idx );
void stopItemPreview( const QModelIndex & _idx );
void stopPreview();
void triggerDefaultAction( const QModelIndex & _idx );

View File

@@ -1,7 +1,7 @@
/*
* ResourceTreeView.h - view for ResourceTreeModel
*
* Copyright (c) 2008 Tobias Doerffel <tobydox/at/users.sourceforge.net>
* Copyright (c) 2008-2009 Tobias Doerffel <tobydox/at/users.sourceforge.net>
*
* This file is part of Linux MultiMedia Studio - http://lmms.sourceforge.net
*
@@ -41,11 +41,20 @@ public slots:
void setFilter( const QString & _s );
void updateFilter( void );
protected:
virtual void startDrag( Qt::DropActions supportedActions );
private:
ResourceTreeModel * m_tm;
QString m_lastFilter;
signals:
void dragStarted();
} ;