]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/playlist/selector.hpp
qt4: implement drag&drop in playlist selector
[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 };
52
53 Q_DECLARE_METATYPE( playlist_item_t *);
54 class PLSelector: public QTreeWidget
55 {
56     Q_OBJECT;
57 public:
58     PLSelector( QWidget *p, intf_thread_t *_p_intf );
59     virtual ~PLSelector();
60 protected:
61     friend class PlaylistWidget;
62 private:
63     QStringList mimeTypes () const;
64     bool dropMimeData ( QTreeWidgetItem * parent, int index, const QMimeData * data, Qt::DropAction action );
65     void createItems();
66     intf_thread_t *p_intf;
67 private slots:
68     void setSource( QTreeWidgetItem *item );
69 signals:
70     void activated( playlist_item_t * );
71 };
72
73 #endif