]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/playlist/playlist_model.hpp
Qt: iconView delegate: encode PLModel::IsCurrent(QModelIndex) into cache key
[vlc] / modules / gui / qt4 / components / playlist / playlist_model.hpp
1 /*****************************************************************************
2  * playlist_model.hpp : Model for a playlist tree
3  ****************************************************************************
4  * Copyright (C) 2006 the VideoLAN team
5  * $Id$
6  *
7  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
8  *          Jakob Leben <jleben@videolan.org>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 #ifndef _PLAYLIST_MODEL_H_
26 #define _PLAYLIST_MODEL_H_
27
28 #ifdef HAVE_CONFIG_H
29 # include "config.h"
30 #endif
31
32 #include "qt4.hpp"
33
34 #include <vlc_input.h>
35 #include <vlc_playlist.h>
36
37 #include "playlist_item.hpp"
38
39 #include <QModelIndex>
40 #include <QObject>
41 #include <QEvent>
42 #include <QMimeData>
43 #include <QSignalMapper>
44 #include <QAbstractItemModel>
45 #include <QVariant>
46
47 class QSignalMapper;
48 class PLItem;
49
50 class PLModel : public QAbstractItemModel
51 {
52     Q_OBJECT
53
54 friend class PLItem;
55
56 public:
57     enum {
58       IsCurrentRole = Qt::UserRole
59     };
60
61     PLModel( playlist_t *, intf_thread_t *,
62              playlist_item_t *, QObject *parent = 0 );
63     ~PLModel();
64
65     /*** QModel subclassing ***/
66
67     /* Data structure */
68     QVariant data( const QModelIndex &index, int role ) const;
69     QVariant headerData( int section, Qt::Orientation orientation,
70                          int role = Qt::DisplayRole ) const;
71     int rowCount( const QModelIndex &parent = QModelIndex() ) const;
72     int columnCount( const QModelIndex &parent = QModelIndex() ) const;
73     Qt::ItemFlags flags( const QModelIndex &index ) const;
74     QModelIndex index( int r, int c, const QModelIndex &parent ) const;
75     QModelIndex parent( const QModelIndex &index ) const;
76
77     /* Drag and Drop */
78     Qt::DropActions supportedDropActions() const;
79     QMimeData* mimeData( const QModelIndexList &indexes ) const;
80     bool dropMimeData( const QMimeData *data, Qt::DropAction action,
81                       int row, int column, const QModelIndex &target );
82     QStringList mimeTypes() const;
83
84     /**** Custom ****/
85
86     /* Lookups */
87     QStringList selectedURIs();
88     QModelIndex index( PLItem *, int c ) const;
89     QModelIndex index( int i_id, int c );
90     QModelIndex currentIndex( ) { return index( currentItem, 0 ); };
91     bool isCurrent( const QModelIndex &index ) const;
92     int itemId( const QModelIndex &index ) const;
93
94     /* Actions */
95     void popup( const QModelIndex & index, const QPoint &point, const QModelIndexList &list );
96     void doDelete( QModelIndexList selected );
97     void search( const QString& search_text );
98     void sort( int column, Qt::SortOrder order );
99     void sort( int i_root_id, int column, Qt::SortOrder order );
100     void removeItem( int );
101     void rebuild(); void rebuild( playlist_item_t *, bool b_first = false );
102
103     inline PLItem *getItem( QModelIndex index ) const
104     {
105         if( index.isValid() )
106             return static_cast<PLItem*>( index.internalPointer() );
107         else return rootItem;
108     }
109
110 private:
111
112     /* General */
113     PLItem *rootItem;
114     PLItem *currentItem;
115
116     playlist_t *p_playlist;
117     intf_thread_t *p_intf;
118     int i_depth;
119
120     static QIcon icons[ITEM_TYPE_NUMBER];
121
122     /* Actions */
123     void recurseDelete( QList<PLItem*> children, QModelIndexList *fullList );
124     void doDeleteItem( PLItem *item, QModelIndexList *fullList );
125     void updateTreeItem( PLItem * );
126     void removeItem ( PLItem * );
127     void takeItem( PLItem * ); //will not delete item
128     void insertChildren( PLItem *node, QList<PLItem*>& items, int i_pos );
129     void dropAppendCopy( QByteArray& data, PLItem *target );
130     void dropMove( QByteArray& data, PLItem *target, int new_pos );
131     /* The following actions will not signal the view! */
132     void updateChildren( PLItem * );
133     void updateChildren( playlist_item_t *, PLItem * );
134
135     /* Popup */
136     int i_popup_item, i_popup_parent, i_popup_column;
137     QModelIndexList current_selection;
138
139     /* Lookups */
140     PLItem *findById( PLItem *, int );
141     PLItem *findByInput( PLItem *, int );
142     PLItem *findInner( PLItem *, int , bool );
143
144     int columnFromMeta( int meta_column ) const;
145     int columnToMeta( int column ) const;
146     bool canEdit() const;
147     PLItem *p_cached_item;
148     PLItem *p_cached_item_bi;
149     int i_cached_id;
150     int i_cached_input_id;
151
152 signals:
153     void currentChanged( const QModelIndex& );
154
155 public slots:
156     void activateItem( const QModelIndex &index );
157     void activateItem( playlist_item_t *p_item );
158
159 private slots:
160     void popupPlay();
161     void popupDel();
162     void popupInfo();
163     void popupStream();
164     void popupSave();
165     void popupExplore();
166     void popupAddNode();
167     void popupSortAsc();
168     void popupSortDesc();
169     void processInputItemUpdate( input_item_t *);
170     void processInputItemUpdate( input_thread_t* p_input );
171     void processItemRemoval( int i_id );
172     void processItemAppend( int item, int parent );
173 };
174
175 #endif