/src/sourcetree/sourcetreeview.h
http://github.com/tomahawk-player/tomahawk · C Header · 127 lines · 82 code · 27 blank · 18 comment · 0 complexity · 633bf396895114dfb3524f15688b500a MD5 · raw file
- /* === This file is part of Tomahawk Player - <http://tomahawk-player.org> ===
- *
- * Copyright 2010-2011, Christian Muehlhaeuser <muesli@tomahawk-player.org>
- * Copyright 2010-2012, Jeff Mitchell <jeff@tomahawk-player.org>
- *
- * Tomahawk is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * Tomahawk is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with Tomahawk. If not, see <http://www.gnu.org/licenses/>.
- */
- #ifndef SOURCETREEVIEW_H
- #define SOURCETREEVIEW_H
- #include "Typedefs.h"
- #include "SourcePlaylistInterface.h"
- #include <QTreeView>
- #include <QMenu>
- class SourceTreePopupDialog;
- class CollectionModel;
- class PlaylistModel;
- class SourcesModel;
- class SourcesProxyModel;
- class SourceDelegate;
- namespace Tomahawk
- {
- class LatchManager;
- }
- class SourceTreeView : public QTreeView
- {
- Q_OBJECT
- public:
- explicit SourceTreeView( QWidget* parent = 0 );
- ~SourceTreeView();
- public slots:
- void showOfflineSources( bool offlineSourcesShown );
- void renamePlaylist();
- void update( const QModelIndex &index );
- signals:
- void onOnline( const QModelIndex& index );
- void onOffline( const QModelIndex& index );
- void latchRequest( const Tomahawk::source_ptr& source );
- void unlatchRequest( const Tomahawk::source_ptr& source );
- void catchUpRequest();
- void latchModeChangeRequest( const Tomahawk::source_ptr& source, bool realtime );
- private slots:
- void onItemExpanded( const QModelIndex& idx );
- void onItemActivated( const QModelIndex& index );
- void selectRequest( const QPersistentModelIndex& idx );
- void expandRequest( const QPersistentModelIndex& idx );
- void toggleExpandRequest( const QPersistentModelIndex& idx );
- void onItemDoubleClicked( const QModelIndex& idx );
- void loadPlaylist();
- void deletePlaylist( const QModelIndex& = QModelIndex() );
- void copyPlaylistLink();
- void exportPlaylist();
- void addToLocal();
- void latchOnOrCatchUp();
- void latchOff();
- void latchOnOrCatchUp( const Tomahawk::source_ptr& source );
- void latchOff( const Tomahawk::source_ptr& source );
- void latchModeToggled( bool checked );
- void onCustomContextMenu( const QPoint& pos );
- void onSelectionChanged();
- void onDeletePlaylistResult( bool result );
- protected:
- void drawRow( QPainter* painter, const QStyleOptionViewItem& option, const QModelIndex& index ) const;
- void drawBranches( QPainter *painter, const QRect &rect, const QModelIndex &index ) const;
- virtual void paintEvent( QPaintEvent* event );
- virtual void dragEnterEvent( QDragEnterEvent* event );
- virtual void dragLeaveEvent( QDragLeaveEvent* event );
- virtual void dragMoveEvent( QDragMoveEvent* event );
- virtual void dropEvent( QDropEvent* event );
- virtual void keyPressEvent( QKeyEvent* event );
- private:
- void setupMenus();
- template< typename T >
- T* itemFromIndex( const QModelIndex& index ) const;
- SourcesModel* m_model;
- SourcesProxyModel* m_proxyModel;
- QModelIndex m_contextMenuIndex;
- SourceDelegate* m_delegate;
- Tomahawk::LatchManager* m_latchManager;
- QWeakPointer<SourceTreePopupDialog> m_popupDialog;
- QMenu m_playlistMenu;
- QMenu m_roPlaylistMenu;
- QMenu m_latchMenu;
- QMenu m_privacyMenu;
- bool m_dragging;
- QRect m_dropRect;
- QPersistentModelIndex m_dropIndex;
- QPersistentModelIndex m_selectedIndex;
- };
- #endif // SOURCETREEVIEW_H