]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/open_panels.cpp
Allow SSM to be used within QT4 Open Network panel
[vlc] / modules / gui / qt4 / components / open_panels.cpp
1 /*****************************************************************************
2  * open.cpp : Panels for the open dialogs
3  ****************************************************************************
4  * Copyright (C) 2006-2009 the VideoLAN team
5  * Copyright (C) 2007 Société des arts technologiques
6  * Copyright (C) 2007 Savoir-faire Linux
7  *
8  * $Id$
9  *
10  * Authors: Clément Stenac <zorglub@videolan.org>
11  *          Jean-Baptiste Kempf <jb@videolan.org>
12  *          Pierre-Luc Beaudoin <pierre-luc.beaudoin@savoirfairelinux.com>
13  *
14  * This program is free software; you can redistribute it and/or modify
15  * it under the terms of the GNU General Public License as published by
16  * the Free Software Foundation; either version 2 of the License, or
17  * (at your option) any later version.
18  *
19  * This program is distributed in the hope that it will be useful,
20  * but WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  * GNU General Public License for more details.
23  *
24  * You should have received a copy of the GNU General Public License
25  * along with this program; if not, write to the Free Software
26  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
27  *****************************************************************************/
28
29 #ifdef HAVE_CONFIG_H
30 # include "config.h"
31 #endif
32
33 #include "qt4.hpp"
34 #include "components/open_panels.hpp"
35 #include "dialogs/open.hpp"
36 #include "dialogs_provider.hpp" /* Open Subtitle file */
37 #include "util/qt_dirs.hpp"
38
39 #include <QFileDialog>
40 #include <QDialogButtonBox>
41 #include <QLineEdit>
42 #include <QStackedLayout>
43 #include <QListView>
44 #include <QCompleter>
45 #include <QDirModel>
46 #include <QScrollArea>
47 #include <QUrl>
48 #include <QStringListModel>
49
50 #define I_DEVICE_TOOLTIP N_("Select the device or the VIDEO_TS directory")
51
52 static const char *psz_devModule[] = { "v4l", "v4l2", "pvr", "dvb", "bda",
53                                        "dshow", "screen", "jack" };
54
55 /**************************************************************************
56  * Open Files and subtitles                                               *
57  **************************************************************************/
58 FileOpenPanel::FileOpenPanel( QWidget *_parent, intf_thread_t *_p_intf ) :
59                                 OpenPanel( _parent, _p_intf ), dialogBox( NULL )
60 {
61     /* Classic UI Setup */
62     ui.setupUi( this );
63
64     /* Set Filters for file selection */
65 /*    QString fileTypes = "";
66     ADD_FILTER_MEDIA( fileTypes );
67     ADD_FILTER_VIDEO( fileTypes );
68     ADD_FILTER_AUDIO( fileTypes );
69     ADD_FILTER_PLAYLIST( fileTypes );
70     ADD_FILTER_ALL( fileTypes );
71     fileTypes.replace( QString(";*"), QString(" *")); */
72
73
74 /*    lineFileEdit = ui.fileEdit;
75     //TODO later: fill the fileCompleteList with previous items played.
76     QCompleter *fileCompleter = new QCompleter( fileCompleteList, this );
77     fileCompleter->setModel( new QDirModel( fileCompleter ) );
78     lineFileEdit->setCompleter( fileCompleter );*/
79     if( config_GetInt( p_intf, "qt-embedded-open" ) )
80     {
81         ui.tempWidget->hide();
82         BuildOldPanel();
83     }
84
85     /* Subtitles */
86     /* Deactivate the subtitles control by default. */
87     ui.subFrame->setEnabled( false );
88     /* Build the subs size combo box */
89     setfillVLCConfigCombo( "freetype-rel-fontsize" , p_intf,
90                             ui.sizeSubComboBox );
91     /* Build the subs align combo box */
92     setfillVLCConfigCombo( "subsdec-align", p_intf, ui.alignSubComboBox );
93
94     /* Connects  */
95     BUTTONACT( ui.fileBrowseButton, browseFile() );
96     BUTTONACT( ui.removeFileButton, removeFile() );
97
98     BUTTONACT( ui.subBrowseButton, browseFileSub() );
99     CONNECT( ui.subCheckBox, toggled( bool ), this, toggleSubtitleFrame( bool ) );
100
101     CONNECT( ui.fileListWidg, itemChanged( QListWidgetItem * ), this, updateMRL() );
102     CONNECT( ui.subInput, textChanged( const QString& ), this, updateMRL() );
103     CONNECT( ui.alignSubComboBox, currentIndexChanged( int ), this, updateMRL() );
104     CONNECT( ui.sizeSubComboBox, currentIndexChanged( int ), this, updateMRL() );
105     updateButtons();
106 }
107
108 inline void FileOpenPanel::BuildOldPanel()
109 {
110     /** BEGIN QFileDialog tweaking **/
111     /* Use a QFileDialog and customize it because we don't want to
112        rewrite it all. Be careful to your eyes cause there are a few hacks.
113        Be very careful and test correctly when you modify this. */
114
115     /* Make this QFileDialog a child of tempWidget from the ui. */
116     dialogBox = new FileOpenBox( ui.tempWidget, NULL,
117                                  p_intf->p_sys->filepath, "" );
118
119     dialogBox->setFileMode( QFileDialog::ExistingFiles );
120     dialogBox->setAcceptMode( QFileDialog::AcceptOpen );
121     dialogBox->restoreState(
122             getSettings()->value( "file-dialog-state" ).toByteArray() );
123
124     /* We don't want to see a grip in the middle of the window, do we? */
125     dialogBox->setSizeGripEnabled( false );
126
127     /* Add a tooltip */
128     dialogBox->setToolTip( qtr( "Select one or multiple files" ) );
129     dialogBox->setMinimumHeight( 250 );
130
131     // But hide the two OK/Cancel buttons. Enable them for debug.
132     QDialogButtonBox *fileDialogAcceptBox =
133                       dialogBox->findChildren<QDialogButtonBox*>()[0];
134     fileDialogAcceptBox->hide();
135
136     /* Ugly hacks to get the good Widget */
137     //This lineEdit is the normal line in the fileDialog.
138     QLineEdit *lineFileEdit = dialogBox->findChildren<QLineEdit*>()[0];
139     /* Make a list of QLabel inside the QFileDialog to access the good ones */
140     QList<QLabel *> listLabel = dialogBox->findChildren<QLabel*>();
141
142     /* Hide the FileNames one. Enable it for debug */
143     listLabel[1]->setText( qtr( "File names:" ) );
144     /* Change the text that was uncool in the usual box */
145     listLabel[2]->setText( qtr( "Filter:" ) );
146
147     dialogBox->layout()->setMargin( 0 );
148     dialogBox->layout()->setSizeConstraint( QLayout::SetNoConstraint );
149
150     /** END of QFileDialog tweaking **/
151
152     // Add the DialogBox to the layout
153     ui.gridLayout->addWidget( dialogBox, 0, 0, 1, 3 );
154
155     CONNECT( lineFileEdit, textChanged( const QString& ), this, updateMRL() );
156     dialogBox->installEventFilter( this );
157 }
158
159 FileOpenPanel::~FileOpenPanel()
160 {
161     if( dialogBox )
162         getSettings()->setValue( "file-dialog-state", dialogBox->saveState() );
163 }
164
165 void FileOpenPanel::browseFile()
166 {
167     QStringList files = QFileDialog::getOpenFileNames( this, qtr( "Select one or multiple files" ), p_intf->p_sys->filepath) ;
168     foreach( const QString &file, files )
169     {
170         QListWidgetItem *item =
171             new QListWidgetItem( toNativeSeparators( file ), ui.fileListWidg );
172         item->setFlags( Qt::ItemIsEditable | Qt::ItemIsEnabled );
173         ui.fileListWidg->addItem( item );
174         savedirpathFromFile( file );
175     }
176     updateButtons();
177     updateMRL();
178 }
179
180 void FileOpenPanel::removeFile()
181 {
182     int i = ui.fileListWidg->currentRow();
183     if( i != -1 )
184     {
185         QListWidgetItem *temp = ui.fileListWidg->takeItem( i );
186         delete temp;
187     }
188
189     updateMRL();
190     updateButtons();
191 }
192
193 /* Show a fileBrowser to select a subtitle */
194 void FileOpenPanel::browseFileSub()
195 {
196     // TODO Handle selection of more than one subtitles file
197     QStringList files = THEDP->showSimpleOpen( qtr("Open subtitles file"),
198                            EXT_FILTER_SUBTITLE, p_intf->p_sys->filepath );
199
200     if( files.isEmpty() ) return;
201     ui.subInput->setText( toNativeSeparators( files.join(" ") ) );
202     updateMRL();
203 }
204
205 void FileOpenPanel::toggleSubtitleFrame( bool b )
206 {
207     ui.subFrame->setEnabled( b );
208
209     /* Update the MRL */
210     updateMRL();
211 }
212
213
214 /* Update the current MRL */
215 void FileOpenPanel::updateMRL()
216 {
217     QStringList fileList;
218     QString mrl;
219
220     /* File Listing */
221     if( dialogBox == NULL )
222         for( int i = 0; i < ui.fileListWidg->count(); i++ )
223         {
224             if( !ui.fileListWidg->item( i )->text().isEmpty() )
225                 fileList << ui.fileListWidg->item( i )->text();
226         }
227     else
228         fileList = dialogBox->selectedFiles();
229
230     /* Options */
231     if( ui.subCheckBox->isChecked() &&  !ui.subInput->text().isEmpty() ) {
232         mrl.append( " :sub-file=" + colon_escape( ui.subInput->text() ) );
233         int align = ui.alignSubComboBox->itemData(
234                     ui.alignSubComboBox->currentIndex() ).toInt();
235         mrl.append( " :subsdec-align=" + QString().setNum( align ) );
236         int size = ui.sizeSubComboBox->itemData(
237                    ui.sizeSubComboBox->currentIndex() ).toInt();
238         mrl.append( " :freetype-rel-fontsize=" + QString().setNum( size ) );
239     }
240
241     emit mrlUpdated( fileList, mrl );
242     emit methodChanged( "file-caching" );
243 }
244
245 /* Function called by Open Dialog when clicke on Play/Enqueue */
246 void FileOpenPanel::accept()
247 {
248     if( dialogBox )
249         p_intf->p_sys->filepath = dialogBox->directory().absolutePath();
250     ui.fileListWidg->clear();
251 }
252
253 /* Function called by Open Dialog when clicked on cancel */
254 void FileOpenPanel::clear()
255 {
256     ui.fileListWidg->clear();
257     ui.subInput->clear();
258 }
259
260 /* Update buttons depending on current selection */
261 void FileOpenPanel::updateButtons()
262 {
263     bool b_has_files = ( ui.fileListWidg->count() > 0 );
264     ui.removeFileButton->setEnabled( b_has_files );
265     ui.subCheckBox->setEnabled( b_has_files );
266 }
267
268 /**************************************************************************
269  * Open Discs ( DVD, CD, VCD and similar devices )                        *
270  **************************************************************************/
271 DiscOpenPanel::DiscOpenPanel( QWidget *_parent, intf_thread_t *_p_intf ) :
272                                 OpenPanel( _parent, _p_intf )
273 {
274     ui.setupUi( this );
275
276     /* Get the default configuration path for the devices */
277     psz_dvddiscpath = config_GetPsz( p_intf, "dvd" );
278     psz_vcddiscpath = config_GetPsz( p_intf, "vcd" );
279     psz_cddadiscpath = config_GetPsz( p_intf, "cd-audio" );
280
281     /* State to avoid overwritting the users changes with the configuration */
282     b_firstdvd = true;
283     b_firstvcd = true;
284     b_firstcdda = true;
285
286     ui.browseDiscButton->setToolTip( qtr( I_DEVICE_TOOLTIP ));
287     ui.deviceCombo->setToolTip( qtr(I_DEVICE_TOOLTIP) );
288
289 #ifdef WIN32 /* Disc drives probing for Windows */
290     char szDrives[512];
291     szDrives[0] = '\0';
292     if( GetLogicalDriveStringsA( sizeof( szDrives ) - 1, szDrives ) )
293     {
294         char *drive = szDrives;
295         UINT oldMode = SetErrorMode( SEM_FAILCRITICALERRORS );
296         while( *drive )
297         {
298             if( GetDriveTypeA(drive) == DRIVE_CDROM )
299                 ui.deviceCombo->addItem( drive );
300
301             /* go to next drive */
302             while( *(drive++) );
303         }
304         SetErrorMode(oldMode);
305     }
306 #else /* Use a Completer under Linux */
307     QCompleter *discCompleter = new QCompleter( this );
308     discCompleter->setModel( new QDirModel( discCompleter ) );
309     ui.deviceCombo->setCompleter( discCompleter );
310 #endif
311
312     /* CONNECTs */
313     BUTTONACT( ui.dvdRadioButton, updateButtons() );
314     BUTTONACT( ui.vcdRadioButton, updateButtons() );
315     BUTTONACT( ui.audioCDRadioButton, updateButtons() );
316     BUTTONACT( ui.dvdsimple, updateButtons() );
317     BUTTONACT( ui.browseDiscButton, browseDevice() );
318     BUTTON_SET_ACT_I( ui.ejectButton, "", toolbar/eject, qtr( "Eject the disc" ),
319             eject() );
320
321     CONNECT( ui.deviceCombo, editTextChanged( QString ), this, updateMRL());
322     CONNECT( ui.titleSpin, valueChanged( int ), this, updateMRL());
323     CONNECT( ui.chapterSpin, valueChanged( int ), this, updateMRL());
324     CONNECT( ui.audioSpin, valueChanged( int ), this, updateMRL());
325     CONNECT( ui.subtitlesSpin, valueChanged( int ), this, updateMRL());
326
327     /* Run once the updateButtons function in order to fill correctly the comboBoxes */
328     updateButtons();
329 }
330
331 DiscOpenPanel::~DiscOpenPanel()
332 {
333     free( psz_dvddiscpath );
334     free( psz_vcddiscpath );
335     free( psz_cddadiscpath );
336 }
337
338 void DiscOpenPanel::clear()
339 {
340     ui.titleSpin->setValue( 0 );
341     ui.chapterSpin->setValue( 0 );
342     ui.subtitlesSpin->setValue( -1 );
343     ui.audioSpin->setValue( -1 );
344     b_firstcdda = true;
345     b_firstdvd = true;
346     b_firstvcd = true;
347 }
348
349 #ifdef WIN32
350     #define setDrive( psz_name ) {\
351     int index = ui.deviceCombo->findText( qfu( psz_name ) ); \
352     if( index != -1 ) ui.deviceCombo->setCurrentIndex( index );}
353 #else
354     #define setDrive( psz_name ) {\
355     ui.deviceCombo->setEditText( qfu( psz_name ) ); }
356 #endif
357
358 /* update the buttons according the type of device */
359 void DiscOpenPanel::updateButtons()
360 {
361     if ( ui.dvdRadioButton->isChecked() )
362     {
363         if( b_firstdvd )
364         {
365             setDrive( psz_dvddiscpath );
366             b_firstdvd = false;
367         }
368         ui.titleLabel->setText( qtr("Title") );
369         ui.chapterLabel->show();
370         ui.chapterSpin->show();
371         ui.diskOptionBox_2->show();
372         ui.dvdsimple->setEnabled( true );
373     }
374     else if ( ui.vcdRadioButton->isChecked() )
375     {
376         if( b_firstvcd )
377         {
378             setDrive( psz_vcddiscpath );
379             b_firstvcd = false;
380         }
381         ui.titleLabel->setText( qtr("Entry") );
382         ui.chapterLabel->hide();
383         ui.chapterSpin->hide();
384         ui.diskOptionBox_2->show();
385         ui.dvdsimple->setEnabled( false );
386     }
387     else /* CDDA */
388     {
389         if( b_firstcdda )
390         {
391             setDrive( psz_cddadiscpath );
392             b_firstcdda = false;
393         }
394         ui.titleLabel->setText( qtr("Track") );
395         ui.chapterLabel->hide();
396         ui.chapterSpin->hide();
397         ui.diskOptionBox_2->hide();
398         ui.dvdsimple->setEnabled( false );
399     }
400
401     updateMRL();
402 }
403
404 #undef setDrive
405
406 /* Update the current MRL */
407 void DiscOpenPanel::updateMRL()
408 {
409     QString mrl = "";
410     QStringList fileList;
411
412     /* CDDAX and VCDX not implemented. TODO ? No. */
413     /* DVD */
414     if( ui.dvdRadioButton->isChecked() ) {
415         if( !ui.dvdsimple->isChecked() )
416             mrl = "dvd://";
417         else
418             mrl = "dvdsimple://";
419         mrl += ui.deviceCombo->currentText();
420         if( !ui.dvdsimple->isChecked() )
421             emit methodChanged( "dvdnav-caching" );
422         else
423             emit methodChanged( "dvdread-caching" );
424
425         if ( ui.titleSpin->value() > 0 ) {
426             mrl += QString("@%1").arg( ui.titleSpin->value() );
427             if ( ui.chapterSpin->value() > 0 ) {
428                 mrl+= QString(":%1").arg( ui.chapterSpin->value() );
429             }
430         }
431
432     /* VCD */
433     } else if ( ui.vcdRadioButton->isChecked() ) {
434         mrl = "vcd://" + ui.deviceCombo->currentText();
435         emit methodChanged( "vcd-caching" );
436
437         if( ui.titleSpin->value() > 0 ) {
438             mrl += QString("@E%1").arg( ui.titleSpin->value() );
439         }
440
441     /* CDDA */
442     } else {
443         mrl = "cdda://" + ui.deviceCombo->currentText();
444         emit methodChanged( "cdda-caching" );
445     }
446
447     fileList << mrl; mrl = "";
448
449     if ( ui.dvdRadioButton->isChecked() || ui.vcdRadioButton->isChecked() )
450     {
451         if ( ui.audioSpin->value() >= 0 ) {
452             mrl += " :audio-track=" +
453                 QString("%1").arg( ui.audioSpin->value() );
454         }
455         if ( ui.subtitlesSpin->value() >= 0 ) {
456             mrl += " :sub-track=" +
457                 QString("%1").arg( ui.subtitlesSpin->value() );
458         }
459     }
460     else
461     {
462         if( ui.titleSpin->value() > 0 )
463             mrl += QString(" :cdda-track=%1").arg( ui.titleSpin->value() );
464     }
465     emit mrlUpdated( fileList, mrl );
466 }
467
468 void DiscOpenPanel::browseDevice()
469 {
470     QString dir = QFileDialog::getExistingDirectory( this,
471             qtr( I_DEVICE_TOOLTIP ) );
472     if (!dir.isEmpty())
473         ui.deviceCombo->setEditText( toNativeSepNoSlash( dir ) );
474
475     updateMRL();
476 }
477
478 void DiscOpenPanel::eject()
479 {
480     intf_Eject( p_intf, qtu( ui.deviceCombo->currentText() ) );
481 }
482
483 void DiscOpenPanel::accept()
484 {}
485
486 /**************************************************************************
487  * Open Network streams and URL pages                                     *
488  **************************************************************************/
489 NetOpenPanel::NetOpenPanel( QWidget *_parent, intf_thread_t *_p_intf ) :
490                                 OpenPanel( _parent, _p_intf )
491 {
492     ui.setupUi( this );
493
494     /* CONNECTs */
495     CONNECT( ui.protocolCombo, activated( int ),
496              this, updateProtocol( int ) );
497     CONNECT( ui.portSpin, valueChanged( int ), this, updateMRL() );
498     CONNECT( ui.addressText, textChanged( const QString& ), this, updateMRL());
499
500     ui.protocolCombo->addItem( "" );
501     ui.protocolCombo->addItem("HTTP", QVariant("http"));
502     ui.protocolCombo->addItem("HTTPS", QVariant("https"));
503     ui.protocolCombo->addItem("MMS", QVariant("mms"));
504     ui.protocolCombo->addItem("FTP", QVariant("ftp"));
505     ui.protocolCombo->addItem("RTSP", QVariant("rtsp"));
506     ui.protocolCombo->addItem("RTP", QVariant("rtp"));
507     ui.protocolCombo->addItem("UDP", QVariant("udp"));
508     ui.protocolCombo->addItem("RTMP", QVariant("rtmp"));
509
510     updateProtocol( ui.protocolCombo->currentIndex() );
511
512     if( config_GetInt( p_intf, "qt-recentplay" ) )
513     {
514         mrlList = new QStringListModel(
515                 getSettings()->value( "Open/netMRL" ).toStringList() );
516         QCompleter *completer = new QCompleter( mrlList, this );
517         ui.addressText->setCompleter( completer );
518
519         CONNECT( ui.addressText, editingFinished(), this, updateCompleter() );
520     }
521     else
522         mrlList = NULL;
523 }
524
525 NetOpenPanel::~NetOpenPanel()
526 {
527     if( !mrlList ) return;
528
529     QStringList tempL = mrlList->stringList();
530     while( tempL.size() > 8 ) tempL.removeFirst();
531
532     getSettings()->setValue( "Open/netMRL", tempL );
533
534     delete mrlList;
535 }
536
537 void NetOpenPanel::clear()
538 {}
539
540 /* update the widgets according the type of protocol */
541 void NetOpenPanel::updateProtocol( int idx_proto ) {
542     QString addr = ui.addressText->text();
543     QString proto = ui.protocolCombo->itemData( idx_proto ).toString();
544
545     ui.portSpin->setEnabled( idx_proto == UDP_PROTO ||
546                              idx_proto == RTP_PROTO );
547
548     if( idx_proto == NO_PROTO ) return;
549
550     /* If we already have a protocol in the address, replace it */
551     if( addr.contains( "://"))
552     {
553         if( idx_proto != UDP_PROTO && idx_proto != RTP_PROTO )
554             addr.replace( QRegExp("^.*://@*"), proto + "://");
555         else if ( ( addr.contains(QRegExp("://((22[4-9])|(23\\d)|(\\[?[fF]{2}[0-9a-fA-F]{2}:))"))) ||
556                 ( !addr.contains(QRegExp("^\\d{1,3}[.]\\d{1,3}[.]\\d{1,3}[.]\\d{1,3}")) &&
557                 !addr.contains(QRegExp(":[a-fA-F0-9]{1,4}:")) ) )
558              addr.replace( QRegExp("^.*://"), proto + "://@");
559     else
560              addr.replace( QRegExp("^.*://"), proto + "://");
561         addr.replace( QRegExp("@+"), "@");
562         ui.addressText->setText( addr );
563     }
564     updateMRL();
565 }
566
567 void NetOpenPanel::updateMRL() {
568     QString mrl = "";
569     QString addr = ui.addressText->text();
570     int idx_proto = ui.protocolCombo->currentIndex();
571     if( addr.contains( "://"))
572     {
573         /* Match the correct item in the comboBox */
574         ui.protocolCombo->setCurrentIndex(
575                 ui.protocolCombo->findData( addr.section( ':', 0, 0 ) ) );
576         mrl = addr;
577     }
578     else
579     {
580         switch( idx_proto ) {
581         case HTTP_PROTO:
582             mrl = "http://" + addr;
583             emit methodChanged("http-caching");
584             break;
585         case HTTPS_PROTO:
586             mrl = "https://" + addr;
587             emit methodChanged("http-caching");
588             break;
589         case MMS_PROTO:
590             mrl = "mms://" + addr;
591             emit methodChanged("mms-caching");
592             break;
593         case FTP_PROTO:
594             mrl = "ftp://" + addr;
595             emit methodChanged("ftp-caching");
596             break;
597         case RTSP_PROTO:
598             mrl = "rtsp://" + addr;
599             emit methodChanged("rtsp-caching");
600             break;
601         case RTP_PROTO:
602         case UDP_PROTO:
603             mrl = qfu(((idx_proto == RTP_PROTO) ? "rtp" : "udp"));
604             mrl += qfu( "://" );
605             if( addr[0] == ':' ) /* Port number without address */
606                 mrl += addr;
607             else
608             {
609                 if( !addr.contains( "@" ) )
610                     mrl += qfu( "@" );
611                 switch( addr.count( ":" ) )
612                 {
613                     case 0: /* DNS or IPv4 literal, no port number */
614                         mrl += addr;
615                         mrl += QString(":%1").arg( ui.portSpin->value() );
616                         break;
617                     case 1: /* DNS or IPv4 literal plus port number */
618                         mrl += addr;
619                         break;
620                     default: /* IPv6 literal */
621                         if( !addr.contains( "]:" ) )
622                         {
623                             if( addr[0] != '[' ) /* Missing brackets */
624                                 mrl += qfu( "[" ) + addr + qfu( "]" );
625                             else
626                                 mrl += addr;
627                             mrl += QString(":%1").arg( ui.portSpin->value() );
628                         }
629                         else /* Brackets present, port present */
630                             mrl += addr;
631                         break;
632                 }
633             }
634             emit methodChanged(idx_proto == RTP_PROTO
635                                    ? "rtp-caching" : "udp-caching");
636             break;
637         case RTMP_PROTO:
638             mrl = "rtmp://" + addr;
639             emit methodChanged("rtmp-caching");
640             break;
641         }
642     }
643
644     QStringList qsl; qsl<< mrl;
645     emit mrlUpdated( qsl, "" );
646 }
647
648 void NetOpenPanel::updateCompleter()
649 {
650     assert( mrlList );
651     QStringList tempL = mrlList->stringList();
652     if( !tempL.contains( ui.addressText->text() ) )
653         tempL.append( ui.addressText->text() );
654     mrlList->setStringList( tempL );
655 }
656
657 /**************************************************************************
658  * Open Capture device ( DVB, PVR, V4L, and similar )                     *
659  **************************************************************************/
660 CaptureOpenPanel::CaptureOpenPanel( QWidget *_parent, intf_thread_t *_p_intf ) :
661                                 OpenPanel( _parent, _p_intf )
662 {
663     isInitialized = false;
664 }
665
666 void CaptureOpenPanel::initialize()
667 {
668     if( isInitialized ) return;
669
670     msg_Dbg( p_intf, "Initialization of Capture device panel" );
671     isInitialized = true;
672
673     ui.setupUi( this );
674
675     BUTTONACT( ui.advancedButton, advancedDialog() );
676
677     /* Create two stacked layouts in the main comboBoxes */
678     QStackedLayout *stackedDevLayout = new QStackedLayout;
679     ui.cardBox->setLayout( stackedDevLayout );
680
681     QStackedLayout *stackedPropLayout = new QStackedLayout;
682     ui.optionsBox->setLayout( stackedPropLayout );
683
684     /* Creation and connections of the WIdgets in the stacked layout */
685 #define addModuleAndLayouts( number, name, label, layout )            \
686     QWidget * name ## DevPage = new QWidget( this );                  \
687     QWidget * name ## PropPage = new QWidget( this );                 \
688     stackedDevLayout->addWidget( name ## DevPage );        \
689     stackedPropLayout->addWidget( name ## PropPage );      \
690     layout * name ## DevLayout = new layout;                \
691     layout * name ## PropLayout = new layout;               \
692     name ## DevPage->setLayout( name ## DevLayout );                  \
693     name ## PropPage->setLayout( name ## PropLayout );                \
694     ui.deviceCombo->addItem( qtr( label ), QVariant( number ) );
695
696 #define CuMRL( widget, slot ) CONNECT( widget , slot , this, updateMRL() );
697
698 #ifdef WIN32
699     /*********************
700      * DirectShow Stuffs *
701      *********************/
702     if( module_exists( "dshow" ) ){
703     addModuleAndLayouts( DSHOW_DEVICE, dshow, "DirectShow", QGridLayout );
704
705     /* dshow Main */
706     int line = 0;
707     module_config_t *p_config =
708         config_FindConfig( VLC_OBJECT(p_intf), "dshow-vdev" );
709     vdevDshowW = new StringListConfigControl(
710         VLC_OBJECT(p_intf), p_config, this, false, dshowDevLayout, line );
711     line++;
712
713     p_config = config_FindConfig( VLC_OBJECT(p_intf), "dshow-adev" );
714     adevDshowW = new StringListConfigControl(
715         VLC_OBJECT(p_intf), p_config, this, false, dshowDevLayout, line );
716     line++;
717
718     /* dshow Properties */
719     QLabel *dshowVSizeLabel = new QLabel( qtr( "Video size" ) );
720     dshowPropLayout->addWidget( dshowVSizeLabel, 0, 0 );
721
722     dshowVSizeLine = new QLineEdit;
723     dshowPropLayout->addWidget( dshowVSizeLine, 0, 1);
724     dshowPropLayout->addItem( new QSpacerItem( 20, 20, QSizePolicy::Expanding ),
725             1, 0, 3, 1 );
726
727     /* dshow CONNECTs */
728     CuMRL( vdevDshowW->combo, currentIndexChanged ( int ) );
729     CuMRL( adevDshowW->combo, currentIndexChanged ( int ) );
730     CuMRL( dshowVSizeLine, textChanged( const QString& ) );
731     }
732
733     /**************
734      * BDA Stuffs *
735      **************/
736     if( module_exists( "bda" ) ){
737     addModuleAndLayouts( BDA_DEVICE, bda, "DVB DirectShow", QGridLayout );
738
739     /* bda Main */
740     QLabel *bdaTypeLabel = new QLabel( qtr( "DVB Type:" ) );
741
742     bdas = new QRadioButton( "DVB-S" );
743     bdas->setChecked( true );
744     bdac = new QRadioButton( "DVB-C" );
745     bdat = new QRadioButton( "DVB-T" );
746     bdaa = new QRadioButton( "ATSC" );
747
748     bdaDevLayout->addWidget( bdaTypeLabel, 0, 0 );
749     bdaDevLayout->addWidget( bdas, 0, 1 );
750     bdaDevLayout->addWidget( bdac, 0, 2 );
751     bdaDevLayout->addWidget( bdat, 0, 3 );
752     bdaDevLayout->addWidget( bdaa, 0, 4 );
753
754     /* bda Props */
755     QLabel *bdaFreqLabel =
756                     new QLabel( qtr( "Transponder/multiplex frequency" ) );
757     bdaPropLayout->addWidget( bdaFreqLabel, 0, 0 );
758
759     bdaFreq = new QSpinBox;
760     bdaFreq->setAlignment( Qt::AlignRight );
761     bdaFreq->setSuffix(" kHz");
762     bdaFreq->setSingleStep( 1000 );
763     setSpinBoxFreq( bdaFreq )
764     bdaPropLayout->addWidget( bdaFreq, 0, 1 );
765
766     bdaSrateLabel = new QLabel( qtr( "Transponder symbol rate" ) );
767     bdaPropLayout->addWidget( bdaSrateLabel, 1, 0 );
768
769     bdaSrate = new QSpinBox;
770     bdaSrate->setAlignment( Qt::AlignRight );
771     bdaSrate->setSuffix(" kHz");
772     setSpinBoxFreq( bdaSrate );
773     bdaPropLayout->addWidget( bdaSrate, 1, 1 );
774
775     bdaBandLabel = new QLabel( qtr( "Bandwidth" ) );
776     bdaPropLayout->addWidget( bdaBandLabel, 2, 0 );
777
778     bdaBandBox = new QComboBox;
779     setfillVLCConfigCombo( "dvb-bandwidth", p_intf, bdaBandBox );
780     bdaPropLayout->addWidget( bdaBandBox, 2, 1 );
781
782     bdaBandLabel->hide();
783     bdaBandBox->hide();
784     bdaPropLayout->addItem( new QSpacerItem( 20, 20, QSizePolicy::Expanding ),
785             2, 0, 2, 1 );
786
787     /* bda CONNECTs */
788     CuMRL( bdaFreq, valueChanged ( int ) );
789     CuMRL( bdaSrate, valueChanged ( int ) );
790     CuMRL( bdaBandBox,  currentIndexChanged ( int ) );
791     BUTTONACT( bdas, updateButtons() );
792     BUTTONACT( bdat, updateButtons() );
793     BUTTONACT( bdac, updateButtons() );
794     BUTTONACT( bdaa, updateButtons() );
795     BUTTONACT( bdas, updateMRL() );
796     BUTTONACT( bdat, updateMRL() );
797     BUTTONACT( bdac, updateMRL() );
798     BUTTONACT( bdaa, updateMRL() );
799     }
800
801 #else /* WIN32 */
802     /*******
803      * V4L2*
804      *******/
805     if( module_exists( "v4l2" ) ){
806     addModuleAndLayouts( V4L2_DEVICE, v4l2, "Video for Linux 2", QGridLayout );
807
808     /* V4l Main panel */
809     QLabel *v4l2VideoDeviceLabel = new QLabel( qtr( "Video device name" ) );
810     v4l2DevLayout->addWidget( v4l2VideoDeviceLabel, 0, 0 );
811
812     v4l2VideoDevice = new QLineEdit;
813     v4l2DevLayout->addWidget( v4l2VideoDevice, 0, 1 );
814
815     QLabel *v4l2AudioDeviceLabel = new QLabel( qtr( "Audio device name" ) );
816     v4l2DevLayout->addWidget( v4l2AudioDeviceLabel, 1, 0 );
817
818     v4l2AudioDevice = new QLineEdit;
819     v4l2DevLayout->addWidget( v4l2AudioDevice, 1, 1 );
820
821     /* v4l2 Props panel */
822     QLabel *v4l2StdLabel = new QLabel( qtr( "Standard" ) );
823     v4l2PropLayout->addWidget( v4l2StdLabel, 0 , 0 );
824
825     v4l2StdBox = new QComboBox;
826     setfillVLCConfigCombo( "v4l2-standard", p_intf, v4l2StdBox );
827     v4l2PropLayout->addWidget( v4l2StdBox, 0 , 1 );
828     v4l2PropLayout->addItem( new QSpacerItem( 20, 20, QSizePolicy::Expanding ),
829             1, 0, 3, 1 );
830
831     /* v4l2 CONNECTs */
832     CuMRL( v4l2VideoDevice, textChanged( const QString& ) );
833     CuMRL( v4l2AudioDevice, textChanged( const QString& ) );
834     CuMRL( v4l2StdBox,  currentIndexChanged ( int ) );
835     }
836
837     /*******
838      * V4L *
839      *******/
840     if( module_exists( "v4l" ) ){
841     addModuleAndLayouts( V4L_DEVICE, v4l, "Video for Linux", QGridLayout );
842
843     /* V4l Main panel */
844     QLabel *v4lVideoDeviceLabel = new QLabel( qtr( "Video device name" ) );
845     v4lDevLayout->addWidget( v4lVideoDeviceLabel, 0, 0 );
846
847     v4lVideoDevice = new QLineEdit;
848     v4lDevLayout->addWidget( v4lVideoDevice, 0, 1 );
849
850     QLabel *v4lAudioDeviceLabel = new QLabel( qtr( "Audio device name" ) );
851     v4lDevLayout->addWidget( v4lAudioDeviceLabel, 1, 0 );
852
853     v4lAudioDevice = new QLineEdit;
854     v4lDevLayout->addWidget( v4lAudioDevice, 1, 1 );
855
856     /* V4l Props panel */
857     QLabel *v4lNormLabel = new QLabel( qtr( "Norm" ) );
858     v4lPropLayout->addWidget( v4lNormLabel, 0 , 0 );
859
860     v4lNormBox = new QComboBox;
861     setfillVLCConfigCombo( "v4l-norm", p_intf, v4lNormBox );
862     v4lPropLayout->addWidget( v4lNormBox, 0 , 1 );
863
864     QLabel *v4lFreqLabel = new QLabel( qtr( "Frequency" ) );
865     v4lPropLayout->addWidget( v4lFreqLabel, 1 , 0 );
866
867     v4lFreq = new QSpinBox;
868     v4lFreq->setAlignment( Qt::AlignRight );
869     v4lFreq->setSuffix(" kHz");
870     setSpinBoxFreq( v4lFreq );
871     v4lPropLayout->addWidget( v4lFreq, 1 , 1 );
872     v4lPropLayout->addItem( new QSpacerItem( 20, 20, QSizePolicy::Expanding ),
873             2, 0, 2, 1 );
874
875     /* v4l CONNECTs */
876     CuMRL( v4lVideoDevice, textChanged( const QString& ) );
877     CuMRL( v4lAudioDevice, textChanged( const QString& ) );
878     CuMRL( v4lFreq, valueChanged ( int ) );
879     CuMRL( v4lNormBox,  currentIndexChanged ( int ) );
880     }
881
882     /*******
883      * JACK *
884      *******/
885     if( module_exists( "jack" ) ){
886     addModuleAndLayouts( JACK_DEVICE, jack, "JACK Audio Connection Kit",
887                          QGridLayout);
888
889     /* Jack Main panel */
890     /* Channels */
891     QLabel *jackChannelsLabel = new QLabel( qtr( "Channels:" ) );
892     jackDevLayout->addWidget( jackChannelsLabel, 1, 0 );
893
894     jackChannels = new QSpinBox;
895     setSpinBoxFreq( jackChannels );
896     jackChannels->setMaximum(255);
897     jackChannels->setValue(2);
898     jackChannels->setAlignment( Qt::AlignRight );
899     jackDevLayout->addWidget( jackChannels, 1, 1 );
900
901     /* Selected ports */
902     QLabel *jackPortsLabel = new QLabel( qtr( "Selected ports:" ) );
903     jackDevLayout->addWidget( jackPortsLabel, 0 , 0 );
904
905     jackPortsSelected = new QLineEdit( qtr( ".*") );
906     jackPortsSelected->setAlignment( Qt::AlignRight );
907     jackDevLayout->addWidget( jackPortsSelected, 0, 1 );
908
909     /* Jack Props panel */
910
911     /* Caching */
912     QLabel *jackCachingLabel = new QLabel( qtr( "Input caching:" ) );
913     jackPropLayout->addWidget( jackCachingLabel, 1 , 0 );
914     jackCaching = new QSpinBox;
915     setSpinBoxFreq( jackCaching );
916     jackCaching->setSuffix( " ms" );
917     jackCaching->setValue(1000);
918     jackCaching->setAlignment( Qt::AlignRight );
919     jackPropLayout->addWidget( jackCaching, 1 , 2 );
920
921     /* Pace */
922     jackPace = new QCheckBox(qtr( "Use VLC pace" ));
923     jackPropLayout->addWidget( jackPace, 2, 1 );
924
925     /* Auto Connect */
926     jackConnect = new QCheckBox( qtr( "Auto connnection" ));
927     jackPropLayout->addWidget( jackConnect, 2, 2 );
928
929     /* Jack CONNECTs */
930     CuMRL( jackChannels, valueChanged( int ) );
931     CuMRL( jackCaching, valueChanged( int ) );
932     CuMRL( jackPace, stateChanged( int ) );
933     CuMRL( jackConnect, stateChanged( int ) );
934     CuMRL( jackPortsSelected, textChanged( const QString& ) );
935     }
936
937     /************
938      * PVR      *
939      ************/
940     if( module_exists( "pvr" ) ){
941     addModuleAndLayouts( PVR_DEVICE, pvr, "PVR", QGridLayout );
942
943     /* PVR Main panel */
944     QLabel *pvrDeviceLabel = new QLabel( qtr( "Device name" ) );
945     pvrDevLayout->addWidget( pvrDeviceLabel, 0, 0 );
946
947     pvrDevice = new QLineEdit;
948     pvrDevLayout->addWidget( pvrDevice, 0, 1 );
949
950     QLabel *pvrRadioDeviceLabel = new QLabel( qtr( "Radio device name" ) );
951     pvrDevLayout->addWidget( pvrRadioDeviceLabel, 1, 0 );
952
953     pvrRadioDevice = new QLineEdit;
954     pvrDevLayout->addWidget( pvrRadioDevice, 1, 1 );
955
956     /* PVR props panel */
957     QLabel *pvrNormLabel = new QLabel( qtr( "Norm" ) );
958     pvrPropLayout->addWidget( pvrNormLabel, 0, 0 );
959
960     pvrNormBox = new QComboBox;
961     setfillVLCConfigCombo( "pvr-norm", p_intf, pvrNormBox );
962     pvrPropLayout->addWidget( pvrNormBox, 0, 1 );
963
964     QLabel *pvrFreqLabel = new QLabel( qtr( "Frequency" ) );
965     pvrPropLayout->addWidget( pvrFreqLabel, 1, 0 );
966
967     pvrFreq = new QSpinBox;
968     pvrFreq->setAlignment( Qt::AlignRight );
969     pvrFreq->setSuffix(" kHz");
970     setSpinBoxFreq( pvrFreq );
971     pvrPropLayout->addWidget( pvrFreq, 1, 1 );
972
973     QLabel *pvrBitrLabel = new QLabel( qtr( "Bitrate" ) );
974     pvrPropLayout->addWidget( pvrBitrLabel, 2, 0 );
975
976     pvrBitr = new QSpinBox;
977     pvrBitr->setAlignment( Qt::AlignRight );
978     pvrBitr->setSuffix(" kHz");
979     setSpinBoxFreq( pvrBitr );
980     pvrPropLayout->addWidget( pvrBitr, 2, 1 );
981     pvrPropLayout->addItem( new QSpacerItem( 20, 20, QSizePolicy::Expanding ),
982             3, 0, 1, 1 );
983
984     /* PVR CONNECTs */
985     CuMRL( pvrDevice, textChanged( const QString& ) );
986     CuMRL( pvrRadioDevice, textChanged( const QString& ) );
987
988     CuMRL( pvrFreq, valueChanged ( int ) );
989     CuMRL( pvrBitr, valueChanged ( int ) );
990     CuMRL( pvrNormBox, currentIndexChanged ( int ) );
991     }
992
993     /**************
994      * DVB Stuffs *
995      **************/
996     if( module_exists( "dvb" ) ){
997     addModuleAndLayouts( DVB_DEVICE, dvb, "DVB", QGridLayout );
998
999     /* DVB Main */
1000     QLabel *dvbDeviceLabel = new QLabel( qtr( "Adapter card to tune" ) );
1001     QLabel *dvbTypeLabel = new QLabel( qtr( "DVB Type:" ) );
1002
1003     dvbCard = new QSpinBox;
1004     dvbCard->setAlignment( Qt::AlignRight );
1005     dvbCard->setPrefix( "/dev/dvb/adapter" );
1006
1007     dvbDevLayout->addWidget( dvbDeviceLabel, 0, 0 );
1008     dvbDevLayout->addWidget( dvbCard, 0, 2, 1, 2 );
1009
1010     dvbs = new QRadioButton( "DVB-S" );
1011     dvbs->setChecked( true );
1012     dvbc = new QRadioButton( "DVB-C" );
1013     dvbt = new QRadioButton( "DVB-T" );
1014
1015     dvbDevLayout->addWidget( dvbTypeLabel, 1, 0 );
1016     dvbDevLayout->addWidget( dvbs, 1, 1 );
1017     dvbDevLayout->addWidget( dvbc, 1, 2 );
1018     dvbDevLayout->addWidget( dvbt, 1, 3 );
1019
1020     /* DVB Props panel */
1021     QLabel *dvbFreqLabel =
1022                     new QLabel( qtr( "Transponder/multiplex frequency" ) );
1023     dvbPropLayout->addWidget( dvbFreqLabel, 0, 0 );
1024
1025     dvbFreq = new QSpinBox;
1026     dvbFreq->setAlignment( Qt::AlignRight );
1027     dvbFreq->setSuffix(" kHz");
1028     dvbFreq->setSingleStep( 1000 );
1029     setSpinBoxFreq( dvbFreq  );
1030     dvbPropLayout->addWidget( dvbFreq, 0, 1 );
1031
1032     dvbSrateLabel = new QLabel( qtr( "Transponder symbol rate" ) );
1033     dvbPropLayout->addWidget( dvbSrateLabel, 1, 0 );
1034
1035     dvbSrate = new QSpinBox;
1036     dvbSrate->setAlignment( Qt::AlignRight );
1037     dvbSrate->setSuffix(" kHz");
1038     setSpinBoxFreq( dvbSrate );
1039     dvbPropLayout->addWidget( dvbSrate, 1, 1 );
1040
1041     dvbBandLabel = new QLabel( qtr( "Bandwidth" ) );
1042     dvbPropLayout->addWidget( dvbBandLabel, 2, 0 );
1043
1044     dvbBandBox = new QComboBox;
1045     /* This doesn't work since dvb-bandwidth doesn't seem to be a
1046        list of Integers
1047        setfillVLCConfigCombo( "dvb-bandwidth", p_intf, bdaBandBox );
1048      */
1049     dvbBandBox->addItem( qtr( "Auto" ), 0 );
1050     dvbBandBox->addItem( qtr( "6 MHz" ), 6 );
1051     dvbBandBox->addItem( qtr( "7 MHz" ), 7 );
1052     dvbBandBox->addItem( qtr( "8 MHz" ), 8 );
1053     dvbPropLayout->addWidget( dvbBandBox, 2, 1 );
1054
1055     dvbBandLabel->hide();
1056     dvbBandBox->hide();
1057
1058     dvbPropLayout->addItem( new QSpacerItem( 20, 20, QSizePolicy::Expanding ),
1059             2, 0, 2, 1 );
1060
1061     /* DVB CONNECTs */
1062     CuMRL( dvbCard, valueChanged ( int ) );
1063     CuMRL( dvbFreq, valueChanged ( int ) );
1064     CuMRL( dvbSrate, valueChanged ( int ) );
1065     CuMRL( dvbBandBox, currentIndexChanged ( int ) );
1066
1067     BUTTONACT( dvbs, updateButtons() );
1068     BUTTONACT( dvbt, updateButtons() );
1069     BUTTONACT( dvbc, updateButtons() );
1070     BUTTONACT( dvbs, updateMRL() );
1071     BUTTONACT( dvbt, updateMRL() );
1072     BUTTONACT( dvbc, updateMRL() );
1073     }
1074
1075 #endif
1076
1077
1078     /**********
1079      * Screen *
1080      **********/
1081     addModuleAndLayouts( SCREEN_DEVICE, screen, "Desktop", QGridLayout );
1082     QLabel *screenLabel = new QLabel( qtr( "Your display will be "
1083             "opened and played in order to stream or save it." ) );
1084     screenLabel->setWordWrap( true );
1085     screenDevLayout->addWidget( screenLabel, 0, 0 );
1086
1087     QLabel *screenFPSLabel = new QLabel(
1088             qtr( "Desired frame rate for the capture." ) );
1089     screenPropLayout->addWidget( screenFPSLabel, 0, 0 );
1090
1091     screenFPS = new QSpinBox;
1092     screenFPS->setValue( 1 );
1093     screenFPS->setAlignment( Qt::AlignRight );
1094     screenPropLayout->addWidget( screenFPS, 0, 1 );
1095
1096     /* Screen connect */
1097     CuMRL( screenFPS, valueChanged( int ) );
1098
1099     /* General connects */
1100     CONNECT( ui.deviceCombo, activated( int ) ,
1101              stackedDevLayout, setCurrentIndex( int ) );
1102     CONNECT( ui.deviceCombo, activated( int ),
1103              stackedPropLayout, setCurrentIndex( int ) );
1104     CONNECT( ui.deviceCombo, activated( int ), this, updateMRL() );
1105     CONNECT( ui.deviceCombo, activated( int ), this, updateButtons() );
1106
1107 #undef CuMRL
1108 #undef addModuleAndLayouts
1109 }
1110
1111 CaptureOpenPanel::~CaptureOpenPanel()
1112 {
1113 }
1114
1115 void CaptureOpenPanel::clear()
1116 {
1117     advMRL.clear();
1118 }
1119
1120 void CaptureOpenPanel::updateMRL()
1121 {
1122     QString mrl = "";
1123     QStringList fileList;
1124     int i_devicetype = ui.deviceCombo->itemData(
1125             ui.deviceCombo->currentIndex() ).toInt();
1126     switch( i_devicetype )
1127     {
1128 #ifdef WIN32
1129     case BDA_DEVICE:
1130         if( bdas->isChecked() ) mrl = "dvb-s://";
1131         else if(  bdat->isChecked() ) mrl = "dvb-t://";
1132         else if(  bdac->isChecked() ) mrl = "dvb-c://";
1133         else if(  bdaa->isChecked() ) mrl = "atsc://";
1134         else return;
1135         mrl += "frequency=" + QString::number( bdaFreq->value() );
1136         if( bdac->isChecked() || bdat->isChecked() || bdaa->isChecked() )
1137             mrl +="000";
1138         fileList << mrl; mrl = "";
1139
1140         if( bdas->isChecked() || bdac->isChecked() )
1141             mrl += " :dvb-srate=" + QString::number( bdaSrate->value() );
1142         else if( bdat->isChecked() || bdaa->isChecked() )
1143             mrl += " :dvb-bandwidth=" +
1144                 QString::number( bdaBandBox->itemData(
1145                     bdaBandBox->currentIndex() ).toInt() );
1146         emit methodChanged( "dvb-caching" );
1147         break;
1148     case DSHOW_DEVICE:
1149         fileList << "dshow://";
1150         mrl+= " :dshow-vdev=" +
1151             colon_escape( QString("%1").arg( vdevDshowW->getValue() ) );
1152         mrl+= " :dshow-adev=" +
1153             colon_escape( QString("%1").arg( adevDshowW->getValue() ) );
1154         if( dshowVSizeLine->isModified() )
1155             mrl += " :dshow-size=" + dshowVSizeLine->text();
1156         emit methodChanged( "dshow-caching" );
1157         break;
1158 #else
1159     case V4L_DEVICE:
1160         fileList << "v4l://";
1161         mrl += " :v4l-vdev=" + v4lVideoDevice->text();
1162         mrl += " :input-slave=alsa://" + v4lAudioDevice->text();
1163         mrl += " :v4l-norm=" + QString::number( v4lNormBox->currentIndex() );
1164         mrl += " :v4l-frequency=" + QString::number( v4lFreq->value() );
1165         break;
1166     case V4L2_DEVICE:
1167         fileList << "v4l2://" + v4l2VideoDevice->text();
1168         mrl += " :input-slave=alsa://" + v4l2AudioDevice->text();
1169         mrl += " :v4l2-standard=" + QString::number( v4l2StdBox->currentIndex() );
1170         break;
1171     case JACK_DEVICE:
1172         mrl = "jack://";
1173         mrl += "channels=" + QString::number( jackChannels->value() );
1174         mrl += ":ports=" + jackPortsSelected->text();
1175         fileList << mrl; mrl = "";
1176
1177         mrl += " :jack-input-caching=" + QString::number( jackCaching->value() );
1178         if ( jackPace->isChecked() )
1179         {
1180                 mrl += " :jack-input-use-vlc-pace";
1181         }
1182         if ( jackConnect->isChecked() )
1183         {
1184                 mrl += " :jack-input-auto-connect";
1185         }
1186         break;
1187     case PVR_DEVICE:
1188         fileList << "pvr://";
1189         mrl += " :pvr-device=" + pvrDevice->text();
1190         mrl += " :pvr-radio-device=" + pvrRadioDevice->text();
1191         mrl += " :pvr-norm=" + QString::number( pvrNormBox->currentIndex() );
1192         if( pvrFreq->value() )
1193             mrl += " :pvr-frequency=" + QString::number( pvrFreq->value() );
1194         if( pvrBitr->value() )
1195             mrl += " :pvr-bitrate=" + QString::number( pvrBitr->value() );
1196         break;
1197     case DVB_DEVICE:
1198         mrl = "dvb://";
1199         mrl += "frequency=" + QString::number( dvbFreq->value() );
1200         if( dvbc->isChecked() || dvbt->isChecked() )
1201             mrl +="000";
1202         fileList << mrl; mrl= "";
1203
1204         mrl += " :dvb-adapter=" + QString::number( dvbCard->value() );
1205         if( dvbs->isChecked() || dvbc->isChecked() )
1206             mrl += " :dvb-srate=" + QString::number( dvbSrate->value() );
1207         else if( dvbt->isChecked() )
1208             mrl += " :dvb-bandwidth=" +
1209                 QString::number( dvbBandBox->itemData(
1210                     dvbBandBox->currentIndex() ).toInt() );
1211
1212         break;
1213 #endif
1214     case SCREEN_DEVICE:
1215         fileList << "screen://";
1216         mrl = " :screen-fps=" + QString::number( screenFPS->value() );
1217         emit methodChanged( "screen-caching" );
1218         updateButtons();
1219         break;
1220     }
1221
1222     if( !advMRL.isEmpty() ) mrl += advMRL;
1223
1224     emit mrlUpdated( fileList, mrl );
1225 }
1226
1227 /**
1228  * Update the Buttons (show/hide) for the GUI as all device type don't
1229  * use the same ui. elements.
1230  **/
1231 void CaptureOpenPanel::updateButtons()
1232 {
1233     /*  Be sure to display the ui Elements in case they were hidden by
1234      *  some Device Type (like Screen://) */
1235     ui.optionsBox->show();
1236     ui.advancedButton->show();
1237     /* Get the current Device Number */
1238     int i_devicetype = ui.deviceCombo->itemData(
1239                                 ui.deviceCombo->currentIndex() ).toInt();
1240     switch( i_devicetype )
1241     {
1242 #ifdef WIN32
1243     case BDA_DEVICE:
1244         if( bdas->isChecked() || bdac->isChecked() )
1245         {
1246             bdaSrate->show();
1247             bdaSrateLabel->show();
1248             bdaBandBox->hide();
1249             bdaBandLabel->hide();
1250         }
1251         else if( bdat->isChecked() || bdaa->isChecked() )
1252         {
1253             bdaSrate->hide();
1254             bdaSrateLabel->hide();
1255             bdaBandBox->show();
1256             bdaBandLabel->show();
1257         }
1258         break;
1259 #else
1260     case DVB_DEVICE:
1261         if( dvbs->isChecked() || dvbc->isChecked() )
1262         {
1263             dvbSrate->show();
1264             dvbSrateLabel->show();
1265             dvbBandBox->hide();
1266             dvbBandLabel->hide();
1267         }
1268         else if( dvbt->isChecked() )
1269         {
1270             dvbSrate->hide();
1271             dvbSrateLabel->hide();
1272             dvbBandBox->show();
1273             dvbBandLabel->show();
1274         }
1275         break;
1276 #endif
1277     case SCREEN_DEVICE:
1278         //ui.optionsBox->hide();
1279         ui.advancedButton->hide();
1280         break;
1281     }
1282
1283     advMRL.clear();
1284 }
1285
1286 void CaptureOpenPanel::advancedDialog()
1287 {
1288     /* Get selected device type */
1289     int i_devicetype = ui.deviceCombo->itemData(
1290                                 ui.deviceCombo->currentIndex() ).toInt();
1291
1292     /* Get the corresponding module */
1293     module_t *p_module =
1294         module_find( psz_devModule[i_devicetype] );
1295     if( NULL == p_module ) return;
1296
1297     /* Init */
1298     QList<ConfigControl *> controls;
1299
1300     /* Get the confsize  */
1301     unsigned int i_confsize;
1302     module_config_t *p_config;
1303     p_config = module_config_get( p_module, &i_confsize );
1304
1305     /* New Adv Prop dialog */
1306     adv = new QDialog( this );
1307     adv->setWindowTitle( qtr( "Advanced Options" ) );
1308     adv->setWindowRole( "vlc-advanced-options" );
1309
1310     /* A main Layout with a Frame */
1311     QVBoxLayout *mainLayout = new QVBoxLayout( adv );
1312     QScrollArea *scroll = new QScrollArea;
1313     mainLayout->addWidget( scroll );
1314
1315     QFrame *advFrame = new QFrame;
1316     /* GridLayout inside the Frame */
1317     QGridLayout *gLayout = new QGridLayout( advFrame );
1318
1319     scroll->setWidgetResizable( true );
1320     scroll->setWidget( advFrame );
1321
1322     /* Create the options inside the FrameLayout */
1323     for( int n = 0; n < (int)i_confsize; n++ )
1324     {
1325         module_config_t *p_item = p_config + n;
1326         ConfigControl *config = ConfigControl::createControl(
1327                         VLC_OBJECT( p_intf ), p_item, advFrame, gLayout, n );
1328         if ( config )
1329             controls.append( config );
1330     }
1331
1332     /* Button stuffs */
1333     QDialogButtonBox *advButtonBox = new QDialogButtonBox( adv );
1334     QPushButton *closeButton = new QPushButton( qtr( "OK" ) );
1335     QPushButton *cancelButton = new QPushButton( qtr( "Cancel" ) );
1336
1337     CONNECT( closeButton, clicked(), adv, accept() );
1338     CONNECT( cancelButton, clicked(), adv, reject() );
1339
1340     advButtonBox->addButton( closeButton, QDialogButtonBox::AcceptRole );
1341     advButtonBox->addButton( cancelButton, QDialogButtonBox::RejectRole );
1342
1343     mainLayout->addWidget( advButtonBox );
1344
1345     /* Creation of the MRL */
1346     if( adv->exec() )
1347     {
1348         QString tempMRL = "";
1349         for( int i = 0; i < controls.size(); i++ )
1350         {
1351             ConfigControl *control = controls[i];
1352
1353             tempMRL += (i ? " :" : ":");
1354
1355             if( control->getType() == CONFIG_ITEM_BOOL )
1356                 if( !(qobject_cast<VIntConfigControl *>(control)->getValue() ) )
1357                     tempMRL += "no-";
1358
1359             tempMRL += control->getName();
1360
1361             switch( control->getType() )
1362             {
1363                 case CONFIG_ITEM_STRING:
1364                 case CONFIG_ITEM_FILE:
1365                 case CONFIG_ITEM_DIRECTORY:
1366                 case CONFIG_ITEM_MODULE:
1367                     tempMRL += colon_escape( QString("=%1").arg( qobject_cast<VStringConfigControl *>(control)->getValue() ) );
1368                     break;
1369                 case CONFIG_ITEM_INTEGER:
1370                     tempMRL += QString("=%1").arg( qobject_cast<VIntConfigControl *>(control)->getValue() );
1371                     break;
1372                 case CONFIG_ITEM_FLOAT:
1373                     tempMRL += QString("=%1").arg( qobject_cast<VFloatConfigControl *>(control)->getValue() );
1374                     break;
1375             }
1376         }
1377         advMRL = tempMRL;
1378         updateMRL();
1379         msg_Dbg( p_intf, "%s", qtu( advMRL ) );
1380     }
1381     for( int i = 0; i < controls.size(); i++ )
1382     {
1383         ConfigControl *control = controls[i];
1384         delete control ;
1385     }
1386     delete adv;
1387     module_config_free( p_config );
1388     module_release (p_module);
1389 }
1390