]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/playlist/standardpanel.hpp
9857051f1f07a3ba0a94d233e58db5ed6fa64810
[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 MLModel;
41 class QKeyEvent;
42 class QWheelEvent;
43 class QStackedLayout;
44 class QModelIndex;
45
46 class QAbstractItemView;
47 class QTreeView;
48 class PlIconView;
49 class PlListView;
50 class PicFlowView;
51
52 class LocationBar;
53 class PLSelector;
54 class PlaylistWidget;
55
56 class StandardPLPanel: public QWidget
57 {
58     Q_OBJECT
59
60 public:
61     StandardPLPanel( PlaylistWidget *, intf_thread_t *,
62                      playlist_item_t *, PLSelector *, PLModel *, MLModel * );
63     virtual ~StandardPLPanel();
64
65     enum { ICON_VIEW = 0,
66            TREE_VIEW ,
67            LIST_VIEW,
68            PICTUREFLOW_VIEW,
69            VIEW_COUNT };
70
71     int currentViewIndex() const;
72     int getScrollBarsSize() const;
73
74 protected:
75     PLModel *model;
76     MLModel *mlmodel;
77     virtual void wheelEvent( QWheelEvent *e );
78
79 private:
80     intf_thread_t *p_intf;
81
82     PLSelector  *p_selector;
83
84     QTreeView         *treeView;
85     PlIconView        *iconView;
86     PlListView        *listView;
87     PicFlowView       *picFlowView;
88
89     QAbstractItemView *currentView;
90
91     QStackedLayout    *viewStack;
92
93     QSignalMapper *selectColumnsSigMapper;
94
95     int lastActivatedId;
96     int currentRootIndexId;
97
98     void createTreeView();
99     void createIconView();
100     void createListView();
101     void createCoverView();
102     void changeModel ( bool b_ml );
103     bool eventFilter ( QObject * watched, QEvent * event );
104
105 public slots:
106     void setRoot( playlist_item_t *, bool );
107     void browseInto( const QModelIndex& );
108
109 private slots:
110     void deleteSelection();
111     void handleExpansion( const QModelIndex& );
112     void activate( const QModelIndex & );
113
114     void browseInto();
115     void browseInto( int );
116
117     void gotoPlayingItem();
118
119     void search( const QString& searchText );
120     void searchDelayed( const QString& searchText );
121
122     void popupPlView( const QPoint & );
123     void popupSelectColumn( QPoint );
124     void toggleColumnShown( int );
125
126     void showView( int );
127     void cycleViews();
128
129 signals:
130     void viewChanged( const QModelIndex& );
131 };
132
133
134 static const QString viewNames[ StandardPLPanel::VIEW_COUNT ]
135                                 = { qtr( "Icon View" ),
136                                     qtr( "Detailed View" ),
137                                     qtr( "List View" ),
138                                     qtr( "PictureFlow View ") };
139
140 #endif