]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/playlist.cpp
Qt4 - Preferences, improve a bit the Hotkeys. Preparatory work to merge the Hotkeys...
[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 "main_interface.hpp"
27 #include "components/interface_widgets.hpp"
28 #include "dialogs_provider.hpp"
29 #include "menus.hpp"
30
31 #include <QUrl>
32 #include <QHBoxLayout>
33 #include <QSignalMapper>
34 #include <QMenu>
35 #include <QAction>
36 #include <QMenuBar>
37
38 PlaylistDialog *PlaylistDialog::instance = NULL;
39
40 PlaylistDialog::PlaylistDialog( intf_thread_t *_p_intf ) : QVLCMW( _p_intf )
41 {
42     QWidget *main = new QWidget( this );
43     setCentralWidget( main );
44     setWindowTitle( qtr( "Playlist" ) );
45     setWindowOpacity( config_GetFloat( p_intf, "qt-opacity" ) );
46
47     QHBoxLayout *l = new QHBoxLayout( centralWidget() );
48     PlaylistWidget *plw = new PlaylistWidget( p_intf );
49     l->addWidget( plw );
50
51     readSettings( "playlist", QSize( 600,700 ) );
52 }
53
54 PlaylistDialog::~PlaylistDialog()
55 {
56     writeSettings( "playlist" );
57 }
58
59 void PlaylistDialog::dropEvent(QDropEvent *event)
60 {
61      const QMimeData *mimeData = event->mimeData();
62      foreach( QUrl url, mimeData->urls() ) {
63         QString s = url.toString();
64         if( s.length() > 0 ) {
65             playlist_Add( THEPL, qtu(s), NULL,
66                           PLAYLIST_APPEND, PLAYLIST_END, VLC_TRUE, VLC_FALSE );
67         }
68      }
69      event->acceptProposedAction();
70 }
71 void PlaylistDialog::dragEnterEvent(QDragEnterEvent *event)
72 {
73      event->acceptProposedAction();
74 }
75 void PlaylistDialog::dragMoveEvent(QDragMoveEvent *event)
76 {
77      event->acceptProposedAction();
78 }
79 void PlaylistDialog::dragLeaveEvent(QDragLeaveEvent *event)
80 {
81      event->accept();
82 }
83