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