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