]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/playlist/playlist_model.hpp
364234af2649bc0a3fbfc91b8ddb6354ba248078
[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 #include <QAction>
47
48 class PLItem;
49 class PLSelector;
50 class PlMimeData;
51
52 class PLModel : public QAbstractItemModel
53 {
54     Q_OBJECT
55
56 friend class PLItem;
57 friend class PLSelector;
58
59 public:
60     enum {
61       IsCurrentRole = Qt::UserRole,
62       IsLeafNodeRole
63     };
64
65     PLModel( playlist_t *, intf_thread_t *,
66              playlist_item_t *, QObject *parent = 0 );
67     ~PLModel();
68
69     /*** QModel subclassing ***/
70
71     /* Data structure */
72     QVariant data( const QModelIndex &index, int role ) const;
73     QVariant headerData( int section, Qt::Orientation orientation,
74                          int role = Qt::DisplayRole ) const;
75     int rowCount( const QModelIndex &parent = QModelIndex() ) const;
76     int columnCount( const QModelIndex &parent = QModelIndex() ) const;
77     Qt::ItemFlags flags( const QModelIndex &index ) const;
78     QModelIndex index( int r, int c, const QModelIndex &parent ) const;
79     QModelIndex parent( const QModelIndex &index ) const;
80
81     /* Drag and Drop */
82     Qt::DropActions supportedDropActions() const;
83     QMimeData* mimeData( const QModelIndexList &indexes ) const;
84     bool dropMimeData( const QMimeData *data, Qt::DropAction action,
85                       int row, int column, const QModelIndex &target );
86     QStringList mimeTypes() const;
87
88     /**** Custom ****/
89
90     /* Lookups */
91     QStringList selectedURIs();
92     QModelIndex index( PLItem *, int c ) const;
93     QModelIndex index( int i_id, int c );
94     QModelIndex currentIndex();
95     bool isCurrent( const QModelIndex &index ) const;
96     int itemId( const QModelIndex &index ) const;
97     static int columnFromMeta( int meta_column );
98     static int columnToMeta( int column );
99
100     /* Actions */
101     bool popup( const QModelIndex & index, const QPoint &point, const QModelIndexList &list );
102     void doDelete( QModelIndexList selected );
103     void search( const QString& search_text, const QModelIndex & root, bool b_recursive );
104     void sort( int column, Qt::SortOrder order );
105     void sort( int i_root_id, int column, Qt::SortOrder order );
106     void rebuild();
107     void rebuild( playlist_item_t * );
108
109     inline PLItem *getItem( QModelIndex index ) const
110     {
111         if( index.isValid() )
112             return static_cast<PLItem*>( index.internalPointer() );
113         else return rootItem;
114     }
115
116 signals:
117     void currentChanged( const QModelIndex& );
118     void rootChanged();
119
120 public slots:
121     void activateItem( const QModelIndex &index );
122     void activateItem( playlist_item_t *p_item );
123
124 private:
125     /* General */
126     PLItem *rootItem;
127
128     playlist_t *p_playlist;
129     intf_thread_t *p_intf;
130
131     static QIcon icons[ITEM_TYPE_NUMBER];
132
133     /* Shallow actions (do not affect core playlist) */
134     void updateTreeItem( PLItem * );
135     void removeItem ( PLItem * );
136     void removeItem( int );
137     void recurseDelete( QList<PLItem*> children, QModelIndexList *fullList );
138     void takeItem( PLItem * ); //will not delete item
139     void insertChildren( PLItem *node, QList<PLItem*>& items, int i_pos );
140     /* ...of which  the following will not update the views */
141     void updateChildren( PLItem * );
142     void updateChildren( playlist_item_t *, PLItem * );
143
144     /* Deep actions (affect core playlist) */
145     void dropAppendCopy( const PlMimeData * data, PLItem *target, int pos );
146     void dropMove( const PlMimeData * data, PLItem *target, int new_pos );
147
148     /* Popup */
149     int i_popup_item, i_popup_parent, i_popup_column;
150     QModelIndexList current_selection;
151     QMenu *sortingMenu;
152     QSignalMapper *sortingMapper;
153
154     /* Lookups */
155     PLItem *findById( PLItem *, int );
156     PLItem *findByInput( PLItem *, int );
157     PLItem *findInner( PLItem *, int , bool );
158     bool canEdit() const;
159
160     PLItem *p_cached_item;
161     PLItem *p_cached_item_bi;
162     int i_cached_id;
163     int i_cached_input_id;
164
165 private slots:
166     void popupPlay();
167     void popupDel();
168     void popupInfo();
169     void popupStream();
170     void popupSave();
171     void popupExplore();
172     void popupAddNode();
173     void popupSort( int column );
174     void processInputItemUpdate( input_item_t *);
175     void processInputItemUpdate( input_thread_t* p_input );
176     void processItemRemoval( int i_id );
177     void processItemAppend( int item, int parent );
178 };
179
180 class PlMimeData : public QMimeData
181 {
182     Q_OBJECT;
183
184 public:
185     PlMimeData();
186     ~PlMimeData();
187     void appendItem( input_item_t *p_item );
188     QList<input_item_t*> inputItems() const;
189     QStringList formats () const;
190
191 private:
192     QList<input_item_t*> _inputItems;
193     QMimeData *_mimeData;
194 };
195
196 #endif