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