]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/playlist/selector.hpp
Qt: cosmetics and code-cleaning
[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 Q_DECLARE_METATYPE( playlist_item_t *);
49 class PLSelector: public QWidget
50 {
51     Q_OBJECT;
52 public:
53     PLSelector( QWidget *p, intf_thread_t *_p_intf );
54     virtual ~PLSelector();
55 protected:
56     friend class PlaylistWidget;
57 private:
58     intf_thread_t *p_intf;
59     QTreeWidget *view;
60     void createItems();
61 private slots:
62     void setSource( QTreeWidgetItem *item );
63 signals:
64     void activated( playlist_item_t * );
65 };
66
67 #endif