]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/playlist/standardpanel.hpp
Qt4: don't create multiple playlist models
[vlc] / modules / gui / qt4 / components / playlist / standardpanel.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 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
30
31 #include "qt4.hpp"
32 #include "components/playlist/playlist.hpp"
33
34 #include <QModelIndex>
35 #include <QWidget>
36 #include <QString>
37 #include <QToolBar>
38
39 #include <vlc_playlist.h>
40
41 class QSignalMapper;
42 class QTreeView;
43 class QListView;
44 class PLModel;
45 class QPushButton;
46 class QKeyEvent;
47 class QWheelEvent;
48 class QStackedLayout;
49 class PlIconView;
50 class PlListView;
51 class LocationBar;
52 class PLSelector;
53 class QAbstractItemView;
54 class PlaylistWidget;
55
56 class StandardPLPanel: public QWidget
57 {
58     Q_OBJECT
59
60 public:
61     StandardPLPanel( PlaylistWidget *, intf_thread_t *,
62                      playlist_t *, playlist_item_t *, PLSelector *, PLModel * );
63     virtual ~StandardPLPanel();
64 protected:
65     friend class PlaylistWidget;
66
67     PLModel *model;
68 private:
69     enum {
70       TREE_VIEW = 0,
71       ICON_VIEW,
72       LIST_VIEW,
73
74       VIEW_COUNT
75     };
76
77     intf_thread_t *p_intf;
78
79     QWidget     *parent;
80     QGridLayout *layout;
81     PLSelector  *p_selector;
82
83     QTreeView   *treeView;
84     PlIconView  *iconView;
85     PlListView  *listView;
86     QAbstractItemView *currentView;
87     QStackedLayout *viewStack;
88
89     int currentRootId;
90     QSignalMapper *selectColumnsSigMapper;
91
92     int lastActivatedId;
93     int currentRootIndexId;
94
95     void createTreeView();
96     void createIconView();
97     void createListView();
98     void wheelEvent( QWheelEvent *e );
99     bool eventFilter ( QObject * watched, QEvent * event );
100
101 public slots:
102     void setRoot( playlist_item_t * );
103     void browseInto( const QModelIndex& );
104     void browseInto( );
105
106 private slots:
107     void deleteSelection();
108     void handleExpansion( const QModelIndex& );
109     void handleRootChange();
110     void activate( const QModelIndex & );
111     void browseInto( input_item_t * );
112
113     void gotoPlayingItem();
114
115     void search( const QString& searchText );
116     void searchDelayed( const QString& searchText );
117
118     void popupPlView( const QPoint & );
119     void popupSelectColumn( QPoint );
120     void toggleColumnShown( int );
121
122     void showView( int );
123     void cycleViews();
124
125 signals:
126     void viewChanged( const QModelIndex& );
127 };
128
129 #endif