]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/playlist/selector.hpp
Qt: make playlist widget even a bit more pretty
[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 #include <QPainter>
36 #include <QPushButton>
37 #include <QLabel>
38 #include <QHBoxLayout>
39
40 #include <vlc_playlist.h>
41
42 #include "qt4.hpp"
43
44 class PlaylistWidget;
45 class QVLCIconLabel;
46
47 enum SelectorItemType {
48     CATEGORY_TYPE,
49     SD_TYPE,
50     PL_ITEM_TYPE
51 };
52
53 enum SpecialData {
54     IS_PODCAST = 1,
55     IS_PL,
56     IS_ML
57 };
58
59 enum {
60     TYPE_ROLE = Qt::UserRole,
61     NAME_ROLE, //QString
62     LONGNAME_ROLE, //QString
63     PL_ITEM_ROLE, //playlist_item_t*
64     PL_ITEM_ID_ROLE, //playlist_item_t->i_id
65     IN_ITEM_ROLE, //input_item_t->i_id
66     SPECIAL_ROLE //SpecialData
67 };
68
69 enum ItemAction {
70     ADD_ACTION,
71     RM_ACTION
72 };
73
74 class PLSelItem : public QWidget
75 {
76     Q_OBJECT;
77 public:
78     PLSelItem( QTreeWidgetItem*, const QString& );
79     void setText( const QString& );
80     void addAction( ItemAction, const QString& toolTip = 0 );
81     QTreeWidgetItem *treeItem() { return qitem; }
82     QString text() { return lbl->text(); }
83 public slots:
84     void showAction();
85     void hideAction();
86 private slots:
87     void triggerAction() { emit action( this ); }
88 signals:
89     void action( PLSelItem* );
90 private:
91     void enterEvent( QEvent* );
92     void leaveEvent( QEvent* );
93     QTreeWidgetItem* qitem;
94     QVLCIconLabel *lblAction;
95     QLabel *lbl;
96     QHBoxLayout *layout;
97 };
98
99 Q_DECLARE_METATYPE( playlist_item_t *);
100 Q_DECLARE_METATYPE( input_item_t *);
101 class PLSelector: public QTreeWidget
102 {
103     Q_OBJECT;
104 public:
105     PLSelector( QWidget *p, intf_thread_t *_p_intf );
106     virtual ~PLSelector();
107 protected:
108     friend class PlaylistWidget;
109 private:
110     QStringList mimeTypes () const;
111     bool dropMimeData ( QTreeWidgetItem *, int, const QMimeData *, Qt::DropAction );
112     void createItems();
113     void drawBranches ( QPainter *, const QRect &, const QModelIndex & ) const;
114     PLSelItem * addItem (
115         SelectorItemType type, const QString& str, bool drop,
116         QTreeWidgetItem* parentItem = 0 );
117     PLSelItem * addPodcastItem( playlist_item_t *p_item );
118     inline PLSelItem * itemWidget( QTreeWidgetItem * );
119     intf_thread_t *p_intf;
120     QTreeWidgetItem *podcastsParent;
121     int podcastsParentId;
122 private slots:
123     void setSource( QTreeWidgetItem *item );
124     void plItemAdded( int, int );
125     void plItemRemoved( int );
126     void inputItemUpdate( input_item_t * );
127     void podcastAdd( PLSelItem* );
128     void podcastRemove( PLSelItem* );
129
130 signals:
131     void activated( playlist_item_t * );
132 };
133
134 #endif