Qt: prettier button with menu for playlist view switching
[vlc.git] / modules / gui / qt4 / components / playlist / standardpanel.hpp
blob58c118ac8930dbf65e98662e028c546b6cf991ac
1 /*****************************************************************************
2 * panels.hpp : Panels for the playlist
3 ****************************************************************************
4 * Copyright (C) 2000-2005 the VideoLAN team
5 * $Id$
7 * Authors: Clément Stenac <zorglub@videolan.org>
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.
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.
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 *****************************************************************************/
24 #ifndef _PLPANELS_H_
25 #define _PLPANELS_H_
27 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
31 #include "qt4.hpp"
32 #include "components/playlist/playlist.hpp"
34 #include <QModelIndex>
35 #include <QWidget>
36 #include <QString>
37 #include <QToolBar>
39 #include <vlc_playlist.h>
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 LocationBar;
51 class StandardPLPanel: public QWidget
53 Q_OBJECT
55 public:
56 StandardPLPanel( PlaylistWidget *, intf_thread_t *,
57 playlist_t *,playlist_item_t * );
58 virtual ~StandardPLPanel();
59 protected:
60 friend class PlaylistWidget;
62 virtual void keyPressEvent( QKeyEvent *e );
63 virtual void wheelEvent( QWheelEvent *e );
65 PLModel *model;
66 private:
67 intf_thread_t *p_intf;
69 QWidget *parent;
70 QLabel *title;
71 QPushButton *addButton;
72 QGridLayout *layout;
73 LocationBar *locationBar;
75 QTreeView *treeView;
76 PlIconView *iconView;
77 QAbstractItemView *currentView;
79 int currentRootId;
80 QSignalMapper *selectColumnsSigMapper;
81 QSignalMapper *viewSelectionMapper;
83 int last_activated_id;
85 enum {
86 TREE_VIEW = 0,
87 ICON_VIEW,
88 COVER_VIEW,
91 void createTreeView();
92 void createIconView();
94 public slots:
95 void removeItem( int );
96 virtual void setRoot( playlist_item_t * );
97 private slots:
98 void deleteSelection();
99 void handleExpansion( const QModelIndex& );
100 void gotoPlayingItem();
101 void search( const QString& searchText );
102 void popupAdd();
103 void popupSelectColumn( QPoint );
104 void popupPlView( const QPoint & );
105 void toggleColumnShown( int );
106 void showView( int );
107 void activate( const QModelIndex & );
108 void handleInputChange( input_thread_t * );
111 class LocationBar : public QToolBar
113 Q_OBJECT;
114 public:
115 LocationBar( PLModel * );
116 void setIndex( const QModelIndex & );
117 signals:
118 void invoked( const QModelIndex & );
119 private slots:
120 void invoke( int i_item_id );
121 private:
122 PLModel *model;
123 QSignalMapper *mapper;
126 #endif