]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/playlist.cpp
Added window roles for X11
[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 #ifdef HAVE_CONFIG_H
24 # include "config.h"
25 #endif
26
27 #include "dialogs/playlist.hpp"
28
29 #include "components/playlist/playlist.hpp"
30
31 #include "util/qt_dirs.hpp"
32
33 #include <QUrl>
34 #include <QHBoxLayout>
35
36 PlaylistDialog *PlaylistDialog::instance = NULL;
37
38 PlaylistDialog::PlaylistDialog( intf_thread_t *_p_intf )
39                 : QVLCMW( _p_intf )
40 {
41     QWidget *main = new QWidget( this );
42     setCentralWidget( main );
43     setWindowTitle( qtr( "Playlist" ) );
44     setWindowRole( "vlc-playlist" );
45     setWindowOpacity( config_GetFloat( p_intf, "qt-opacity" ) );
46
47     QHBoxLayout *l = new QHBoxLayout( centralWidget() );
48
49     getSettings()->beginGroup("playlistdialog");
50
51     playlistWidget = new PlaylistWidget( p_intf );
52     l->addWidget( playlistWidget );
53
54     readSettings( getSettings(), QSize( 600,700 ) );
55
56     getSettings()->endGroup();
57 }
58
59 PlaylistDialog::~PlaylistDialog()
60 {
61     getSettings()->beginGroup("playlistdialog");
62     writeSettings( getSettings() );
63     getSettings()->endGroup();
64 }
65
66 void PlaylistDialog::dropEvent( QDropEvent *event )
67 {
68      const QMimeData *mimeData = event->mimeData();
69      foreach( const QUrl &url, mimeData->urls() ) {
70         QString s = toNativeSeparators( url.toString() );
71         if( s.length() > 0 ) {
72             playlist_Add( THEPL, qtu(s), NULL,
73                           PLAYLIST_APPEND, PLAYLIST_END, true, false );
74         }
75      }
76      event->acceptProposedAction();
77 }
78 void PlaylistDialog::dragEnterEvent( QDragEnterEvent *event )
79 {
80      event->acceptProposedAction();
81 }
82 void PlaylistDialog::dragMoveEvent( QDragMoveEvent *event )
83 {
84      event->acceptProposedAction();
85 }
86 void PlaylistDialog::dragLeaveEvent( QDragLeaveEvent *event )
87 {
88      event->accept();
89 }
90