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