]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/playlist/playlist_item.hpp
Qt: Rework Models.
[vlc] / modules / gui / qt4 / components / playlist / playlist_item.hpp
1 /*****************************************************************************
2  * playlist_item.hpp : Item for a playlist tree
3  ****************************************************************************
4  * Copyright (C) 2006-2011 the VideoLAN team
5  * $Id$
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_ITEM_H_
25 #define _PLAYLIST_ITEM_H_
26
27 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
30
31 #include <QList>
32 #include <QString>
33 #include <QUrl>
34
35 enum
36 {
37     INPUTITEM_ID = 1,
38     PLAYLIST_ID,
39     MLMEDIA_ID
40 };
41
42 class AbstractPLItem
43 {
44     friend class PLItem; /* super ugly glue stuff */
45     friend class MLItem;
46     friend class VLCModel;
47     friend class PLModel;
48     friend class MLModel;
49
50 public:
51     virtual ~AbstractPLItem() {}
52
53 protected:
54     virtual int id( int type ) = 0;
55     int childCount() const { return children.count(); }
56     int indexOf( AbstractPLItem *item ) const { return children.indexOf( item ); };
57     int lastIndexOf( AbstractPLItem *item ) const { return children.lastIndexOf( item ); };
58     AbstractPLItem *parent() { return parentItem; }
59     virtual input_item_t *inputItem() = 0;
60     void insertChild( AbstractPLItem *item, int pos = -1 ) { children.insert( pos, item ); }
61     void appendChild( AbstractPLItem *item ) { insertChild( item, children.count() ); } ;
62     virtual AbstractPLItem *child( int id ) const = 0;
63     void removeChild( AbstractPLItem *item );
64     void clearChildren();
65     virtual QUrl getURI() const = 0;
66     virtual QString getTitle() const = 0;
67
68     QList<AbstractPLItem *> children;
69     AbstractPLItem *parentItem;
70 };
71
72 class PLItem : public AbstractPLItem
73 {
74     friend class PLModel;
75
76 public:
77     virtual ~PLItem();
78     bool hasSameParent( PLItem *other ) { return parent() == other->parent(); }
79     bool operator< ( AbstractPLItem& );
80
81 private:
82     /* AbstractPLItem */
83     int id( int type );
84     input_item_t *inputItem() { return p_input; }
85     AbstractPLItem *child( int id ) const { return children.value( id ); };
86     virtual QUrl getURI() const;
87     virtual QString getTitle() const;
88
89     /* Local */
90     PLItem( playlist_item_t *, PLItem *parent );
91     int row();
92     void takeChildAt( int );
93
94     PLItem( playlist_item_t * );
95     void init( playlist_item_t *, PLItem * );
96     int i_playlist_id;
97     input_item_t *p_input;
98 };
99
100 #endif
101