]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/playlist/selector.hpp
qt4: selector take2 to fix service discoveries
[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 <QTreeWidget>
33 #include <QTreeWidgetItem>
34
35 #include <vlc_playlist.h>
36
37 #include "qt4.hpp"
38
39 class PlaylistWidget;
40
41 enum {
42     PL_TYPE,
43     ML_TYPE,
44     SD_TYPE,
45 };
46
47 enum {
48     TYPE_ROLE = Qt::UserRole,
49     PPL_ITEM_ROLE,
50     NAME_ROLE,
51     LONGNAME_ROLE,
52 };
53
54 Q_DECLARE_METATYPE( playlist_item_t *);
55 class PLSelector: public QTreeWidget
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     QStringList mimeTypes () const;
65     bool dropMimeData ( QTreeWidgetItem * parent, int index, const QMimeData * data, Qt::DropAction action );
66     void createItems();
67     intf_thread_t *p_intf;
68 private slots:
69     void setSource( QTreeWidgetItem *item );
70 signals:
71     void activated( playlist_item_t * );
72 };
73
74 #endif