]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/playlist/standardpanel.hpp
a3403308e66a2eba6bd68c13aec4c19ebaa40b3a
[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
53 class StandardPLPanel: public QWidget
54 {
55     Q_OBJECT
56
57 public:
58     StandardPLPanel( PlaylistWidget *, intf_thread_t *,
59                      playlist_t *,playlist_item_t * );
60     virtual ~StandardPLPanel();
61 protected:
62     friend class PlaylistWidget;
63
64     PLModel *model;
65 private:
66     enum {
67       TREE_VIEW = 0,
68       ICON_VIEW,
69       LIST_VIEW,
70
71       VIEW_COUNT
72     };
73
74     intf_thread_t *p_intf;
75
76     QWidget     *parent;
77     QLabel      *title;
78     QGridLayout *layout;
79     LocationBar *locationBar;
80     SearchLineEdit *searchEdit;
81
82     QTreeView   *treeView;
83     PlIconView  *iconView;
84     PlListView  *listView;
85     QAbstractItemView *currentView;
86     QStackedLayout *viewStack;
87
88     QAction *viewActions[ VIEW_COUNT ];
89     QAction *iconViewAction, *treeViewAction;
90     int currentRootId;
91     QSignalMapper *selectColumnsSigMapper;
92     QSignalMapper *viewSelectionMapper;
93
94     int lastActivatedId;
95     int currentRootIndexId;
96
97     void createTreeView();
98     void createIconView();
99     void createListView();
100     void wheelEvent( QWheelEvent *e );
101     bool eventFilter ( QObject * watched, QEvent * event );
102
103 public slots:
104     void setRoot( playlist_item_t * );
105     void browseInto( const QModelIndex& );
106     void browseInto( );
107 private slots:
108     void deleteSelection();
109     void handleExpansion( const QModelIndex& );
110     void handleRootChange();
111     void gotoPlayingItem();
112     void search( const QString& searchText );
113     void popupSelectColumn( QPoint );
114     void popupPlView( const QPoint & );
115     void toggleColumnShown( int );
116     void showView( int );
117     void cycleViews();
118     void activate( const QModelIndex & );
119     void browseInto( input_item_t * );
120 };
121
122 class LocationButton : public QPushButton
123 {
124 public:
125     LocationButton( const QString &, bool bold, bool arrow, QWidget * parent = NULL );
126     QSize sizeHint() const;
127 private:
128     void paintEvent ( QPaintEvent * event );
129     QFontMetrics *metrics;
130     bool b_arrow;
131 };
132
133 class LocationBar : public QWidget
134 {
135     Q_OBJECT;
136 public:
137     LocationBar( PLModel * );
138     void setIndex( const QModelIndex & );
139     QSize sizeHint() const;
140 signals:
141     void invoked( const QModelIndex & );
142 public slots:
143     void setRootIndex();
144 private slots:
145     void invoke( int i_item_id );
146 private:
147     void layOut( const QSize& size );
148     void resizeEvent ( QResizeEvent * event );
149
150     PLModel *model;
151     QSignalMapper *mapper;
152     QHBoxLayout *box;
153     QList<QWidget*> buttons;
154     QList<QAction*> actions;
155     LocationButton *btnMore;
156     QMenu *menuMore;
157     QList<int> widths;
158 };
159
160 #endif