]> git.sesse.net Git - vlc/blob - modules/gui/qt4/playlist_model.hpp
Some more playlist code
[vlc] / modules / gui / qt4 / playlist_model.hpp
1 /*****************************************************************************
2  * playlist_model.hpp : Model for a playlist tree
3  ****************************************************************************
4  * Copyright (C) 2000-2005 the VideoLAN team
5  * $Id: wxwidgets.cpp 15731 2006-05-25 14:43:53Z zorglub $
6  *
7  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #ifndef _PLAYLIST_MODEL_H_
25 #define _PLAYLIST_MODEL_H_
26
27 #include <QObject>
28 #include <QEvent>
29 #include <vlc/vlc.h>
30 #include <vlc/input.h>
31 #include <vlc_playlist.h>
32
33 class PLModel;
34
35 class PLItem
36 {
37 public:
38     PLItem( int, int, PLItem *parent , PLModel *);
39     PLItem( playlist_item_t *, PLItem *parent, PLModel *);
40     ~PLItem();
41
42     int row() const;
43     void insertChild( PLItem *, int p, bool signal = true );
44
45     void appendChild( PLItem *item, bool signal = true ) 
46     {
47         insertChild( item, children.count(), signal );
48     };
49     PLItem *child( int row ) { return children.value( row ); };
50     int childCount() const { return children.count(); };
51     QString columnString( int col ) { return strings.value( col ); };
52     PLItem *parent() { return parentItem; };
53 protected:
54     QList<PLItem*> children;
55     int i_id;
56     int i_input_id;
57     friend class PLModel;
58 private:
59     QList<QString> strings;
60     PLItem *parentItem;
61
62     PLModel *model;
63 };
64
65 static int ItemUpdate_Type = QEvent::User + 2;
66 static int ItemDelete_Type = QEvent::User + 3;
67 static int ItemAppend_Type = QEvent::User + 4;
68
69 class PLEvent : public QEvent
70 {
71 public:
72     PLEvent( int type, int id ) : QEvent( (QEvent::Type)(type) )
73     { i_id = id; p_add = NULL; };
74     PLEvent(  playlist_add_t  *a ) : QEvent( (QEvent::Type)(ItemAppend_Type) )
75     { p_add = a; };
76     virtual ~PLEvent() {};
77                           
78     int i_id;
79     playlist_add_t *p_add;
80 };   
81                     
82
83 #include <QAbstractItemModel>
84 #include <QModelIndex>
85 #include <QVariant>
86
87 class PLModel : public QAbstractItemModel
88 {
89     Q_OBJECT
90
91 public:
92     PLModel( playlist_item_t *, int, QObject *parent = 0);
93     ~PLModel();
94
95     void customEvent( QEvent * );
96
97     /* QModel stuff */
98     QVariant data( const QModelIndex &index, int role) const;
99     Qt::ItemFlags flags( const QModelIndex &index) const;
100     QVariant headerData( int section, Qt::Orientation orientation,
101                          int role = Qt::DisplayRole) const;
102     
103     QModelIndex index( int r, int c, const QModelIndex &parent ) const;
104     QModelIndex index( PLItem *, int c ) const;
105                     
106     QModelIndex parent( const QModelIndex &index) const;
107     int childrenCount( const QModelIndex &parent = QModelIndex() ) const;
108     int rowCount( const QModelIndex &parent = QModelIndex() ) const;
109     int columnCount( const QModelIndex &parent = QModelIndex() ) const;
110
111     bool b_need_update;
112     int i_items_to_append;
113 private:
114     void addCallbacks();
115     void delCallbacks();
116     PLItem *rootItem;
117
118     playlist_t *p_playlist;
119
120     /* Update processing */
121     void Rebuild();
122     void ProcessInputItemUpdate( int i_input_id );
123     void ProcessItemRemoval( int i_id );
124     void ProcessItemAppend( playlist_add_t *p_add );
125     
126     void UpdateTreeItem( PLItem *, bool );
127     void UpdateTreeItem( playlist_item_t *, PLItem *, bool );
128     void UpdateNodeChildren( PLItem * );
129     void UpdateNodeChildren( playlist_item_t *, PLItem * );
130         
131     /* Lookups */
132     PLItem *FindById( PLItem *, int );
133     PLItem *FindByInput( PLItem *, int );
134     PLItem *FindInner( PLItem *, int , bool );
135     PLItem *p_cached_item;
136     PLItem *p_cached_item_bi;
137     int i_cached_id;
138     int i_cached_input_id;
139
140 friend class PLItem;
141 };
142
143 #endif