]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/playlist/panels.hpp
Qt4 - Cleanups and use QMenu on the stack to avoid leaks. Show menu with exec instead...
[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 #include "../interface_widgets.hpp"
31
32 #include <QModelIndex>
33 #include <QWidget>
34 #include <QString>
35
36 class QTreeView;
37 class PLModel;
38 class QPushButton;
39 class QKeyEvent;
40 class ClickLineEdit;
41
42 class PLPanel: public QWidget
43 {
44     Q_OBJECT;
45 public:
46     PLPanel( PlaylistWidget *p, intf_thread_t *_p_intf ) : QWidget( p )
47     {
48         p_intf = _p_intf;
49         parent = p;
50     }
51     virtual ~PLPanel() {};
52 protected:
53     intf_thread_t *p_intf;
54     QFrame *parent;
55 public slots:
56     virtual void setRoot( int ) = 0;
57 };
58
59 class PlaylistWidget;
60
61 class StandardPLPanel: public PLPanel
62 {
63     Q_OBJECT;
64 public:
65     StandardPLPanel( PlaylistWidget *, intf_thread_t *,
66                      playlist_t *,playlist_item_t * );
67     virtual ~StandardPLPanel();
68 protected:
69     virtual void keyPressEvent( QKeyEvent *e );
70 protected:
71     PLModel *model;
72     friend class PlaylistWidget;
73 private:
74     QTreeView *view;
75     QPushButton *repeatButton , *randomButton,*addButton;
76     ClickLineEdit *searchLine;
77     int currentRootId;
78     QSignalMapper *ContextUpdateMapper;
79 public slots:
80     void removeItem( int );
81     virtual void setRoot( int );
82 private slots:
83     void deleteSelection();
84     void handleExpansion( const QModelIndex& );
85     void toggleRandom();
86     void toggleRepeat();
87     void doPopup( QModelIndex index, QPoint point );
88     void search( QString search );
89     void clearFilter();
90     void add();
91     void setCurrentRootId( int );
92     void popupSelectColumn( QPoint );
93 };
94
95 #endif