]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/playlist/playlist_item.hpp
Stop allocating QSettings all the time everywhere.
[vlc] / modules / gui / qt4 / components / playlist / playlist_item.hpp
1 /*****************************************************************************
2  * playlist_item.hpp : Item for a playlist tree
3  ****************************************************************************
4  * Copyright (C) 2006 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 <vlc_common.h>
32 #include <vlc_input.h>
33 #include <vlc_playlist.h>
34 #include "components/playlist/playlist_model.hpp"
35
36 #include <QString>
37 #include <QList>
38
39 class QSettings;
40 class PLModel;
41
42 class PLItem
43 {
44     friend class PLModel;
45 public:
46     PLItem( int, int, PLItem *parent , PLModel * );
47     PLItem( playlist_item_t *, PLItem *parent, PLModel * );
48     PLItem( playlist_item_t *, QSettings *, PLModel * );
49     ~PLItem();
50
51     int row() const;
52
53     void insertChild( PLItem *, int p, bool signal = true );
54     void appendChild( PLItem *item, bool signal = true )
55     {
56         insertChild( item, children.count(), signal );
57     };
58
59     void remove( PLItem *removed );
60
61     PLItem *child( int row ) { return children.value( row ); };
62     int childCount() const { return children.count(); };
63
64     PLItem *parent() { return parentItem; };
65
66     QString columnString( int col ) { return item_col_strings.value( col ); };
67
68     void update( playlist_item_t *, bool );
69
70 protected:
71     QList<PLItem*> children;
72     QList<QString> item_col_strings;
73     bool b_current;
74     int i_type;
75     int i_id;
76     int i_input_id;
77     int i_showflags;
78
79 private:
80     void init( int, int, PLItem *, PLModel *, QSettings * );
81     void updateColumnHeaders();
82     PLItem *parentItem;
83     PLModel *model;
84 };
85
86 #endif
87