]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/playlist.cpp
0cbc2bea7d383799a484b6788021cc21be16c907
[vlc] / modules / gui / qt4 / dialogs / playlist.cpp
1 /*****************************************************************************
2  * playlist.cpp : Playlist dialog
3  ****************************************************************************
4  * Copyright (C) 2006 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 #include "dialogs/playlist.hpp"
25
26 #include "qt4.hpp"
27 #include "main_interface.hpp"
28 #include "util/qvlcframe.hpp"
29 #include "components/interface_widgets.hpp"
30 #include "dialogs_provider.hpp"
31 #include "menus.hpp"
32
33 #include <QHBoxLayout>
34 #include <QSignalMapper>
35 #include <QMenu>
36 #include <QAction>
37 #include <QMenuBar>
38
39 PlaylistDialog *PlaylistDialog::instance = NULL;
40
41 PlaylistDialog::PlaylistDialog( intf_thread_t *_p_intf ) : QVLCMW( _p_intf )
42 {
43     QWidget *main = new QWidget( this );
44     setCentralWidget( main );
45     setWindowTitle( qtr( "Playlist" ) );
46
47     createPlMenuBar( menuBar(), p_intf );
48
49     QHBoxLayout *l = new QHBoxLayout( centralWidget() );
50     PlaylistWidget *plw = new PlaylistWidget( p_intf );
51     l->addWidget( plw );
52
53     readSettings( "playlist", QSize( 600,700 ) );
54 }
55
56 PlaylistDialog::~PlaylistDialog()
57 {
58     writeSettings( "playlist" );
59 }
60
61 void PlaylistDialog::createPlMenuBar( QMenuBar *bar, intf_thread_t *p_intf )
62 {
63     QMenu *manageMenu = new QMenu();
64     manageMenu->setTitle( qtr("Manage") );
65     manageMenu->addAction( "Open playlist file", THEDP, SLOT( openPlaylist() ));
66     manageMenu->addSeparator();
67     manageMenu->addAction( "Dock playlist", this, SLOT( dock() ) );
68     bar->addMenu( manageMenu );
69     bar->addMenu( QVLCMenu::SDMenu( p_intf ) );
70 }
71
72 void PlaylistDialog::dock()
73 {
74     hide();
75     QEvent *event = new QEvent( (QEvent::Type)(PLDockEvent_Type) );
76     QApplication::postEvent( p_intf->p_sys->p_mi, event );
77 }