]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/playlist/selector.hpp
Qt: cosmetics
[vlc] / modules / gui / qt4 / components / playlist / selector.hpp
1 /*****************************************************************************
2  * selector.hpp : Playlist source selector
3  ****************************************************************************
4  * Copyright (C) 2000-2009 the VideoLAN team
5  * $Id$
6  *
7  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
8  *          Jean-Baptiste Kempf
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 _PLSEL_H_
26 #define _PLSEL_H_
27
28 #ifdef HAVE_CONFIG_H
29 # include "config.h"
30 #endif
31
32 #include <QWidget>
33 #include <QTreeWidgetItem>
34
35 #include <vlc_playlist.h>
36
37 #include "qt4.hpp"
38
39 class QTreeWidget;
40 class PlaylistWidget;
41
42 enum {
43     PL_TYPE,
44     ML_TYPE,
45     SD_TYPE,
46 };
47
48 enum {
49     TYPE_ROLE = Qt::UserRole,
50     PPL_ITEM_ROLE,
51     NAME_ROLE,
52 };
53
54 Q_DECLARE_METATYPE( playlist_item_t *);
55 class PLSelector: public QWidget
56 {
57     Q_OBJECT;
58 public:
59     PLSelector( QWidget *p, intf_thread_t *_p_intf );
60     virtual ~PLSelector();
61 protected:
62     friend class PlaylistWidget;
63 private:
64     intf_thread_t *p_intf;
65     QTreeWidget *view;
66     void createItems();
67 private slots:
68     void setSource( QTreeWidgetItem *item );
69 signals:
70     void activated( playlist_item_t * );
71 };
72
73 #endif