]> git.sesse.net Git - vlc/blob - modules/gui/qt4/playlist_model.hpp
796a67bca4905e2d8431e2cf19bb02cb0f7f992b
[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
54     void update( playlist_item_t *);
55 protected:
56     QList<PLItem*> children;
57     int i_id;
58     int i_input_id;
59     friend class PLModel;
60 private:
61     void init( int, int, PLItem *, PLModel * );
62     QList<QString> strings;
63     PLItem *parentItem;
64
65     PLModel *model;
66 };
67
68 static int ItemUpdate_Type = QEvent::User + 2;
69 static int ItemDelete_Type = QEvent::User + 3;
70 static int ItemAppend_Type = QEvent::User + 4;
71
72 class PLEvent : public QEvent
73 {
74 public:
75     PLEvent( int type, int id ) : QEvent( (QEvent::Type)(type) )
76     { i_id = id; p_add = NULL; };
77     PLEvent(  playlist_add_t  *a ) : QEvent( (QEvent::Type)(ItemAppend_Type) )
78     { p_add = a; };
79     virtual ~PLEvent() {};
80                           
81     int i_id;
82     playlist_add_t *p_add;
83 };   
84                     
85
86 #include <QAbstractItemModel>
87 #include <QModelIndex>
88 #include <QVariant>
89
90 class PLModel : public QAbstractItemModel
91 {
92     Q_OBJECT
93
94 public:
95     PLModel( playlist_t *, playlist_item_t *, int, QObject *parent = 0);
96     ~PLModel();
97
98     void customEvent( QEvent * );
99
100     /* QModel stuff */
101     QVariant data( const QModelIndex &index, int role) const;
102     Qt::ItemFlags flags( const QModelIndex &index) const;
103     QVariant headerData( int section, Qt::Orientation orientation,
104                          int role = Qt::DisplayRole) const;
105     
106     QModelIndex index( int r, int c, const QModelIndex &parent ) const;
107     QModelIndex index( PLItem *, int c ) const;
108                     
109     QModelIndex parent( const QModelIndex &index) const;
110     int childrenCount( const QModelIndex &parent = QModelIndex() ) const;
111     int rowCount( const QModelIndex &parent = QModelIndex() ) const;
112     int columnCount( const QModelIndex &parent = QModelIndex() ) const;
113
114     bool b_need_update;
115     int i_items_to_append;
116     void Rebuild();
117 private:
118     void addCallbacks();
119     void delCallbacks();
120     PLItem *rootItem;
121
122     playlist_t *p_playlist;
123
124     /* Update processing */
125     void ProcessInputItemUpdate( int i_input_id );
126     void ProcessItemRemoval( int i_id );
127     void ProcessItemAppend( playlist_add_t *p_add );
128     
129     void UpdateTreeItem( PLItem *, bool );
130     void UpdateTreeItem( playlist_item_t *, PLItem *, bool );
131     void UpdateNodeChildren( PLItem * );
132     void UpdateNodeChildren( playlist_item_t *, PLItem * );
133         
134     /* Lookups */
135     PLItem *FindById( PLItem *, int );
136     PLItem *FindByInput( PLItem *, int );
137     PLItem *FindInner( PLItem *, int , bool );
138     PLItem *p_cached_item;
139     PLItem *p_cached_item_bi;
140     int i_cached_id;
141     int i_cached_input_id;
142
143 friend class PLItem;
144 };
145
146 #endif