]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/playlist/playlist.hpp
Qt4 - playlist model. Fix #1332
[vlc] / modules / gui / qt4 / components / playlist / playlist.hpp
1 /*****************************************************************************
2  * interface_widgets.hpp : Playlist Widgets
3  ****************************************************************************
4  * Copyright (C) 2006 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Clément Stenac <zorglub@videolan.org>
8  *          Jean-Baptiste Kempf <jb@videolan.org>
9  *          Rafaël Carré <funman@videolanorg>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
24  *****************************************************************************/
25
26 #ifndef _PLAYLISTWIDGET_H_
27 #define _PLAYLISTWIDGET_H_
28
29 #include <vlc/vlc.h>
30 #include "qt4.hpp"
31
32 #include <QSplitter>
33
34 class QLabel;
35 class PLSelector;
36 class PLPanel;
37 class QPushButton;
38 class QSettings;
39
40 class PlaylistWidget : public QSplitter
41 {
42     Q_OBJECT;
43 public:
44     PlaylistWidget( intf_thread_t *_p_i, QSettings *settings, QWidget *parent ) ;
45     virtual ~PlaylistWidget();
46     QSize sizeHint() const;
47     void savingSettings( QSettings *settings );
48 private:
49     PLSelector *selector;
50     PLPanel *rightPanel;
51     QPushButton *addButton;
52     QLabel *art;
53     QString prevArt;
54     QWidget *parent;
55 protected:
56     intf_thread_t *p_intf;
57 private slots:
58     void setArt( QString );
59 signals:
60     void rootChanged( int );
61     void artSet( QString );
62 };
63
64 #endif