]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/playlist/panels.hpp
Improve drag&drop handling
[vlc] / modules / gui / qt4 / components / playlist / panels.hpp
1 /*****************************************************************************
2  * panels.hpp : Panels for the playlist
3  ****************************************************************************
4  * Copyright (C) 2000-2005 the VideoLAN team
5  * $Id$
6  *
7  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #ifndef _PLPANELS_H_
25 #define _PLPANELS_H_
26
27 #include <vlc/vlc.h>
28
29 #include "qt4.hpp"
30
31 #include <QModelIndex>
32 #include <QWidget>
33 #include <QString>
34
35 class QTreeView;
36 class PLModel;
37 class QPushButton;
38 class QKeyEvent;
39 class ClickLineEdit;
40
41 class PLPanel: public QWidget
42 {
43     Q_OBJECT;
44 public:
45     PLPanel( BasePlaylistWidget *p, intf_thread_t *_p_intf ) : QWidget( p )
46     {
47         p_intf = _p_intf;
48         parent = p;
49     }
50     virtual ~PLPanel() {};
51 protected:
52     intf_thread_t *p_intf;
53     BasePlaylistWidget *parent;
54 public slots:
55     virtual void setRoot( int ) = 0;
56 };
57
58 class PlaylistWidget;
59
60 class StandardPLPanel: public PLPanel
61 {
62     Q_OBJECT;
63 public:
64     StandardPLPanel( BasePlaylistWidget *, intf_thread_t *,
65                      playlist_t *,playlist_item_t * );
66     virtual ~StandardPLPanel();
67 protected:
68     virtual void keyPressEvent( QKeyEvent *e );
69 protected:
70     PLModel *model;
71     friend class PlaylistWidget;
72 private:
73     QTreeView *view;
74     QPushButton *repeatButton , *randomButton,*addButton;
75     ClickLineEdit *searchLine;
76     int currentRootId;
77 public slots:
78     void removeItem( int );
79     virtual void setRoot( int );
80 private slots:
81     void deleteSelection();
82     void handleExpansion( const QModelIndex& );
83     void toggleRandom();
84     void toggleRepeat();
85     void doPopup( QModelIndex index, QPoint point );
86     void search( QString search );
87     void clearFilter();
88     void add();
89     void setCurrentRootId( int );
90 };
91
92 #endif