]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/playlist/standardpanel.hpp
Qt iconView: browse into node when it spawns subitems
[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
38 #include <vlc_playlist.h>
39
40 class QSignalMapper;
41 class QTreeView;
42 class QListView;
43 class PLModel;
44 class QPushButton;
45 class QKeyEvent;
46 class QWheelEvent;
47 class PlIconView;
48
49 class StandardPLPanel: public QWidget
50 {
51     Q_OBJECT
52
53 public:
54     StandardPLPanel( PlaylistWidget *, intf_thread_t *,
55                      playlist_t *,playlist_item_t * );
56     virtual ~StandardPLPanel();
57 protected:
58     friend class PlaylistWidget;
59
60     virtual void keyPressEvent( QKeyEvent *e );
61     virtual void wheelEvent( QWheelEvent *e );
62
63     PLModel *model;
64 private:
65     intf_thread_t *p_intf;
66
67     QWidget     *parent;
68     QLabel      *title;
69     QPushButton *addButton;
70     QGridLayout *layout;
71
72     QTreeView   *treeView;
73     PlIconView  *iconView;
74     QAbstractItemView *currentView;
75
76     int currentRootId;
77     QSignalMapper *selectColumnsSigMapper;
78
79     int last_activated_id;
80
81     enum {
82       TREE_VIEW = 0,
83       ICON_VIEW,
84       COVER_VIEW,
85     };
86
87     void createTreeView();
88     void createIconView();
89
90 public slots:
91     void removeItem( int );
92     virtual void setRoot( playlist_item_t * );
93 private slots:
94     void deleteSelection();
95     void handleExpansion( const QModelIndex& );
96     void gotoPlayingItem();
97     void search( const QString& searchText );
98     void popupAdd();
99     void popupSelectColumn( QPoint );
100     void popupPlView( const QPoint & );
101     void toggleColumnShown( int );
102     void toggleView();
103     void activate( const QModelIndex & );
104     void handleInputChange( input_thread_t * );
105 };
106
107 #endif