From 3378b1ef8246043cd5e70f5636f2cdfa9b86122c Mon Sep 17 00:00:00 2001 From: Leo Franchi Date: Tue, 29 Mar 2011 15:46:35 -0400 Subject: [PATCH] add supercollection back turn off proxy and cleanup trying to find signal issue fix parent() that was causing all sorts of weird inserted bugs fix removing to not work on a copy! --- src/libtomahawk/database/databasecollection.h | 2 +- src/sourcetree/sourcesmodel.cpp | 23 ++++++++++++++++++- src/sourcetree/sourcesmodel.h | 3 +-- src/sourcetree/sourcetreeitem.cpp | 8 +++++-- src/sourcetree/sourcetreeitem.h | 1 + src/sourcetree/sourcetreeview.cpp | 6 ++--- 6 files changed, 33 insertions(+), 10 deletions(-) diff --git a/src/libtomahawk/database/databasecollection.h b/src/libtomahawk/database/databasecollection.h index 5b15913c0..e45e9f870 100644 --- a/src/libtomahawk/database/databasecollection.h +++ b/src/libtomahawk/database/databasecollection.h @@ -51,7 +51,7 @@ public slots: virtual void removeTracks( const QDir& dir ); private slots: - void dynamicPlaylistCreated( const Tomahawk::source_ptr& source, const QVariantList& data ); +// void dynamicPlaylistCreated( const Tomahawk::source_ptr& source, const QVariantList& data ); }; #endif // DATABASECOLLECTION_H diff --git a/src/sourcetree/sourcesmodel.cpp b/src/sourcetree/sourcesmodel.cpp index 702444051..8ebcba337 100644 --- a/src/sourcetree/sourcesmodel.cpp +++ b/src/sourcetree/sourcesmodel.cpp @@ -33,7 +33,12 @@ SourcesModel::SourcesModel( QObject* parent ) : QAbstractItemModel( parent ) { m_rootItem = new SourceTreeItem( this, 0, Invalid ); +<<<<<<< HEAD +======= + appendItem( source_ptr() ); + +>>>>>>> add supercollection back onSourcesAdded( SourceList::instance()->sources() ); connect( SourceList::instance(), SIGNAL( sourceAdded( Tomahawk::source_ptr ) ), SLOT( onSourceAdded( Tomahawk::source_ptr ) ) ); @@ -82,6 +87,7 @@ SourcesModel::rowCount( const QModelIndex& parent ) const return itemFromIndex( parent )->children().count(); } +<<<<<<< HEAD bool SourcesModel::hasChildren( const QModelIndex& parent ) const { @@ -90,6 +96,9 @@ SourcesModel::hasChildren( const QModelIndex& parent ) const QModelIndex +======= +QModelIndex +>>>>>>> add supercollection back SourcesModel::parent( const QModelIndex& child ) const { // qDebug() << Q_FUNC_INFO << child; @@ -101,8 +110,13 @@ SourcesModel::parent( const QModelIndex& child ) const SourceTreeItem* parent = node->parent(); if( parent == m_rootItem ) return QModelIndex(); +<<<<<<< HEAD return createIndex( rowForItem( node ), 0, parent ); +======= + + return createIndex( rowForItem( parent ), 0, parent ); +>>>>>>> add supercollection back } QModelIndex @@ -180,11 +194,18 @@ SourcesModel::appendItem( const Tomahawk::source_ptr& source ) m_rootItem->appendChild( item ); endInsertRows(); +<<<<<<< HEAD qDebug() << "Appending source item:" << item->source()->friendlyName(); +======= + + +>>>>>>> add supercollection back if ( !source.isNull() ) { + qDebug() << "Appending source item:" << item->source()->friendlyName(); + connect( source.data(), SIGNAL( stats( QVariantMap ) ), SLOT( onSourceChanged() ) ); connect( source.data(), SIGNAL( playbackStarted( Tomahawk::query_ptr ) ), SLOT( onSourceChanged() ) ); connect( source.data(), SIGNAL( stateChanged() ), SLOT( onSourceChanged() ) ); @@ -369,7 +390,7 @@ SourcesModel::indexFromItem( SourceTreeItem* item ) const idx = index( childIndexList[ i ], 0, idx ); } qDebug() << "Got index from item:" << idx << idx.data( Qt::DisplayRole ).toString(); - + qDebug() << "parent:" << idx.parent(); return idx; } diff --git a/src/sourcetree/sourcesmodel.h b/src/sourcetree/sourcesmodel.h index 17fd6e082..1f744ee57 100644 --- a/src/sourcetree/sourcesmodel.h +++ b/src/sourcetree/sourcesmodel.h @@ -80,9 +80,8 @@ public: virtual bool dropMimeData(const QMimeData* data, Qt::DropAction action, int row, int column, const QModelIndex& parent); virtual Qt::DropActions supportedDropActions() const; virtual Qt::ItemFlags flags(const QModelIndex& index) const; - virtual bool hasChildren( const QModelIndex& parent = QModelIndex() ) const; - void appendItem( const Tomahawk::source_ptr& source ); + void appendItem( const Tomahawk::source_ptr& source ); bool removeItem( const Tomahawk::source_ptr& source ); signals: diff --git a/src/sourcetree/sourcetreeitem.cpp b/src/sourcetree/sourcetreeitem.cpp index 07a6a134e..8f31325f7 100644 --- a/src/sourcetree/sourcetreeitem.cpp +++ b/src/sourcetree/sourcetreeitem.cpp @@ -172,6 +172,9 @@ CollectionItem::CollectionItem( SourcesModel* mdl, SourceTreeItem* parent, cons : SourceTreeItem( mdl, parent, SourcesModel::Collection ) , m_source( source ) { + if( m_source.isNull() ) { // super collection + return; + } // create category item m_playlists = new CategoryItem( model(), this, SourcesModel::PlaylistsCategory ); appendChild( m_playlists ); @@ -237,14 +240,15 @@ CollectionItem::onPlaylistsAdded( const QList< playlist_ptr >& playlists ) void CollectionItem::onPlaylistsDeleted( const QList< playlist_ptr >& playlists ) { - int curCount = m_playlists->children().count(); foreach( const playlist_ptr& playlist, playlists ) { + int curCount = m_playlists->children().count(); for( int i = 0; i < curCount; i++ ) { PlaylistItem* pl = qobject_cast< PlaylistItem* >( m_playlists->children().at( i ) ); if( pl && pl->playlist() == playlist ) { m_playlists->beginRowsRemoved( i, i ); - m_playlists->children().removeAt( i ); + m_playlists->removeChild( pl ); m_playlists->endRowsRemoved(); + break; } } } diff --git a/src/sourcetree/sourcetreeitem.h b/src/sourcetree/sourcetreeitem.h index da4266d69..90068a518 100644 --- a/src/sourcetree/sourcetreeitem.h +++ b/src/sourcetree/sourcetreeitem.h @@ -85,6 +85,7 @@ public: return QString(); } virtual void activate(); + virtual Qt::ItemFlags flags() { return Qt::ItemIsEnabled; } SourcesModel::CategoryType categoryType() { return m_category; } diff --git a/src/sourcetree/sourcetreeview.cpp b/src/sourcetree/sourcetreeview.cpp index 5ab54736b..ebbe5b4eb 100644 --- a/src/sourcetree/sourcetreeview.cpp +++ b/src/sourcetree/sourcetreeview.cpp @@ -94,13 +94,11 @@ SourceTreeView::SourceTreeView( QWidget* parent ) header()->setStretchLastSection( false ); header()->setResizeMode( 0, QHeaderView::Stretch ); - connect( m_model, SIGNAL( clicked( QModelIndex ) ), SIGNAL( clicked( QModelIndex ) ) ); + connect( m_proxyModel, SIGNAL( clicked( QModelIndex ) ), SIGNAL( clicked( QModelIndex ) ) ); connect( this, SIGNAL( clicked( QModelIndex ) ), SLOT( onItemActivated( QModelIndex ) ) ); connect( selectionModel(), SIGNAL( selectionChanged( QItemSelection, QItemSelection ) ), SLOT( onSelectionChanged() ) ); -// m_model->appendItem( source_ptr() ); - hideOfflineSources(); // connect( PlaylistManager::instance(), SIGNAL( playlistActivated( Tomahawk::playlist_ptr ) ), @@ -488,7 +486,7 @@ SourceDelegate::paint( QPainter* painter, const QStyleOptionViewItem& option, co Q_ASSERT( item ); QStyleOptionViewItemV4 o3 = option; - if ( type != SourcesModel::Collection ) + if ( type != SourcesModel::Collection && type != SourcesModel::Category ) o3.rect.setX( 0 ); QApplication::style()->drawControl( QStyle::CE_ItemViewItem, &o3, painter );