]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/playlist/selector.hpp
Qt4: media selector beautification
[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 #include <QStyledItemDelegate>
35
36 #include <vlc_playlist.h>
37
38 #include "qt4.hpp"
39
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     LONGNAME_ROLE,
53 };
54
55 class PLSelectorDelegate : public QStyledItemDelegate
56 {
57   private:
58     QSize sizeHint ( const QStyleOptionViewItem& option, const QModelIndex& index ) const
59     {
60       QSize sz = QStyledItemDelegate::sizeHint( option, index );
61       if( sz.height() < 25 ) sz.setHeight(25);
62       return sz;
63     }
64 };
65
66 Q_DECLARE_METATYPE( playlist_item_t *);
67 class PLSelector: public QTreeWidget
68 {
69     Q_OBJECT;
70 public:
71     PLSelector( QWidget *p, intf_thread_t *_p_intf );
72     virtual ~PLSelector();
73 protected:
74     friend class PlaylistWidget;
75 private:
76     QStringList mimeTypes () const;
77     void makeStandardItem( QTreeWidgetItem*, const QString& );
78     bool dropMimeData ( QTreeWidgetItem * parent, int index, const QMimeData * data, Qt::DropAction action );
79     void createItems();
80     intf_thread_t *p_intf;
81 private slots:
82     void setSource( QTreeWidgetItem *item );
83 signals:
84     void activated( playlist_item_t * );
85 };
86
87 #endif