]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/open_panels.cpp
Revert "Fixed 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-2007 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"
37
38 #include <QFileDialog>
39 #include <QDialogButtonBox>
40 #include <QLineEdit>
41 #include <QStackedLayout>
42 #include <QListView>
43 #include <QCompleter>
44 #include <QDirModel>
45 #include <QScrollArea>
46 #include <QUrl>
47
48 /**************************************************************************
49  * Open Files and subtitles                                               *
50  **************************************************************************/
51 FileOpenPanel::FileOpenPanel( QWidget *_parent, intf_thread_t *_p_intf ) :
52                                 OpenPanel( _parent, _p_intf )
53 {
54     /* Classic UI Setup */
55     ui.setupUi( this );
56
57     /** BEGIN QFileDialog tweaking **/
58     /* Use a QFileDialog and customize it because we don't want to
59        rewrite it all. Be careful to your eyes cause there are a few hacks.
60        Be very careful and test correctly when you modify this. */
61
62     /* Set Filters for file selection */
63     QString fileTypes = "";
64     ADD_FILTER_MEDIA( fileTypes );
65     ADD_FILTER_VIDEO( fileTypes );
66     ADD_FILTER_AUDIO( fileTypes );
67     ADD_FILTER_PLAYLIST( fileTypes );
68     ADD_FILTER_ALL( fileTypes );
69     fileTypes.replace( QString(";*"), QString(" *"));
70
71     // Make this QFileDialog a child of tempWidget from the ui.
72     dialogBox = new FileOpenBox( ui.tempWidget, NULL,
73             qfu( p_intf->p_sys->psz_filepath ), fileTypes );
74
75     dialogBox->setFileMode( QFileDialog::ExistingFiles );
76     dialogBox->setAcceptMode( QFileDialog::AcceptOpen );
77     dialogBox->setViewMode( config_GetInt( p_intf, "qt-open-detail" ) ?
78             QFileDialog::Detail : QFileDialog::List );
79
80     /* We don't want to see a grip in the middle of the window, do we? */
81     dialogBox->setSizeGripEnabled( false );
82
83     /* Add a tooltip */
84     dialogBox->setToolTip( qtr( "Select one or multiple files" ) );
85
86     // But hide the two OK/Cancel buttons. Enable them for debug.
87     QDialogButtonBox *fileDialogAcceptBox =
88                       dialogBox->findChildren<QDialogButtonBox*>()[0];
89     fileDialogAcceptBox->hide();
90
91     /* Ugly hacks to get the good Widget */
92     //This lineEdit is the normal line in the fileDialog.
93 #if HAS_QT43
94     lineFileEdit = dialogBox->findChildren<QLineEdit*>()[0];
95 #else
96     lineFileEdit = dialogBox->findChildren<QLineEdit*>()[1];
97 #endif
98     /* Make a list of QLabel inside the QFileDialog to access the good ones */
99     QList<QLabel *> listLabel = dialogBox->findChildren<QLabel*>();
100
101     /* Hide the FileNames one. Enable it for debug */
102     listLabel[1]->setText( qtr( "File names:" ) );
103     /* Change the text that was uncool in the usual box */
104     listLabel[2]->setText( qtr( "Filter:" ) );
105
106     dialogBox->layout()->setMargin( 0 );
107     dialogBox->layout()->setSizeConstraint( QLayout::SetNoConstraint );
108
109     /** END of QFileDialog tweaking **/
110
111     // Add the DialogBox to the layout
112     ui.gridLayout->addWidget( dialogBox, 0, 0, 1, 3 );
113
114     //TODO later: fill the fileCompleteList with previous items played.
115     QCompleter *fileCompleter = new QCompleter( fileCompleteList, this );
116     fileCompleter->setModel( new QDirModel( fileCompleter ) );
117     lineFileEdit->setCompleter( fileCompleter );
118
119     // Hide the subtitles control by default.
120     ui.subFrame->hide();
121
122     /* Build the subs size combo box */
123     setfillVLCConfigCombo( "freetype-rel-fontsize" , p_intf,
124                             ui.sizeSubComboBox );
125
126     /* Build the subs align combo box */
127     setfillVLCConfigCombo( "subsdec-align", p_intf, ui.alignSubComboBox );
128
129     /* Connects  */
130     BUTTONACT( ui.subBrowseButton, browseFileSub() );
131     BUTTONACT( ui.subCheckBox, toggleSubtitleFrame());
132
133     CONNECT( lineFileEdit, textChanged( QString ), this, updateMRL() );
134     CONNECT( ui.subInput, textChanged( QString ), this, updateMRL() );
135     CONNECT( ui.alignSubComboBox, currentIndexChanged( int ), this, updateMRL() );
136     CONNECT( ui.sizeSubComboBox, currentIndexChanged( int ), this, updateMRL() );
137 }
138
139 FileOpenPanel::~FileOpenPanel()
140 {
141 }
142
143 /* Show a fileBrowser to select a subtitle */
144 void FileOpenPanel::browseFileSub()
145 {
146     // TODO Handle selection of more than one subtitles file
147     QStringList files = THEDP->showSimpleOpen( qtr("Open subtitles file"),
148                             EXT_FILTER_SUBTITLE,
149                             dialogBox->directory().absolutePath() );
150     if( files.isEmpty() ) return;
151     ui.subInput->setText( files.join(" ") );
152     updateMRL();
153 }
154
155 /* Update the current MRL */
156 void FileOpenPanel::updateMRL()
157 {
158     QString mrl = "";
159     foreach( QString file, dialogBox->selectedFiles() ) {
160          mrl += "\"" + file + "\" ";
161     }
162
163     if( ui.subCheckBox->isChecked() ) {
164         mrl.append( " :sub-file=\"" + ui.subInput->text() + "\"" );
165         int align = ui.alignSubComboBox->itemData(
166                     ui.alignSubComboBox->currentIndex() ).toInt();
167         mrl.append( " :subsdec-align=" + QString().setNum( align ) );
168         int size = ui.sizeSubComboBox->itemData(
169                    ui.sizeSubComboBox->currentIndex() ).toInt();
170         mrl.append( " :freetype-rel-fontsize=" + QString().setNum( size ) );
171     }
172
173     emit mrlUpdated( mrl );
174     emit methodChanged( "file-caching" );
175 }
176
177 /* Function called by Open Dialog when clicke on Play/Enqueue */
178 void FileOpenPanel::accept()
179 {
180     //TODO set the completer
181     p_intf->p_sys->psz_filepath = qtu( dialogBox->directory().absolutePath() );
182 }
183
184 void FileOpenBox::accept()
185 {
186     OpenDialog::getInstance( NULL, NULL )->play();
187 }
188
189 /* Function called by Open Dialog when clicked on cancel */
190 void FileOpenPanel::clear()
191 {
192     lineFileEdit->clear();
193     ui.subInput->clear();
194 }
195
196 void FileOpenPanel::toggleSubtitleFrame()
197 {
198     TOGGLEV( ui.subFrame );
199
200     /* Update the MRL */
201     updateMRL();
202 }
203
204 /**************************************************************************
205  * Open Discs ( DVD, CD, VCD and similar devices )                        *
206  **************************************************************************/
207 DiscOpenPanel::DiscOpenPanel( QWidget *_parent, intf_thread_t *_p_intf ) :
208                                 OpenPanel( _parent, _p_intf )
209 {
210     ui.setupUi( this );
211
212     /* Get the default configuration path for the devices */
213     psz_dvddiscpath = config_GetPsz( p_intf, "dvd" );
214     psz_vcddiscpath = config_GetPsz( p_intf, "vcd" );
215     psz_cddadiscpath = config_GetPsz( p_intf, "cd-audio" );
216
217     /* State to avoid overwritting the users changes with the configuration */
218     b_firstdvd = true;
219     b_firstvcd = true;
220     b_firstcdda = true;
221
222 #if WIN32 /* Disc drives probing for Windows */
223     char szDrives[512];
224     szDrives[0] = '\0';
225     if( GetLogicalDriveStringsA( sizeof( szDrives ) - 1, szDrives ) )
226     {
227         char *drive = szDrives;
228         UINT oldMode = SetErrorMode( SEM_FAILCRITICALERRORS );
229         while( *drive )
230         {
231             if( GetDriveTypeA(drive) == DRIVE_CDROM )
232                 ui.deviceCombo->addItem( drive );
233
234             /* go to next drive */
235             while( *(drive++) );
236         }
237         SetErrorMode(oldMode);
238     }
239 #else /* Use a Completer under Linux */
240     QCompleter *discCompleter = new QCompleter( this );
241     discCompleter->setModel( new QDirModel( discCompleter ) );
242     ui.deviceCombo->setCompleter( discCompleter );
243 #endif
244
245     /* CONNECTs */
246     BUTTONACT( ui.dvdRadioButton, updateButtons() );
247     BUTTONACT( ui.vcdRadioButton, updateButtons() );
248     BUTTONACT( ui.audioCDRadioButton, updateButtons() );
249     BUTTONACT( ui.dvdsimple, updateButtons() );
250     BUTTONACT( ui.browseDiscButton, browseDevice() );
251     BUTTONACT( ui.ejectButton, eject() );
252
253     CONNECT( ui.deviceCombo, editTextChanged( QString ), this, updateMRL());
254     CONNECT( ui.titleSpin, valueChanged( int ), this, updateMRL());
255     CONNECT( ui.chapterSpin, valueChanged( int ), this, updateMRL());
256     CONNECT( ui.audioSpin, valueChanged( int ), this, updateMRL());
257     CONNECT( ui.subtitlesSpin, valueChanged( int ), this, updateMRL());
258
259     /* Run once the updateButtons function in order to fill correctly the comboBoxes */
260     updateButtons();
261 }
262
263 DiscOpenPanel::~DiscOpenPanel()
264 {
265     delete psz_dvddiscpath;
266     delete psz_vcddiscpath;
267     delete psz_cddadiscpath;
268 }
269
270 void DiscOpenPanel::clear()
271 {
272     ui.titleSpin->setValue( 0 );
273     ui.chapterSpin->setValue( 0 );
274     b_firstcdda = true;
275     b_firstdvd = true;
276     b_firstvcd = true;
277 }
278
279 #ifdef WIN32
280     #define setDrive( psz_name ) {\
281     int index = ui.deviceCombo->findText( qfu( psz_name ) ); \
282     if( index != -1 ) ui.deviceCombo->setCurrentIndex( index );}
283 #else
284     #define setDrive( psz_name ) {\
285     ui.deviceCombo->setEditText( qfu( psz_name ) ); }
286 #endif
287
288 /* update the buttons according the type of device */
289 void DiscOpenPanel::updateButtons()
290 {
291     if ( ui.dvdRadioButton->isChecked() )
292     {
293         if( b_firstdvd )
294         {
295             setDrive( psz_dvddiscpath );
296             b_firstdvd = false;
297         }
298         ui.titleLabel->setText( qtr("Title") );
299         ui.chapterLabel->show();
300         ui.chapterSpin->show();
301         ui.diskOptionBox_2->show();
302         ui.dvdsimple->setEnabled( true );
303     }
304     else if ( ui.vcdRadioButton->isChecked() )
305     {
306         if( b_firstvcd )
307         {
308             setDrive( psz_vcddiscpath );
309             b_firstvcd = false;
310         }
311         ui.titleLabel->setText( qtr("Entry") );
312         ui.chapterLabel->hide();
313         ui.chapterSpin->hide();
314         ui.diskOptionBox_2->show();
315         ui.dvdsimple->setEnabled( false );
316     }
317     else /* CDDA */
318     {
319         if( b_firstcdda )
320         {
321             setDrive( psz_cddadiscpath );
322             b_firstcdda = false;
323         }
324         ui.titleLabel->setText( qtr("Track") );
325         ui.chapterLabel->hide();
326         ui.chapterSpin->hide();
327         ui.diskOptionBox_2->hide();
328         ui.dvdsimple->setEnabled( false );
329     }
330
331     updateMRL();
332 }
333
334 /* Update the current MRL */
335 void DiscOpenPanel::updateMRL()
336 {
337     QString mrl = "";
338
339     /* CDDAX and VCDX not implemented. TODO ? */
340     /* DVD */
341     if( ui.dvdRadioButton->isChecked() ) {
342         if( !ui.dvdsimple->isChecked() )
343             mrl = "\"dvd://";
344         else
345             mrl = "\"dvdsimple://";
346         mrl += ui.deviceCombo->currentText();
347         emit methodChanged( "dvdnav-caching" );
348
349         if ( ui.titleSpin->value() > 0 ) {
350             mrl += QString("@%1").arg( ui.titleSpin->value() );
351             if ( ui.chapterSpin->value() > 0 ) {
352                 mrl+= QString(":%1").arg( ui.chapterSpin->value() );
353             }
354         }
355
356     /* VCD */
357     } else if ( ui.vcdRadioButton->isChecked() ) {
358         mrl = "\"vcd://" + ui.deviceCombo->currentText();
359         emit methodChanged( "vcd-caching" );
360
361         if( ui.titleSpin->value() > 0 ) {
362             mrl += QString("@E%1").arg( ui.titleSpin->value() );
363         }
364
365     /* CDDA */
366     } else {
367         mrl = "\"cdda://" + ui.deviceCombo->currentText();
368         if( ui.titleSpin->value() > 0 ) {
369             QString("@%1").arg( ui.titleSpin->value() );
370         }
371     }
372
373     mrl += "\"";
374
375     if ( ui.dvdRadioButton->isChecked() || ui.vcdRadioButton->isChecked() )
376     {
377         if ( ui.audioSpin->value() >= 0 ) {
378             mrl += " :audio-track=" +
379                 QString("%1").arg( ui.audioSpin->value() );
380         }
381         if ( ui.subtitlesSpin->value() >= 0 ) {
382             mrl += " :sub-track=" +
383                 QString("%1").arg( ui.subtitlesSpin->value() );
384         }
385     }
386     emit mrlUpdated( mrl );
387 }
388
389 void DiscOpenPanel::browseDevice()
390 {
391     QString dir = QFileDialog::getExistingDirectory( 0,
392             qtr("Open a device or a VIDEO_TS directory") );
393     if (!dir.isEmpty()) {
394         ui.deviceCombo->setEditText( dir );
395     }
396     updateMRL();
397 }
398
399 void DiscOpenPanel::eject()
400 {
401     intf_Eject( p_intf, qtu( ui.deviceCombo->currentText() ) );
402 }
403
404 void DiscOpenPanel::accept()
405 {}
406
407 /**************************************************************************
408  * Open Network streams and URL pages                                     *
409  **************************************************************************/
410 NetOpenPanel::NetOpenPanel( QWidget *_parent, intf_thread_t *_p_intf ) :
411                                 OpenPanel( _parent, _p_intf )
412 {
413     ui.setupUi( this );
414
415     /* CONNECTs */
416     CONNECT( ui.protocolCombo, activated( int ),
417              this, updateProtocol( int ) );
418     CONNECT( ui.portSpin, valueChanged( int ), this, updateMRL() );
419     CONNECT( ui.addressText, textChanged( QString ), this, updateMRL());
420     CONNECT( ui.timeShift, clicked(), this, updateMRL());
421     CONNECT( ui.ipv6, clicked(), this, updateMRL());
422
423     ui.protocolCombo->addItem( "" );
424     ui.protocolCombo->addItem("HTTP", QVariant("http"));
425     ui.protocolCombo->addItem("HTTPS", QVariant("https"));
426     ui.protocolCombo->addItem("FTP", QVariant("ftp"));
427     ui.protocolCombo->addItem("MMS", QVariant("mms"));
428     ui.protocolCombo->addItem("RTSP", QVariant("rtsp"));
429     ui.protocolCombo->addItem("UDP/RTP (unicast)", QVariant("udp"));
430     ui.protocolCombo->addItem("UDP/RTP (multicast)", QVariant("udp"));
431     ui.protocolCombo->addItem("RTMP", QVariant("rtmp"));
432 }
433
434 NetOpenPanel::~NetOpenPanel()
435 {}
436
437 void NetOpenPanel::clear()
438 {}
439
440 /* update the widgets according the type of protocol */
441 void NetOpenPanel::updateProtocol( int idx_proto ) {
442     QString addr = ui.addressText->text();
443     QString proto = ui.protocolCombo->itemData( idx_proto ).toString();
444
445     ui.timeShift->setEnabled( idx_proto == UDP_PROTO ||
446                               idx_proto == UDPM_PROTO );
447     ui.ipv6->setEnabled( idx_proto == UDP_PROTO );
448     ui.addressText->setEnabled( idx_proto != UDP_PROTO );
449     ui.portSpin->setEnabled( idx_proto == UDP_PROTO ||
450                              idx_proto == UDPM_PROTO );
451
452     if( idx_proto == NO_PROTO ) return;
453
454     /* If we already have a protocol in the address, replace it */
455     if( addr.contains( "://"))
456     {
457         if( idx_proto != UDPM_PROTO )
458             addr.replace( QRegExp("^.*://@*"), proto + "://");
459         else
460              addr.replace( QRegExp("^.*://"), proto + "://@");
461         ui.addressText->setText( addr );
462     }
463     updateMRL();
464 }
465
466 void NetOpenPanel::updateMRL() {
467     QString mrl = "";
468     QString addr = ui.addressText->text();
469     addr = QUrl::toPercentEncoding( addr, ":/?#@!$&'()*+,;=" );
470     int idx_proto = ui.protocolCombo->currentIndex();
471
472     if( addr.contains( "://"))
473     {
474         /* Match the correct item in the comboBox */
475         ui.protocolCombo->setCurrentIndex(
476                 ui.protocolCombo->findData( addr.section( ':', 0, 0 ) ) );
477
478         if( idx_proto != UDP_PROTO || idx_proto != UDPM_PROTO )
479             mrl = addr;
480     }
481     else
482     {
483         switch( idx_proto ) {
484         case HTTP_PROTO:
485             mrl = "http://" + addr;
486             emit methodChanged("http-caching");
487             break;
488         case HTTPS_PROTO:
489             mrl = "https://" + addr;
490             emit methodChanged("http-caching");
491             break;
492         case MMS_PROTO:
493             mrl = "mms://" + addr;
494             emit methodChanged("mms-caching");
495             break;
496         case FTP_PROTO:
497             mrl = "ftp://" + addr;
498             emit methodChanged("ftp-caching");
499             break;
500         case RTSP_PROTO:
501             mrl = "rtsp://" + addr;
502             emit methodChanged("rtsp-caching");
503             break;
504         case UDP_PROTO:
505             mrl = "udp://@";
506             if( ui.ipv6->isEnabled() && ui.ipv6->isChecked() )
507             {
508                 mrl += "[::]";
509             }
510             mrl += QString(":%1").arg( ui.portSpin->value() );
511             emit methodChanged("udp-caching");
512             break;
513         case UDPM_PROTO: /* UDP multicast */
514             mrl = "udp://@";
515             /* Add [] to IPv6 */
516             if ( addr.contains(':') && !addr.contains('[') )
517             {
518                 mrl += "[" + addr + "]";
519             }
520             else mrl += addr;
521             mrl += QString(":%1").arg( ui.portSpin->value() );
522             emit methodChanged("udp-caching");
523         case RTMP_PROTO:
524             mrl = "rtmp://" + addr;
525             emit methodChanged("rtmp-caching");
526             break;
527
528         }
529     }
530
531     // Encode the boring stuffs
532
533     if( ui.timeShift->isEnabled() && ui.timeShift->isChecked() ) {
534         mrl += " :access-filter=timeshift";
535     }
536     emit mrlUpdated( mrl );
537 }
538
539 /**************************************************************************
540  * Open Capture device ( DVB, PVR, V4L, and similar )                     *
541  **************************************************************************/
542 CaptureOpenPanel::CaptureOpenPanel( QWidget *_parent, intf_thread_t *_p_intf ) :
543                                 OpenPanel( _parent, _p_intf )
544 {
545     ui.setupUi( this );
546
547     BUTTONACT( ui.advancedButton, advancedDialog() );
548
549     /* Create two stacked layouts in the main comboBoxes */
550     QStackedLayout *stackedDevLayout = new QStackedLayout;
551     ui.cardBox->setLayout( stackedDevLayout );
552
553     QStackedLayout *stackedPropLayout = new QStackedLayout;
554     ui.optionsBox->setLayout( stackedPropLayout );
555
556     /* Creation and connections of the WIdgets in the stacked layout */
557 #define addModuleAndLayouts( number, name, label )                    \
558     QWidget * name ## DevPage = new QWidget( this );                  \
559     QWidget * name ## PropPage = new QWidget( this );                 \
560     stackedDevLayout->addWidget( name ## DevPage );        \
561     stackedPropLayout->addWidget( name ## PropPage );      \
562     QGridLayout * name ## DevLayout = new QGridLayout;                \
563     QGridLayout * name ## PropLayout = new QGridLayout;               \
564     name ## DevPage->setLayout( name ## DevLayout );                  \
565     name ## PropPage->setLayout( name ## PropLayout );                \
566     ui.deviceCombo->addItem( qtr( label ), QVariant( number ) );
567
568 #define CuMRL( widget, slot ) CONNECT( widget , slot , this, updateMRL() );
569
570 #ifdef WIN32
571     /*********************
572      * DirectShow Stuffs *
573      *********************/
574     if( module_Exists( p_intf, "dshow" ) ){
575     addModuleAndLayouts( DSHOW_DEVICE, dshow, "DirectShow" );
576
577     /* dshow Main */
578     int line = 0;
579     module_config_t *p_config =
580         config_FindConfig( VLC_OBJECT(p_intf), "dshow-vdev" );
581     vdevDshowW = new StringListConfigControl(
582         VLC_OBJECT(p_intf), p_config, this, false, dshowDevLayout, line );
583     line++;
584
585     p_config = config_FindConfig( VLC_OBJECT(p_intf), "dshow-adev" );
586     adevDshowW = new StringListConfigControl(
587         VLC_OBJECT(p_intf), p_config, this, false, dshowDevLayout, line );
588     line++;
589
590     /* dshow Properties */
591     QLabel *dshowVSizeLabel = new QLabel( qtr( "Video size" ) );
592     dshowPropLayout->addWidget( dshowVSizeLabel, 0, 0 );
593
594     dshowVSizeLine = new QLineEdit;
595     dshowPropLayout->addWidget( dshowVSizeLine, 0, 1);
596     dshowPropLayout->addItem( new QSpacerItem( 20, 20, QSizePolicy::Expanding ),
597             1, 0, 3, 1 );
598
599     /* dshow CONNECTs */
600     CuMRL( vdevDshowW->combo, currentIndexChanged ( int ) );
601     CuMRL( adevDshowW->combo, currentIndexChanged ( int ) );
602     CuMRL( dshowVSizeLine, textChanged( QString ) );
603     }
604
605     /**************
606      * BDA Stuffs *
607      **************/
608     if( module_Exists( p_intf, "bda" ) ){
609     addModuleAndLayouts( BDA_DEVICE, bda, "DVB DirectShow" );
610
611     /* bda Main */
612     QLabel *bdaTypeLabel = new QLabel( qtr( "DVB Type:" ) );
613
614     bdas = new QRadioButton( "DVB-S" );
615     bdas->setChecked( true );
616     bdac = new QRadioButton( "DVB-C" );
617     bdat = new QRadioButton( "DVB-T" );
618
619     bdaDevLayout->addWidget( bdaTypeLabel, 0, 0 );
620     bdaDevLayout->addWidget( bdas, 0, 1 );
621     bdaDevLayout->addWidget( bdac, 0, 2 );
622     bdaDevLayout->addWidget( bdat, 0, 3 );
623
624     /* bda Props */
625     QLabel *bdaFreqLabel =
626                     new QLabel( qtr( "Transponder/multiplex frequency" ) );
627     bdaPropLayout->addWidget( bdaFreqLabel, 0, 0 );
628
629     bdaFreq = new QSpinBox;
630     bdaFreq->setAlignment( Qt::AlignRight );
631     bdaFreq->setSuffix(" kHz");
632     bdaFreq->setSingleStep( 1000 );
633     setSpinBoxFreq( bdaFreq )
634     bdaPropLayout->addWidget( bdaFreq, 0, 1 );
635
636     bdaSrateLabel = new QLabel( qtr( "Transponder symbol rate" ) );
637     bdaPropLayout->addWidget( bdaSrateLabel, 1, 0 );
638
639     bdaSrate = new QSpinBox;
640     bdaSrate->setAlignment( Qt::AlignRight );
641     bdaSrate->setSuffix(" kHz");
642     setSpinBoxFreq( bdaSrate );
643     bdaPropLayout->addWidget( bdaSrate, 1, 1 );
644
645     bdaBandLabel = new QLabel( qtr( "Bandwidth" ) );
646     bdaPropLayout->addWidget( bdaBandLabel, 2, 0 );
647
648     bdaBandBox = new QComboBox;
649     setfillVLCConfigCombo( "dvb-bandwidth", p_intf, bdaBandBox );
650     bdaPropLayout->addWidget( bdaBandBox, 2, 1 );
651
652     bdaBandLabel->hide();
653     bdaBandBox->hide();
654     bdaPropLayout->addItem( new QSpacerItem( 20, 20, QSizePolicy::Expanding ),
655             2, 0, 2, 1 );
656
657     /* bda CONNECTs */
658     CuMRL( bdaFreq, valueChanged ( int ) );
659     CuMRL( bdaSrate, valueChanged ( int ) );
660     CuMRL( bdaBandBox,  currentIndexChanged ( int ) );
661     BUTTONACT( bdas, updateButtons() );
662     BUTTONACT( bdat, updateButtons() );
663     BUTTONACT( bdac, updateButtons() );
664     BUTTONACT( bdas, updateMRL() );
665     BUTTONACT( bdat, updateMRL() );
666     BUTTONACT( bdac, updateMRL() );
667     }
668
669 #else /* WIN32 */
670     /*******
671      * V4L2*
672      *******/
673     if( module_Exists( p_intf, "v4l2" ) ){
674     addModuleAndLayouts( V4L2_DEVICE, v4l2, "Video for Linux 2" );
675
676     /* V4l Main panel */
677     QLabel *v4l2VideoDeviceLabel = new QLabel( qtr( "Video device name" ) );
678     v4l2DevLayout->addWidget( v4l2VideoDeviceLabel, 0, 0 );
679
680     v4l2VideoDevice = new QLineEdit;
681     v4l2DevLayout->addWidget( v4l2VideoDevice, 0, 1 );
682
683     QLabel *v4l2AudioDeviceLabel = new QLabel( qtr( "Audio device name" ) );
684     v4l2DevLayout->addWidget( v4l2AudioDeviceLabel, 1, 0 );
685
686     v4l2AudioDevice = new QLineEdit;
687     v4l2DevLayout->addWidget( v4l2AudioDevice, 1, 1 );
688
689     /* v4l2 Props panel */
690     QLabel *v4l2StdLabel = new QLabel( qtr( "Standard" ) );
691     v4l2PropLayout->addWidget( v4l2StdLabel, 0 , 0 );
692
693     v4l2StdBox = new QComboBox;
694     setfillVLCConfigCombo( "v4l2-standard", p_intf, v4l2StdBox );
695     v4l2PropLayout->addWidget( v4l2StdBox, 0 , 1 );
696     v4l2PropLayout->addItem( new QSpacerItem( 20, 20, QSizePolicy::Expanding ),
697             1, 0, 3, 1 );
698
699     /* v4l2 CONNECTs */
700     CuMRL( v4l2VideoDevice, textChanged( QString ) );
701     CuMRL( v4l2AudioDevice, textChanged( QString ) );
702     CuMRL( v4l2StdBox,  currentIndexChanged ( int ) );
703     }
704
705     /*******
706      * V4L *
707      *******/
708     if( module_Exists( p_intf, "v4l" ) ){
709     addModuleAndLayouts( V4L_DEVICE, v4l, "Video for Linux" );
710
711     /* V4l Main panel */
712     QLabel *v4lVideoDeviceLabel = new QLabel( qtr( "Video device name" ) );
713     v4lDevLayout->addWidget( v4lVideoDeviceLabel, 0, 0 );
714
715     v4lVideoDevice = new QLineEdit;
716     v4lDevLayout->addWidget( v4lVideoDevice, 0, 1 );
717
718     QLabel *v4lAudioDeviceLabel = new QLabel( qtr( "Audio device name" ) );
719     v4lDevLayout->addWidget( v4lAudioDeviceLabel, 1, 0 );
720
721     v4lAudioDevice = new QLineEdit;
722     v4lDevLayout->addWidget( v4lAudioDevice, 1, 1 );
723
724     /* V4l Props panel */
725     QLabel *v4lNormLabel = new QLabel( qtr( "Norm" ) );
726     v4lPropLayout->addWidget( v4lNormLabel, 0 , 0 );
727
728     v4lNormBox = new QComboBox;
729     setfillVLCConfigCombo( "v4l-norm", p_intf, v4lNormBox );
730     v4lPropLayout->addWidget( v4lNormBox, 0 , 1 );
731
732     QLabel *v4lFreqLabel = new QLabel( qtr( "Frequency" ) );
733     v4lPropLayout->addWidget( v4lFreqLabel, 1 , 0 );
734
735     v4lFreq = new QSpinBox;
736     v4lFreq->setAlignment( Qt::AlignRight );
737     v4lFreq->setSuffix(" kHz");
738     setSpinBoxFreq( v4lFreq );
739     v4lPropLayout->addWidget( v4lFreq, 1 , 1 );
740     v4lPropLayout->addItem( new QSpacerItem( 20, 20, QSizePolicy::Expanding ),
741             2, 0, 2, 1 );
742
743     /* v4l CONNECTs */
744     CuMRL( v4lVideoDevice, textChanged( QString ) );
745     CuMRL( v4lAudioDevice, textChanged( QString ) );
746     CuMRL( v4lFreq, valueChanged ( int ) );
747     CuMRL( v4lNormBox,  currentIndexChanged ( int ) );
748     }
749
750     /*******
751      * JACK *
752      *******/
753     if( module_Exists( p_intf, "jack" ) ){
754     addModuleAndLayouts( JACK_DEVICE, jack, "JACK Audio Connection Kit" );
755
756     /* Jack Main panel */
757     /* Channels */
758     QLabel *jackChannelsLabel = new QLabel( qtr( "Channels:" ) );
759     jackDevLayout->addWidget( jackChannelsLabel, 1, 0 );
760
761     jackChannels = new QSpinBox;
762     setSpinBoxFreq( jackChannels );
763     jackChannels->setMaximum(255);
764     jackChannels->setValue(2);
765     jackChannels->setAlignment( Qt::AlignRight );
766     jackDevLayout->addWidget( jackChannels, 1, 1 );
767
768     /* Jack Props panel */
769
770     /* Selected ports */
771     QLabel *jackPortsLabel = new QLabel( qtr( "Selected ports:" ) );
772     jackPropLayout->addWidget( jackPortsLabel, 0 , 0 );
773
774     jackPortsSelected = new QLineEdit( qtr( ".*") );
775     jackPortsSelected->setAlignment( Qt::AlignRight );
776     jackPropLayout->addWidget( jackPortsSelected, 0, 1 );
777
778     /* Caching */
779     QLabel *jackCachingLabel = new QLabel( qtr( "Input caching:" ) );
780     jackPropLayout->addWidget( jackCachingLabel, 1 , 0 );
781     jackCaching = new QSpinBox;
782     setSpinBoxFreq( jackCaching );
783     jackCaching->setSuffix( " ms" );
784     jackCaching->setValue(1000);
785     jackCaching->setAlignment( Qt::AlignRight );
786     jackPropLayout->addWidget( jackCaching, 1 , 1 );
787
788     /* Pace */
789     jackPace = new QCheckBox(qtr( "Use VLC pace" ));
790     jackPropLayout->addWidget( jackPace, 2, 1 );
791
792     /* Auto Connect */
793     jackConnect = new QCheckBox( qtr( "Auto connnection" ));
794     jackPropLayout->addWidget( jackConnect, 3, 1 );
795
796     /* Jack CONNECTs */
797     CuMRL( jackChannels, valueChanged( int ) );
798     CuMRL( jackCaching, valueChanged( int ) );
799     CuMRL( jackPace, stateChanged( int ) );
800     CuMRL( jackConnect, stateChanged( int ) );
801     CuMRL( jackPortsSelected, textChanged( QString ) );
802     }
803
804     /************
805      * PVR      *
806      ************/
807     if( module_Exists( p_intf, "pvr" ) ){
808     addModuleAndLayouts( PVR_DEVICE, pvr, "PVR" );
809
810     /* PVR Main panel */
811     QLabel *pvrDeviceLabel = new QLabel( qtr( "Device name" ) );
812     pvrDevLayout->addWidget( pvrDeviceLabel, 0, 0 );
813
814     pvrDevice = new QLineEdit;
815     pvrDevLayout->addWidget( pvrDevice, 0, 1 );
816
817     QLabel *pvrRadioDeviceLabel = new QLabel( qtr( "Radio device name" ) );
818     pvrDevLayout->addWidget( pvrRadioDeviceLabel, 1, 0 );
819
820     pvrRadioDevice = new QLineEdit;
821     pvrDevLayout->addWidget( pvrRadioDevice, 1, 1 );
822
823     /* PVR props panel */
824     QLabel *pvrNormLabel = new QLabel( qtr( "Norm" ) );
825     pvrPropLayout->addWidget( pvrNormLabel, 0, 0 );
826
827     pvrNormBox = new QComboBox;
828     setfillVLCConfigCombo( "pvr-norm", p_intf, pvrNormBox );
829     pvrPropLayout->addWidget( pvrNormBox, 0, 1 );
830
831     QLabel *pvrFreqLabel = new QLabel( qtr( "Frequency" ) );
832     pvrPropLayout->addWidget( pvrFreqLabel, 1, 0 );
833
834     pvrFreq = new QSpinBox;
835     pvrFreq->setAlignment( Qt::AlignRight );
836     pvrFreq->setSuffix(" kHz");
837     setSpinBoxFreq( pvrFreq );
838     pvrPropLayout->addWidget( pvrFreq, 1, 1 );
839
840     QLabel *pvrBitrLabel = new QLabel( qtr( "Bitrate" ) );
841     pvrPropLayout->addWidget( pvrBitrLabel, 2, 0 );
842
843     pvrBitr = new QSpinBox;
844     pvrBitr->setAlignment( Qt::AlignRight );
845     pvrBitr->setSuffix(" kHz");
846     setSpinBoxFreq( pvrBitr );
847     pvrPropLayout->addWidget( pvrBitr, 2, 1 );
848     pvrPropLayout->addItem( new QSpacerItem( 20, 20, QSizePolicy::Expanding ),
849             3, 0, 1, 1 );
850
851     /* PVR CONNECTs */
852     CuMRL( pvrDevice, textChanged( QString ) );
853     CuMRL( pvrRadioDevice, textChanged( QString ) );
854
855     CuMRL( pvrFreq, valueChanged ( int ) );
856     CuMRL( pvrBitr, valueChanged ( int ) );
857     CuMRL( pvrNormBox, currentIndexChanged ( int ) );
858     }
859
860     /**************
861      * DVB Stuffs *
862      **************/
863     if( module_Exists( p_intf, "dvb" ) ){
864     addModuleAndLayouts( DVB_DEVICE, dvb, "DVB" );
865
866     /* DVB Main */
867     QLabel *dvbDeviceLabel = new QLabel( qtr( "Adapter card to tune" ) );
868     QLabel *dvbTypeLabel = new QLabel( qtr( "DVB Type:" ) );
869
870     dvbCard = new QSpinBox;
871     dvbCard->setAlignment( Qt::AlignRight );
872     dvbCard->setPrefix( "/dev/dvb/adapter" );
873
874     dvbDevLayout->addWidget( dvbDeviceLabel, 0, 0 );
875     dvbDevLayout->addWidget( dvbCard, 0, 2, 1, 2 );
876
877     dvbs = new QRadioButton( "DVB-S" );
878     dvbs->setChecked( true );
879     dvbc = new QRadioButton( "DVB-C" );
880     dvbt = new QRadioButton( "DVB-T" );
881
882     dvbDevLayout->addWidget( dvbTypeLabel, 1, 0 );
883     dvbDevLayout->addWidget( dvbs, 1, 1 );
884     dvbDevLayout->addWidget( dvbc, 1, 2 );
885     dvbDevLayout->addWidget( dvbt, 1, 3 );
886
887     /* DVB Props panel */
888     QLabel *dvbFreqLabel =
889                     new QLabel( qtr( "Transponder/multiplex frequency" ) );
890     dvbPropLayout->addWidget( dvbFreqLabel, 0, 0 );
891
892     dvbFreq = new QSpinBox;
893     dvbFreq->setAlignment( Qt::AlignRight );
894     dvbFreq->setSuffix(" kHz");
895     setSpinBoxFreq( dvbFreq  );
896     dvbPropLayout->addWidget( dvbFreq, 0, 1 );
897
898     QLabel *dvbSrateLabel = new QLabel( qtr( "Transponder symbol rate" ) );
899     dvbPropLayout->addWidget( dvbSrateLabel, 1, 0 );
900
901     dvbSrate = new QSpinBox;
902     dvbSrate->setAlignment( Qt::AlignRight );
903     dvbSrate->setSuffix(" kHz");
904     setSpinBoxFreq( dvbSrate );
905     dvbPropLayout->addWidget( dvbSrate, 1, 1 );
906     dvbPropLayout->addItem( new QSpacerItem( 20, 20, QSizePolicy::Expanding ),
907             2, 0, 2, 1 );
908
909     /* DVB CONNECTs */
910     CuMRL( dvbCard, valueChanged ( int ) );
911     CuMRL( dvbFreq, valueChanged ( int ) );
912     CuMRL( dvbSrate, valueChanged ( int ) );
913
914     BUTTONACT( dvbs, updateButtons() );
915     BUTTONACT( dvbt, updateButtons() );
916     BUTTONACT( dvbc, updateButtons() );
917     }
918
919 #endif
920
921
922     /**********
923      * Screen *
924      **********/
925     addModuleAndLayouts( SCREEN_DEVICE, screen, "Desktop" );
926     QLabel *screenLabel = new QLabel( "This option will open your own "
927             "desktop in order to save or stream it.");
928     screenLabel->setWordWrap( true );
929     screenDevLayout->addWidget( screenLabel, 0, 0 );
930
931     /* General connects */
932     CONNECT( ui.deviceCombo, activated( int ) ,
933              stackedDevLayout, setCurrentIndex( int ) );
934     CONNECT( ui.deviceCombo, activated( int ),
935              stackedPropLayout, setCurrentIndex( int ) );
936     CONNECT( ui.deviceCombo, activated( int ), this, updateMRL() );
937     CONNECT( ui.deviceCombo, activated( int ), this, updateButtons() );
938
939 #undef addModule
940 }
941
942 CaptureOpenPanel::~CaptureOpenPanel()
943 {
944 }
945
946 void CaptureOpenPanel::clear()
947 {
948     advMRL.clear();
949 }
950
951 void CaptureOpenPanel::updateMRL()
952 {
953     QString mrl = "";
954     int i_devicetype = ui.deviceCombo->itemData(
955             ui.deviceCombo->currentIndex() ).toInt();
956     switch( i_devicetype )
957     {
958 #ifdef WIN32
959     case BDA_DEVICE:
960         if( bdas->isChecked() ) mrl = "dvb-s://";
961         else if(  bdat->isChecked() ) mrl = "dvb-t://";
962         else if(  bdac->isChecked() ) mrl = "dvb-c://";
963         else return;
964         mrl += " :dvb-frequency=" + QString("%1").arg( bdaFreq->value() );
965         if( bdas->isChecked() || bdac->isChecked() )
966             mrl += " :dvb-srate=" + QString("%1").arg( bdaSrate->value() );
967         else
968             mrl += " :dvb-bandwidth=" +
969                 QString("%1").arg( bdaBandBox->itemData(
970                     bdaBandBox->currentIndex() ).toInt() );
971         break;
972     case DSHOW_DEVICE:
973         mrl = "dshow://";
974         mrl+= " :dshow-vdev=" + QString("\"%1\"").arg( vdevDshowW->getValue() );
975         mrl+= " :dshow-adev=" + QString("\"%1\"").arg( adevDshowW->getValue() );
976         if( dshowVSizeLine->isModified() )
977             mrl += " :dshow-size=" + dshowVSizeLine->text();
978         break;
979 #else
980     case V4L_DEVICE:
981         mrl = "v4l://";
982         mrl += " :v4l-vdev=" + v4lVideoDevice->text();
983         mrl += " :v4l-adev=" + v4lAudioDevice->text();
984         mrl += " :v4l-norm=" + QString("%1").arg( v4lNormBox->currentIndex() );
985         mrl += " :v4l-frequency=" + QString("%1").arg( v4lFreq->value() );
986         break;
987     case V4L2_DEVICE:
988         mrl = "v4l2://";
989         mrl += " :v4l2-dev=" + v4l2VideoDevice->text();
990         mrl += " :v4l2-adev=" + v4l2AudioDevice->text();
991         mrl += " :v4l2-standard=" + QString("%1").arg( v4l2StdBox->currentIndex() );
992         break;
993     case JACK_DEVICE:
994         mrl = "jack://";
995         mrl += "channels=" + QString("%1").arg( jackChannels->value() );
996         mrl += ":ports=" + jackPortsSelected->text();
997         mrl += " --jack-input-caching=" + QString("%1").arg( jackCaching->value() );
998         if ( jackPace->isChecked() )
999         {
1000                 mrl += " --jack-input-use-vlc-pace";
1001         }
1002         if ( jackConnect->isChecked() )
1003         {
1004                 mrl += " --jack-input-auto-connect";
1005         }
1006         break;
1007     case PVR_DEVICE:
1008         mrl = "pvr://";
1009         mrl += " :pvr-device=" + pvrDevice->text();
1010         mrl += " :pvr-radio-device=" + pvrRadioDevice->text();
1011         mrl += " :pvr-norm=" + QString("%1").arg( pvrNormBox->currentIndex() );
1012         if( pvrFreq->value() )
1013             mrl += " :pvr-frequency=" + QString("%1").arg( pvrFreq->value() );
1014         if( pvrBitr->value() )
1015             mrl += " :pvr-bitrate=" + QString("%1").arg( pvrBitr->value() );
1016         break;
1017     case DVB_DEVICE:
1018         mrl = "dvb://";
1019         mrl += " :dvb-adapter=" + QString("%1").arg( dvbCard->value() );
1020         mrl += " :dvb-frequency=" + QString("%1").arg( dvbFreq->value() );
1021         mrl += " :dvb-srate=" + QString("%1").arg( dvbSrate->value() );
1022         break;
1023 #endif
1024     case SCREEN_DEVICE:
1025         mrl = "screen://";
1026         updateButtons();
1027         break;
1028     }
1029
1030     if( !advMRL.isEmpty() ) mrl += advMRL;
1031
1032     emit mrlUpdated( mrl );
1033 }
1034
1035 /**
1036  * Update the Buttons (show/hide) for the GUI as all device type don't
1037  * use the same ui. elements.
1038  **/
1039 void CaptureOpenPanel::updateButtons()
1040 {
1041     /*  Be sure to display the ui Elements in case they were hidden by
1042      *  some Device Type (like Screen://) */
1043     ui.optionsBox->show();
1044     ui.advancedButton->show();
1045     /* Get the current Device Number */
1046     int i_devicetype = ui.deviceCombo->itemData(
1047                                 ui.deviceCombo->currentIndex() ).toInt();
1048     switch( i_devicetype )
1049     {
1050 #ifdef WIN32
1051     case BDA_DEVICE:
1052         if( bdas->isChecked() || bdac->isChecked() )
1053         {
1054             bdaSrate->show();
1055             bdaSrateLabel->show();
1056             bdaBandBox->hide();
1057             bdaBandLabel->hide();
1058         }
1059         else
1060         {
1061             bdaSrate->hide();
1062             bdaSrateLabel->hide();
1063             bdaBandBox->show();
1064             bdaBandLabel->show();
1065         }
1066         break;
1067 #else
1068     case DVB_DEVICE:
1069         if( dvbs->isChecked() ) dvbFreq->setSuffix(" kHz");
1070         if( dvbc->isChecked() || dvbt->isChecked() ) dvbFreq->setSuffix(" Hz");
1071         break;
1072 #endif
1073     case SCREEN_DEVICE:
1074         ui.optionsBox->hide();
1075         ui.advancedButton->hide();
1076         break;
1077     }
1078
1079     advMRL.clear();
1080 }
1081
1082 void CaptureOpenPanel::advancedDialog()
1083 {
1084     /* Get selected device type */
1085     int i_devicetype = ui.deviceCombo->itemData(
1086                                 ui.deviceCombo->currentIndex() ).toInt();
1087
1088     /* Get the corresponding module */
1089     module_t *p_module =
1090         module_Find( VLC_OBJECT(p_intf), psz_devModule[i_devicetype] );
1091     if( NULL == p_module ) return;
1092
1093     /* Init */
1094     QList<ConfigControl *> controls;
1095
1096     /* Get the confsize  */
1097     unsigned int i_confsize;
1098     module_config_t *p_config;
1099     p_config = module_GetConfig( p_module, &i_confsize );
1100
1101     /* New Adv Prop dialog */
1102     adv = new QDialog( this );
1103     adv->setWindowTitle( qtr( "Advanced options..." ) );
1104
1105     /* A main Layout with a Frame */
1106     QVBoxLayout *mainLayout = new QVBoxLayout( adv );
1107     QFrame *advFrame = new QFrame;
1108     QScrollArea *scroll = new QScrollArea;
1109     mainLayout->addWidget( scroll );
1110
1111     /* GridLayout inside the Frame */
1112     QGridLayout *gLayout = new QGridLayout( advFrame );
1113     gLayout->setSizeConstraint( QLayout::SetFixedSize );
1114
1115     scroll->setHorizontalScrollBarPolicy( Qt::ScrollBarAlwaysOff );
1116     scroll->setWidgetResizable( true );
1117     scroll->setWidget( advFrame );
1118
1119     /* Create the options inside the FrameLayout */
1120     for( int n = 0; n < i_confsize; n++ )
1121     {
1122         module_config_t *p_item = p_config + n;
1123         ConfigControl *config = ConfigControl::createControl(
1124                         VLC_OBJECT( p_intf ), p_item, advFrame, gLayout, n );
1125         controls.append( config );
1126     }
1127
1128     /* Button stuffs */
1129     QDialogButtonBox *advButtonBox = new QDialogButtonBox( adv );
1130     QPushButton *closeButton = new QPushButton( qtr( "Ok" ) );
1131     QPushButton *cancelButton = new QPushButton( qtr( "Cancel" ) );
1132
1133     CONNECT( closeButton, clicked(), adv, accept() );
1134     CONNECT( cancelButton, clicked(), adv, reject() );
1135
1136     advButtonBox->addButton( closeButton, QDialogButtonBox::AcceptRole );
1137     advButtonBox->addButton( cancelButton, QDialogButtonBox::RejectRole );
1138
1139     mainLayout->addWidget( advButtonBox );
1140
1141     /* Creation of the MRL */
1142     if( adv->exec() )
1143     {
1144         QString tempMRL = "";
1145         for( int i = 0; i < controls.size(); i++ )
1146         {
1147             ConfigControl *control = controls[i];
1148             if( !control )
1149             {
1150                 msg_Dbg( p_intf, "This shouldn't happen, please report" );
1151                 continue;
1152             }
1153
1154             tempMRL += (i ? " :" : ":");
1155
1156             if( control->getType() == CONFIG_ITEM_BOOL )
1157                 if( !(qobject_cast<VIntConfigControl *>(control)->getValue() ) )
1158                     tempMRL += "no-";
1159
1160             tempMRL += control->getName();
1161
1162             switch( control->getType() )
1163             {
1164                 case CONFIG_ITEM_STRING:
1165                 case CONFIG_ITEM_FILE:
1166                 case CONFIG_ITEM_DIRECTORY:
1167                 case CONFIG_ITEM_MODULE:
1168                     tempMRL += QString("=\"%1\"").arg( qobject_cast<VStringConfigControl *>(control)->getValue() );
1169                     break;
1170                 case CONFIG_ITEM_INTEGER:
1171                     tempMRL += QString("=%1").arg( qobject_cast<VIntConfigControl *>(control)->getValue() );
1172                     break;
1173                 case CONFIG_ITEM_FLOAT:
1174                     tempMRL += QString("=%1").arg( qobject_cast<VFloatConfigControl *>(control)->getValue() );
1175                     break;
1176             }
1177         }
1178         advMRL = tempMRL;
1179         updateMRL();
1180         msg_Dbg( p_intf, "%s", qtu( advMRL ) );
1181     }
1182     delete adv;
1183 }
1184