]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs_provider.cpp
Qt4 - Slight string change and code cosmetic.
[vlc] / modules / gui / qt4 / dialogs_provider.cpp
1 /*****************************************************************************
2  * main_inteface.cpp : Main interface
3  *****************************************************************************
4  * Copyright (C) 2006-2007 the VideoLAN team
5  * $Id$
6  *
7  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
8  *          Jean-Baptiste Kempf <jb@videolan.org>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 #include <QEvent>
26 #include <QApplication>
27 #include <QSignalMapper>
28 #include <QFileDialog>
29
30 #include "qt4.hpp"
31 #include "dialogs_provider.hpp"
32 #include "main_interface.hpp"
33 #include "menus.hpp"
34 #include <vlc_intf_strings.h>
35
36 /* The dialogs */
37 #include "dialogs/playlist.hpp"
38 #include "dialogs/preferences.hpp"
39 #include "dialogs/mediainfo.hpp"
40 #include "dialogs/messages.hpp"
41 #include "dialogs/extended.hpp"
42 #include "dialogs/sout.hpp"
43 #include "dialogs/open.hpp"
44 #include "dialogs/vlm.hpp"
45 #include "dialogs/help.hpp"
46 #include "dialogs/gototime.hpp"
47 #include "dialogs/podcast_configuration.hpp"
48 #include "dialogs/vlm.hpp"
49
50
51 DialogsProvider* DialogsProvider::instance = NULL;
52
53 DialogsProvider::DialogsProvider( intf_thread_t *_p_intf ) :
54                                   QObject( NULL ), p_intf( _p_intf )
55 {
56     fixed_timer = new QTimer( this );
57     fixed_timer->start( 150 /* milliseconds */ );
58
59     menusMapper = new QSignalMapper();
60     CONNECT( menusMapper, mapped(QObject *), this, menuAction( QObject *) );
61
62     menusUpdateMapper = new QSignalMapper();
63     CONNECT( menusUpdateMapper, mapped(QObject *),
64              this, menuUpdateAction( QObject *) );
65
66     SDMapper = new QSignalMapper();
67     CONNECT( SDMapper, mapped (QString), this, SDMenuAction( QString ) );
68 }
69
70 DialogsProvider::~DialogsProvider()
71 {
72     PlaylistDialog::killInstance();
73     MediaInfoDialog::killInstance();
74     fixed_timer->stop();
75 }
76
77 void DialogsProvider::quit()
78 {
79     vlc_object_kill( p_intf );
80     QApplication::quit();
81 }
82
83 void DialogsProvider::customEvent( QEvent *event )
84 {
85     if( event->type() == DialogEvent_Type )
86     {
87         DialogEvent *de = static_cast<DialogEvent*>(event);
88         switch( de->i_dialog )
89         {
90             case INTF_DIALOG_FILE_SIMPLE:
91             case INTF_DIALOG_FILE:
92                 openDialog(); break;
93             case INTF_DIALOG_DISC:
94                 openDiscDialog(); break;
95             case INTF_DIALOG_NET:
96                 openNetDialog(); break;
97             case INTF_DIALOG_SAT:
98             case INTF_DIALOG_CAPTURE:
99                 openCaptureDialog(); break;
100             case INTF_DIALOG_DIRECTORY:
101                 PLAppendDir(); break;
102             case INTF_DIALOG_PLAYLIST:
103                 playlistDialog(); break;
104             case INTF_DIALOG_MESSAGES:
105                 messagesDialog(); break;
106             case INTF_DIALOG_FILEINFO:
107                mediaInfoDialog(); break;
108             case INTF_DIALOG_PREFS:
109                prefsDialog(); break;
110             case INTF_DIALOG_BOOKMARKS:
111                bookmarksDialog(); break;
112             case INTF_DIALOG_EXTENDED:
113                extendedDialog(); break;
114             case INTF_DIALOG_VLM:
115                vlmDialog(); break;
116             case INTF_DIALOG_INTERACTION:
117                doInteraction( de->p_arg ); break;
118             case INTF_DIALOG_POPUPMENU:
119                QVLCMenu::PopupMenu( p_intf, (de->i_arg != 0) ); break;
120             case INTF_DIALOG_AUDIOPOPUPMENU:
121                QVLCMenu::AudioPopupMenu( p_intf ); break;
122             case INTF_DIALOG_VIDEOPOPUPMENU:
123                QVLCMenu::VideoPopupMenu( p_intf ); break;
124             case INTF_DIALOG_MISCPOPUPMENU:
125                QVLCMenu::MiscPopupMenu( p_intf ); break;
126             case INTF_DIALOG_WIZARD:
127             case INTF_DIALOG_STREAMWIZARD:
128             case INTF_DIALOG_UPDATEVLC:
129             case INTF_DIALOG_EXIT:
130             default:
131                msg_Warn( p_intf, "unimplemented dialog\n" );
132         }
133     }
134 }
135
136 /****************************************************************************
137  * Individual simple dialogs
138  ****************************************************************************/
139 void DialogsProvider::playlistDialog()
140 {
141     PlaylistDialog::getInstance( p_intf )->toggleVisible();
142 }
143
144 void DialogsProvider::prefsDialog()
145 {
146     PrefsDialog::getInstance( p_intf )->toggleVisible();
147 }
148 void DialogsProvider::extendedDialog()
149 {
150     ExtendedDialog::getInstance( p_intf )->toggleVisible();
151 }
152
153 void DialogsProvider::messagesDialog()
154 {
155     MessagesDialog::getInstance( p_intf )->toggleVisible();
156 }
157
158 void DialogsProvider::gotoTimeDialog()
159 {
160     GotoTimeDialog::getInstance( p_intf )->toggleVisible();
161 }
162
163 void DialogsProvider::vlmDialog()
164 {
165     VLMDialog::getInstance( p_intf )->toggleVisible();
166 }
167
168 void DialogsProvider::helpDialog()
169 {
170     HelpDialog::getInstance( p_intf )->toggleVisible();
171 }
172
173 void DialogsProvider::aboutDialog()
174 {
175     AboutDialog::getInstance( p_intf )->toggleVisible();
176 }
177
178 void DialogsProvider::mediaInfoDialog()
179 {
180     MediaInfoDialog::getInstance( p_intf )->toggleVisible();
181 }
182
183 void DialogsProvider::mediaCodecDialog()
184 {
185     MediaInfoDialog::getInstance( p_intf )->showTab( 2 );
186 }
187
188 void DialogsProvider::bookmarksDialog()
189 {
190     /* FIXME - Implement me */
191     /*  BookmarkDialog::getInstance( p_intf )->toggleVisible(); */
192 }
193
194 void DialogsProvider::podcastConfigureDialog()
195 {
196     PodcastConfigDialog::getInstance( p_intf )->toggleVisible();
197 }
198
199
200 /****************************************************************************
201  * All the open/add stuff
202  * Open Dialog first - Simple Open then
203  ****************************************************************************/
204
205 void DialogsProvider::openDialog( int i_tab )
206 {
207     OpenDialog::getInstance( p_intf->p_sys->p_mi , p_intf )->showTab( i_tab );
208 }
209 void DialogsProvider::openDialog()
210 {
211     openDialog( OPEN_FILE_TAB );
212 }
213 void DialogsProvider::openFileDialog()
214 {
215     openDialog( OPEN_FILE_TAB );
216 }
217 void DialogsProvider::openDiscDialog()
218 {
219     openDialog( OPEN_DISC_TAB );
220 }
221 void DialogsProvider::openNetDialog()
222 {
223     openDialog( OPEN_NETWORK_TAB );
224 }
225 void DialogsProvider::openCaptureDialog()
226 {
227     openDialog( OPEN_CAPTURE_TAB );
228 }
229
230 /* Same as the open one, but force the enqueue */
231 void DialogsProvider::PLAppendDialog()
232 {
233     OpenDialog::getInstance( p_intf->p_sys->p_mi , p_intf, OPEN_AND_ENQUEUE)
234                             ->showTab( OPEN_FILE_TAB );
235 }
236
237 /* Unimplemmented yet - Usefull ? */
238 void DialogsProvider::MLAppendDialog()
239 {
240 }
241
242 /**
243  * Simple open
244  * Not used anymore. Let the code until we are sure we don't want it
245  * Two opens make it confusing for the user.
246  ***/
247 QStringList DialogsProvider::showSimpleOpen( QString help,
248                                              int filters,
249                                              QString path )
250 {
251     QString fileTypes = "";
252     if( filters & EXT_FILTER_MEDIA ) {
253         ADD_FILTER_MEDIA( fileTypes );
254     }
255     if( filters & EXT_FILTER_VIDEO ) {
256         ADD_FILTER_VIDEO( fileTypes );
257     }
258     if( filters & EXT_FILTER_AUDIO ) {
259         ADD_FILTER_AUDIO( fileTypes );
260     }
261     if( filters & EXT_FILTER_PLAYLIST ) {
262         ADD_FILTER_PLAYLIST( fileTypes );
263     }
264     if( filters & EXT_FILTER_SUBTITLE ) {
265         ADD_FILTER_SUBTITLE( fileTypes );
266     }
267     ADD_FILTER_ALL( fileTypes );
268     fileTypes.replace(QString(";*"), QString(" *"));
269     return QFileDialog::getOpenFileNames( NULL,
270         help.isNull() ? qfu(I_OP_SEL_FILES ) : help,
271         path.isNull() ? qfu( p_intf->p_libvlc->psz_homedir ) : path,
272         fileTypes );
273 }
274
275 void DialogsProvider::addFromSimple( bool pl, bool go)
276 {
277     QStringList files = DialogsProvider::showSimpleOpen();
278     int i = 0;
279     foreach( QString file, files )
280     {
281         const char * psz_utf8 = qtu( file );
282         playlist_Add( THEPL, psz_utf8, NULL,
283                       go ? ( PLAYLIST_APPEND | ( i ? 0 : PLAYLIST_GO ) |
284                                                ( i ? PLAYLIST_PREPARSE : 0 ) )
285                          : ( PLAYLIST_APPEND | PLAYLIST_PREPARSE ),
286                       PLAYLIST_END,
287                       pl ? VLC_TRUE : VLC_FALSE, VLC_FALSE );
288         i++;
289     }
290 }
291
292 void DialogsProvider::simplePLAppendDialog()
293 {
294     addFromSimple( true, false );
295 }
296
297 void DialogsProvider::simpleMLAppendDialog()
298 {
299     addFromSimple( false, false );
300 }
301
302 void DialogsProvider::simpleOpenDialog()
303 {
304     addFromSimple( true, true );
305 }
306
307 /* Directory */
308
309 /**
310  * Open a directory,
311  * pl helps you to choose from playlist or media library,
312  * go to start or enqueue
313  **/
314 static void openDirectory( intf_thread_t *p_intf, bool pl, bool go )
315 {
316     QString dir = QFileDialog::getExistingDirectory( 0, qtr("Open directory") );
317     if (!dir.isEmpty()) {
318         input_item_t *p_input = input_ItemNewExt( THEPL, qtu(dir), NULL,
319                                                0, NULL, -1 );
320
321         playlist_AddInput( THEPL, p_input,
322                        go ? ( PLAYLIST_APPEND | PLAYLIST_GO ) : PLAYLIST_APPEND,
323                        PLAYLIST_END, pl, VLC_FALSE );
324         input_Read( THEPL, p_input, VLC_FALSE );
325     }
326 }
327
328 void DialogsProvider::PLAppendDir()
329 {
330     openDirectory( p_intf, true, false );
331 }
332
333 void DialogsProvider::MLAppendDir()
334 {
335     openDirectory( p_intf, false , false );
336 }
337
338 /****************
339  * Playlist     *
340  ****************/
341 void DialogsProvider::openPlaylist()
342 {
343     QStringList files = showSimpleOpen( qtr( "Open playlist file" ),
344                                         EXT_FILTER_PLAYLIST );
345     foreach( QString file, files )
346     {
347         playlist_Import( THEPL, qtu(file) );
348     }
349 }
350
351 void DialogsProvider::savePlaylist()
352 {
353     QFileDialog *qfd = new QFileDialog( NULL,
354                                    qtr("Choose a filename to save playlist"),
355                                    qfu( p_intf->p_libvlc->psz_homedir ),
356                                    qtr("XSPF playlist (*.xspf);; ") +
357                                    qtr("M3U playlist (*.m3u);; Any (*.*) ") );
358     qfd->setFileMode( QFileDialog::AnyFile );
359     qfd->setAcceptMode( QFileDialog::AcceptSave );
360     qfd->setConfirmOverwrite( true );
361
362     if( qfd->exec() == QDialog::Accepted )
363     {
364         if( qfd->selectedFiles().count() > 0 )
365         {
366             static const char psz_xspf[] = "export-xspf",
367                               psz_m3u[] = "export-m3u";
368             const char *psz_module;
369
370             QString file = qfd->selectedFiles().first();
371             QString filter = qfd->selectedFilter();
372
373             if( file.contains(".xsp") ||
374                 ( filter.contains(".xspf") && !file.contains(".m3u") ) )
375             {
376                 psz_module = psz_xspf;
377                 if( !file.contains( ".xsp" ) )
378                     file.append( ".xspf" );
379             }
380             else
381             {
382                 psz_module = psz_m3u;
383                 if( !file.contains( ".m3u" ) )
384                     file.append( ".m3u" );
385             }
386
387             playlist_Export( THEPL, qtu(file), THEPL->p_local_category,
388                              psz_module);
389         }
390     }
391     delete qfd;
392 }
393
394
395 /****************************************************************************
396  * Sout emulation
397  ****************************************************************************/
398
399 //FIXME !!
400 void DialogsProvider::streamingDialog( QString mrl, bool b_transcode_only )
401 {
402     SoutDialog *s = new SoutDialog( p_intf->p_sys->p_mi, p_intf,
403                                                     b_transcode_only );
404     if( s->exec() == QDialog::Accepted )
405     {
406         msg_Err( p_intf, "mrl %s\n", qta( s->getMrl() ) );
407         /* Just do it */
408         int i_len = strlen( qtu( s->getMrl() ) ) + 10;
409         char *psz_option = (char*)malloc(i_len);
410         snprintf( psz_option, i_len - 1, "%s", qtu( s->getMrl() ) );
411
412         playlist_AddExt( THEPL, qtu( mrl ), "Streaming",
413                          PLAYLIST_APPEND | PLAYLIST_GO, PLAYLIST_END,
414                         -1, &psz_option, 1, VLC_TRUE, VLC_FALSE );
415     }
416     delete s;
417 }
418
419 void DialogsProvider::openThenStreamingDialogs()
420 {
421     OpenDialog::getInstance( p_intf->p_sys->p_mi , p_intf, OPEN_AND_STREAM )
422                                 ->showTab( 0 );
423 }
424
425 void DialogsProvider::openThenTranscodingDialogs()
426 {
427     OpenDialog::getInstance( p_intf->p_sys->p_mi , p_intf, OPEN_AND_SAVE )
428                                 ->showTab( 0 );
429 }
430 /*
431 void DialogsProvider::streamingDialog()
432 {
433     OpenDialog *o = new OpenDialog( p_intf->p_sys->p_mi, p_intf, true );
434     if ( o->exec() == QDialog::Accepted )
435     {
436         SoutDialog *s = new SoutDialog( p_intf->p_sys->p_mi, p_intf );
437         if( s->exec() == QDialog::Accepted )
438         {
439             msg_Err(p_intf, "mrl %s\n", qta(s->mrl));
440             /* Just do it
441             int i_len = strlen( qtu(s->mrl) ) + 10;
442             char *psz_option = (char*)malloc(i_len);
443             snprintf( psz_option, i_len - 1, ":sout=%s", qtu(s->mrl));
444
445             playlist_AddExt( THEPL, qtu( o->mrl ), "Streaming",
446                              PLAYLIST_APPEND | PLAYLIST_GO, PLAYLIST_END,
447                              -1, &psz_option, 1, VLC_TRUE, VLC_FALSE );
448         }
449         delete s;
450     }
451     delete o;
452 }*/
453
454
455
456 /****************************************************************************
457  * Menus / Interaction
458  ****************************************************************************/
459
460 void DialogsProvider::menuAction( QObject *data )
461 {
462     QVLCMenu::DoAction( p_intf, data );
463 }
464
465 void DialogsProvider::menuUpdateAction( QObject *data )
466 {
467     MenuFunc * f = qobject_cast<MenuFunc *>(data);
468     f->doFunc( p_intf );
469 }
470
471 void DialogsProvider::SDMenuAction( QString data )
472 {
473     char *psz_sd = strdup( qtu( data ) );
474     if( !playlist_IsServicesDiscoveryLoaded( THEPL, psz_sd ) )
475         playlist_ServicesDiscoveryAdd( THEPL, psz_sd );
476     else
477         playlist_ServicesDiscoveryRemove( THEPL, psz_sd );
478     free( psz_sd );
479 }
480
481 void DialogsProvider::doInteraction( intf_dialog_args_t *p_arg )
482 {
483     InteractionDialog *qdialog;
484     interaction_dialog_t *p_dialog = p_arg->p_dialog;
485     switch( p_dialog->i_action )
486     {
487     case INTERACT_NEW:
488         qdialog = new InteractionDialog( p_intf, p_dialog );
489         p_dialog->p_private = (void*)qdialog;
490         if( !(p_dialog->i_status == ANSWERED_DIALOG) )
491             qdialog->show();
492         break;
493     case INTERACT_UPDATE:
494         qdialog = (InteractionDialog*)(p_dialog->p_private);
495         if( qdialog)
496             qdialog->update();
497         break;
498     case INTERACT_HIDE:
499         qdialog = (InteractionDialog*)(p_dialog->p_private);
500         if( qdialog )
501             qdialog->hide();
502         p_dialog->i_status = HIDDEN_DIALOG;
503         break;
504     case INTERACT_DESTROY:
505         qdialog = (InteractionDialog*)(p_dialog->p_private);
506         if( !p_dialog->i_flags & DIALOG_NONBLOCKING_ERROR )
507             delete qdialog;
508         p_dialog->i_status = DESTROYED_DIALOG;
509         break;
510     }
511 }
512
513 void DialogsProvider::switchToSkins()
514 {
515     var_SetString( p_intf, "intf-switch", "skins2" );
516 }