]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/open_panels.cpp
Qt: remove port from open network tab
[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.addressText, textChanged( const QString& ), this, updateMRL());
498
499     ui.protocolCombo->addItem( "" );
500     ui.protocolCombo->addItem("HTTP", QVariant("http"));
501     ui.protocolCombo->addItem("HTTPS", QVariant("https"));
502     ui.protocolCombo->addItem("MMS", QVariant("mms"));
503     ui.protocolCombo->addItem("FTP", QVariant("ftp"));
504     ui.protocolCombo->addItem("RTSP", QVariant("rtsp"));
505     ui.protocolCombo->addItem("RTP", QVariant("rtp"));
506     ui.protocolCombo->addItem("UDP", QVariant("udp"));
507     ui.protocolCombo->addItem("RTMP", QVariant("rtmp"));
508
509     updateProtocol( ui.protocolCombo->currentIndex() );
510
511     if( config_GetInt( p_intf, "qt-recentplay" ) )
512     {
513         mrlList = new QStringListModel(
514                 getSettings()->value( "Open/netMRL" ).toStringList() );
515         QCompleter *completer = new QCompleter( mrlList, this );
516         ui.addressText->setCompleter( completer );
517
518         CONNECT( ui.addressText, editingFinished(), this, updateCompleter() );
519     }
520     else
521         mrlList = NULL;
522 }
523
524 NetOpenPanel::~NetOpenPanel()
525 {
526     if( !mrlList ) return;
527
528     QStringList tempL = mrlList->stringList();
529     while( tempL.size() > 8 ) tempL.removeFirst();
530
531     getSettings()->setValue( "Open/netMRL", tempL );
532
533     delete mrlList;
534 }
535
536 void NetOpenPanel::clear()
537 {}
538
539 /* update the widgets according the type of protocol */
540 void NetOpenPanel::updateProtocol( int idx_proto ) {
541     QString addr = ui.addressText->text();
542     QString proto = ui.protocolCombo->itemData( idx_proto ).toString();
543
544     if( idx_proto == NO_PROTO ) return;
545
546     /* If we already have a protocol in the address, replace it */
547     if( addr.contains( "://"))
548     {
549         if( idx_proto != UDP_PROTO && idx_proto != RTP_PROTO )
550             addr.replace( QRegExp("^.*://@*"), proto + "://");
551         else if ( ( addr.contains(QRegExp("://((22[4-9])|(23\\d)|(\\[?[fF]{2}[0-9a-fA-F]{2}:))"))) ||
552                 ( !addr.contains(QRegExp("^\\d{1,3}[.]\\d{1,3}[.]\\d{1,3}[.]\\d{1,3}")) &&
553                 !addr.contains(QRegExp(":[a-fA-F0-9]{1,4}:")) ) )
554              addr.replace( QRegExp("^.*://"), proto + "://@");
555     else
556              addr.replace( QRegExp("^.*://"), proto + "://");
557         addr.replace( QRegExp("@+"), "@");
558         ui.addressText->setText( addr );
559     }
560     updateMRL();
561 }
562
563 void NetOpenPanel::updateMRL() {
564     QString mrl = "";
565     QString addr = ui.addressText->text();
566     int idx_proto = ui.protocolCombo->currentIndex();
567     if( addr.contains( "://"))
568     {
569         /* Match the correct item in the comboBox */
570         ui.protocolCombo->setCurrentIndex(
571                 ui.protocolCombo->findData( addr.section( ':', 0, 0 ) ) );
572         mrl = addr;
573     }
574     else
575     {
576         switch( idx_proto ) {
577         case HTTP_PROTO:
578             mrl = "http://" + addr;
579             emit methodChanged("http-caching");
580             break;
581         case HTTPS_PROTO:
582             mrl = "https://" + addr;
583             emit methodChanged("http-caching");
584             break;
585         case MMS_PROTO:
586             mrl = "mms://" + addr;
587             emit methodChanged("mms-caching");
588             break;
589         case FTP_PROTO:
590             mrl = "ftp://" + addr;
591             emit methodChanged("ftp-caching");
592             break;
593         case RTSP_PROTO:
594             mrl = "rtsp://" + addr;
595             emit methodChanged("rtsp-caching");
596             break;
597         case RTP_PROTO:
598         case UDP_PROTO:
599             mrl = qfu(((idx_proto == RTP_PROTO) ? "rtp" : "udp"));
600             mrl += qfu( "://" );
601             mrl += addr;
602             emit methodChanged(idx_proto == RTP_PROTO
603                                    ? "rtp-caching" : "udp-caching");
604             break;
605         case RTMP_PROTO:
606             mrl = "rtmp://" + addr;
607             emit methodChanged("rtmp-caching");
608             break;
609         }
610     }
611
612     QStringList qsl; qsl<< mrl;
613     emit mrlUpdated( qsl, "" );
614 }
615
616 void NetOpenPanel::updateCompleter()
617 {
618     assert( mrlList );
619     QStringList tempL = mrlList->stringList();
620     if( !tempL.contains( ui.addressText->text() ) )
621         tempL.append( ui.addressText->text() );
622     mrlList->setStringList( tempL );
623 }
624
625 /**************************************************************************
626  * Open Capture device ( DVB, PVR, V4L, and similar )                     *
627  **************************************************************************/
628 CaptureOpenPanel::CaptureOpenPanel( QWidget *_parent, intf_thread_t *_p_intf ) :
629                                 OpenPanel( _parent, _p_intf )
630 {
631     isInitialized = false;
632 }
633
634 void CaptureOpenPanel::initialize()
635 {
636     if( isInitialized ) return;
637
638     msg_Dbg( p_intf, "Initialization of Capture device panel" );
639     isInitialized = true;
640
641     ui.setupUi( this );
642
643     BUTTONACT( ui.advancedButton, advancedDialog() );
644
645     /* Create two stacked layouts in the main comboBoxes */
646     QStackedLayout *stackedDevLayout = new QStackedLayout;
647     ui.cardBox->setLayout( stackedDevLayout );
648
649     QStackedLayout *stackedPropLayout = new QStackedLayout;
650     ui.optionsBox->setLayout( stackedPropLayout );
651
652     /* Creation and connections of the WIdgets in the stacked layout */
653 #define addModuleAndLayouts( number, name, label, layout )            \
654     QWidget * name ## DevPage = new QWidget( this );                  \
655     QWidget * name ## PropPage = new QWidget( this );                 \
656     stackedDevLayout->addWidget( name ## DevPage );        \
657     stackedPropLayout->addWidget( name ## PropPage );      \
658     layout * name ## DevLayout = new layout;                \
659     layout * name ## PropLayout = new layout;               \
660     name ## DevPage->setLayout( name ## DevLayout );                  \
661     name ## PropPage->setLayout( name ## PropLayout );                \
662     ui.deviceCombo->addItem( qtr( label ), QVariant( number ) );
663
664 #define CuMRL( widget, slot ) CONNECT( widget , slot , this, updateMRL() );
665
666 #ifdef WIN32
667     /*********************
668      * DirectShow Stuffs *
669      *********************/
670     if( module_exists( "dshow" ) ){
671     addModuleAndLayouts( DSHOW_DEVICE, dshow, "DirectShow", QGridLayout );
672
673     /* dshow Main */
674     int line = 0;
675     module_config_t *p_config =
676         config_FindConfig( VLC_OBJECT(p_intf), "dshow-vdev" );
677     vdevDshowW = new StringListConfigControl(
678         VLC_OBJECT(p_intf), p_config, this, false, dshowDevLayout, line );
679     line++;
680
681     p_config = config_FindConfig( VLC_OBJECT(p_intf), "dshow-adev" );
682     adevDshowW = new StringListConfigControl(
683         VLC_OBJECT(p_intf), p_config, this, false, dshowDevLayout, line );
684     line++;
685
686     /* dshow Properties */
687     QLabel *dshowVSizeLabel = new QLabel( qtr( "Video size" ) );
688     dshowPropLayout->addWidget( dshowVSizeLabel, 0, 0 );
689
690     dshowVSizeLine = new QLineEdit;
691     dshowPropLayout->addWidget( dshowVSizeLine, 0, 1);
692     dshowPropLayout->addItem( new QSpacerItem( 20, 20, QSizePolicy::Expanding ),
693             1, 0, 3, 1 );
694
695     /* dshow CONNECTs */
696     CuMRL( vdevDshowW->combo, currentIndexChanged ( int ) );
697     CuMRL( adevDshowW->combo, currentIndexChanged ( int ) );
698     CuMRL( dshowVSizeLine, textChanged( const QString& ) );
699     }
700
701     /**************
702      * BDA Stuffs *
703      **************/
704     if( module_exists( "bda" ) ){
705     addModuleAndLayouts( BDA_DEVICE, bda, "DVB DirectShow", QGridLayout );
706
707     /* bda Main */
708     QLabel *bdaTypeLabel = new QLabel( qtr( "DVB Type:" ) );
709
710     bdas = new QRadioButton( "DVB-S" );
711     bdas->setChecked( true );
712     bdac = new QRadioButton( "DVB-C" );
713     bdat = new QRadioButton( "DVB-T" );
714     bdaa = new QRadioButton( "ATSC" );
715
716     bdaDevLayout->addWidget( bdaTypeLabel, 0, 0 );
717     bdaDevLayout->addWidget( bdas, 0, 1 );
718     bdaDevLayout->addWidget( bdac, 0, 2 );
719     bdaDevLayout->addWidget( bdat, 0, 3 );
720     bdaDevLayout->addWidget( bdaa, 0, 4 );
721
722     /* bda Props */
723     QLabel *bdaFreqLabel =
724                     new QLabel( qtr( "Transponder/multiplex frequency" ) );
725     bdaPropLayout->addWidget( bdaFreqLabel, 0, 0 );
726
727     bdaFreq = new QSpinBox;
728     bdaFreq->setAlignment( Qt::AlignRight );
729     bdaFreq->setSuffix(" kHz");
730     bdaFreq->setSingleStep( 1000 );
731     setSpinBoxFreq( bdaFreq )
732     bdaPropLayout->addWidget( bdaFreq, 0, 1 );
733
734     bdaSrateLabel = new QLabel( qtr( "Transponder symbol rate" ) );
735     bdaPropLayout->addWidget( bdaSrateLabel, 1, 0 );
736
737     bdaSrate = new QSpinBox;
738     bdaSrate->setAlignment( Qt::AlignRight );
739     bdaSrate->setSuffix(" kHz");
740     setSpinBoxFreq( bdaSrate );
741     bdaPropLayout->addWidget( bdaSrate, 1, 1 );
742
743     bdaBandLabel = new QLabel( qtr( "Bandwidth" ) );
744     bdaPropLayout->addWidget( bdaBandLabel, 2, 0 );
745
746     bdaBandBox = new QComboBox;
747     setfillVLCConfigCombo( "dvb-bandwidth", p_intf, bdaBandBox );
748     bdaPropLayout->addWidget( bdaBandBox, 2, 1 );
749
750     bdaBandLabel->hide();
751     bdaBandBox->hide();
752     bdaPropLayout->addItem( new QSpacerItem( 20, 20, QSizePolicy::Expanding ),
753             2, 0, 2, 1 );
754
755     /* bda CONNECTs */
756     CuMRL( bdaFreq, valueChanged ( int ) );
757     CuMRL( bdaSrate, valueChanged ( int ) );
758     CuMRL( bdaBandBox,  currentIndexChanged ( int ) );
759     BUTTONACT( bdas, updateButtons() );
760     BUTTONACT( bdat, updateButtons() );
761     BUTTONACT( bdac, updateButtons() );
762     BUTTONACT( bdaa, updateButtons() );
763     BUTTONACT( bdas, updateMRL() );
764     BUTTONACT( bdat, updateMRL() );
765     BUTTONACT( bdac, updateMRL() );
766     BUTTONACT( bdaa, updateMRL() );
767     }
768
769 #else /* WIN32 */
770     /*******
771      * V4L2*
772      *******/
773     if( module_exists( "v4l2" ) ){
774     addModuleAndLayouts( V4L2_DEVICE, v4l2, "Video for Linux 2", QGridLayout );
775
776     /* V4l Main panel */
777     QLabel *v4l2VideoDeviceLabel = new QLabel( qtr( "Video device name" ) );
778     v4l2DevLayout->addWidget( v4l2VideoDeviceLabel, 0, 0 );
779
780     v4l2VideoDevice = new QLineEdit;
781     v4l2DevLayout->addWidget( v4l2VideoDevice, 0, 1 );
782
783     QLabel *v4l2AudioDeviceLabel = new QLabel( qtr( "Audio device name" ) );
784     v4l2DevLayout->addWidget( v4l2AudioDeviceLabel, 1, 0 );
785
786     v4l2AudioDevice = new QLineEdit;
787     v4l2DevLayout->addWidget( v4l2AudioDevice, 1, 1 );
788
789     /* v4l2 Props panel */
790     QLabel *v4l2StdLabel = new QLabel( qtr( "Standard" ) );
791     v4l2PropLayout->addWidget( v4l2StdLabel, 0 , 0 );
792
793     v4l2StdBox = new QComboBox;
794     setfillVLCConfigCombo( "v4l2-standard", p_intf, v4l2StdBox );
795     v4l2PropLayout->addWidget( v4l2StdBox, 0 , 1 );
796     v4l2PropLayout->addItem( new QSpacerItem( 20, 20, QSizePolicy::Expanding ),
797             1, 0, 3, 1 );
798
799     /* v4l2 CONNECTs */
800     CuMRL( v4l2VideoDevice, textChanged( const QString& ) );
801     CuMRL( v4l2AudioDevice, textChanged( const QString& ) );
802     CuMRL( v4l2StdBox,  currentIndexChanged ( int ) );
803     }
804
805     /*******
806      * V4L *
807      *******/
808     if( module_exists( "v4l" ) ){
809     addModuleAndLayouts( V4L_DEVICE, v4l, "Video for Linux", QGridLayout );
810
811     /* V4l Main panel */
812     QLabel *v4lVideoDeviceLabel = new QLabel( qtr( "Video device name" ) );
813     v4lDevLayout->addWidget( v4lVideoDeviceLabel, 0, 0 );
814
815     v4lVideoDevice = new QLineEdit;
816     v4lDevLayout->addWidget( v4lVideoDevice, 0, 1 );
817
818     QLabel *v4lAudioDeviceLabel = new QLabel( qtr( "Audio device name" ) );
819     v4lDevLayout->addWidget( v4lAudioDeviceLabel, 1, 0 );
820
821     v4lAudioDevice = new QLineEdit;
822     v4lDevLayout->addWidget( v4lAudioDevice, 1, 1 );
823
824     /* V4l Props panel */
825     QLabel *v4lNormLabel = new QLabel( qtr( "Norm" ) );
826     v4lPropLayout->addWidget( v4lNormLabel, 0 , 0 );
827
828     v4lNormBox = new QComboBox;
829     setfillVLCConfigCombo( "v4l-norm", p_intf, v4lNormBox );
830     v4lPropLayout->addWidget( v4lNormBox, 0 , 1 );
831
832     QLabel *v4lFreqLabel = new QLabel( qtr( "Frequency" ) );
833     v4lPropLayout->addWidget( v4lFreqLabel, 1 , 0 );
834
835     v4lFreq = new QSpinBox;
836     v4lFreq->setAlignment( Qt::AlignRight );
837     v4lFreq->setSuffix(" kHz");
838     setSpinBoxFreq( v4lFreq );
839     v4lPropLayout->addWidget( v4lFreq, 1 , 1 );
840     v4lPropLayout->addItem( new QSpacerItem( 20, 20, QSizePolicy::Expanding ),
841             2, 0, 2, 1 );
842
843     /* v4l CONNECTs */
844     CuMRL( v4lVideoDevice, textChanged( const QString& ) );
845     CuMRL( v4lAudioDevice, textChanged( const QString& ) );
846     CuMRL( v4lFreq, valueChanged ( int ) );
847     CuMRL( v4lNormBox,  currentIndexChanged ( int ) );
848     }
849
850     /*******
851      * JACK *
852      *******/
853     if( module_exists( "jack" ) ){
854     addModuleAndLayouts( JACK_DEVICE, jack, "JACK Audio Connection Kit",
855                          QGridLayout);
856
857     /* Jack Main panel */
858     /* Channels */
859     QLabel *jackChannelsLabel = new QLabel( qtr( "Channels:" ) );
860     jackDevLayout->addWidget( jackChannelsLabel, 1, 0 );
861
862     jackChannels = new QSpinBox;
863     setSpinBoxFreq( jackChannels );
864     jackChannels->setMaximum(255);
865     jackChannels->setValue(2);
866     jackChannels->setAlignment( Qt::AlignRight );
867     jackDevLayout->addWidget( jackChannels, 1, 1 );
868
869     /* Selected ports */
870     QLabel *jackPortsLabel = new QLabel( qtr( "Selected ports:" ) );
871     jackDevLayout->addWidget( jackPortsLabel, 0 , 0 );
872
873     jackPortsSelected = new QLineEdit( qtr( ".*") );
874     jackPortsSelected->setAlignment( Qt::AlignRight );
875     jackDevLayout->addWidget( jackPortsSelected, 0, 1 );
876
877     /* Jack Props panel */
878
879     /* Caching */
880     QLabel *jackCachingLabel = new QLabel( qtr( "Input caching:" ) );
881     jackPropLayout->addWidget( jackCachingLabel, 1 , 0 );
882     jackCaching = new QSpinBox;
883     setSpinBoxFreq( jackCaching );
884     jackCaching->setSuffix( " ms" );
885     jackCaching->setValue(1000);
886     jackCaching->setAlignment( Qt::AlignRight );
887     jackPropLayout->addWidget( jackCaching, 1 , 2 );
888
889     /* Pace */
890     jackPace = new QCheckBox(qtr( "Use VLC pace" ));
891     jackPropLayout->addWidget( jackPace, 2, 1 );
892
893     /* Auto Connect */
894     jackConnect = new QCheckBox( qtr( "Auto connnection" ));
895     jackPropLayout->addWidget( jackConnect, 2, 2 );
896
897     /* Jack CONNECTs */
898     CuMRL( jackChannels, valueChanged( int ) );
899     CuMRL( jackCaching, valueChanged( int ) );
900     CuMRL( jackPace, stateChanged( int ) );
901     CuMRL( jackConnect, stateChanged( int ) );
902     CuMRL( jackPortsSelected, textChanged( const QString& ) );
903     }
904
905     /************
906      * PVR      *
907      ************/
908     if( module_exists( "pvr" ) ){
909     addModuleAndLayouts( PVR_DEVICE, pvr, "PVR", QGridLayout );
910
911     /* PVR Main panel */
912     QLabel *pvrDeviceLabel = new QLabel( qtr( "Device name" ) );
913     pvrDevLayout->addWidget( pvrDeviceLabel, 0, 0 );
914
915     pvrDevice = new QLineEdit;
916     pvrDevLayout->addWidget( pvrDevice, 0, 1 );
917
918     QLabel *pvrRadioDeviceLabel = new QLabel( qtr( "Radio device name" ) );
919     pvrDevLayout->addWidget( pvrRadioDeviceLabel, 1, 0 );
920
921     pvrRadioDevice = new QLineEdit;
922     pvrDevLayout->addWidget( pvrRadioDevice, 1, 1 );
923
924     /* PVR props panel */
925     QLabel *pvrNormLabel = new QLabel( qtr( "Norm" ) );
926     pvrPropLayout->addWidget( pvrNormLabel, 0, 0 );
927
928     pvrNormBox = new QComboBox;
929     setfillVLCConfigCombo( "pvr-norm", p_intf, pvrNormBox );
930     pvrPropLayout->addWidget( pvrNormBox, 0, 1 );
931
932     QLabel *pvrFreqLabel = new QLabel( qtr( "Frequency" ) );
933     pvrPropLayout->addWidget( pvrFreqLabel, 1, 0 );
934
935     pvrFreq = new QSpinBox;
936     pvrFreq->setAlignment( Qt::AlignRight );
937     pvrFreq->setSuffix(" kHz");
938     setSpinBoxFreq( pvrFreq );
939     pvrPropLayout->addWidget( pvrFreq, 1, 1 );
940
941     QLabel *pvrBitrLabel = new QLabel( qtr( "Bitrate" ) );
942     pvrPropLayout->addWidget( pvrBitrLabel, 2, 0 );
943
944     pvrBitr = new QSpinBox;
945     pvrBitr->setAlignment( Qt::AlignRight );
946     pvrBitr->setSuffix(" kHz");
947     setSpinBoxFreq( pvrBitr );
948     pvrPropLayout->addWidget( pvrBitr, 2, 1 );
949     pvrPropLayout->addItem( new QSpacerItem( 20, 20, QSizePolicy::Expanding ),
950             3, 0, 1, 1 );
951
952     /* PVR CONNECTs */
953     CuMRL( pvrDevice, textChanged( const QString& ) );
954     CuMRL( pvrRadioDevice, textChanged( const QString& ) );
955
956     CuMRL( pvrFreq, valueChanged ( int ) );
957     CuMRL( pvrBitr, valueChanged ( int ) );
958     CuMRL( pvrNormBox, currentIndexChanged ( int ) );
959     }
960
961     /**************
962      * DVB Stuffs *
963      **************/
964     if( module_exists( "dvb" ) ){
965     addModuleAndLayouts( DVB_DEVICE, dvb, "DVB", QGridLayout );
966
967     /* DVB Main */
968     QLabel *dvbDeviceLabel = new QLabel( qtr( "Adapter card to tune" ) );
969     QLabel *dvbTypeLabel = new QLabel( qtr( "DVB Type:" ) );
970
971     dvbCard = new QSpinBox;
972     dvbCard->setAlignment( Qt::AlignRight );
973     dvbCard->setPrefix( "/dev/dvb/adapter" );
974
975     dvbDevLayout->addWidget( dvbDeviceLabel, 0, 0 );
976     dvbDevLayout->addWidget( dvbCard, 0, 2, 1, 2 );
977
978     dvbs = new QRadioButton( "DVB-S" );
979     dvbs->setChecked( true );
980     dvbc = new QRadioButton( "DVB-C" );
981     dvbt = new QRadioButton( "DVB-T" );
982
983     dvbDevLayout->addWidget( dvbTypeLabel, 1, 0 );
984     dvbDevLayout->addWidget( dvbs, 1, 1 );
985     dvbDevLayout->addWidget( dvbc, 1, 2 );
986     dvbDevLayout->addWidget( dvbt, 1, 3 );
987
988     /* DVB Props panel */
989     QLabel *dvbFreqLabel =
990                     new QLabel( qtr( "Transponder/multiplex frequency" ) );
991     dvbPropLayout->addWidget( dvbFreqLabel, 0, 0 );
992
993     dvbFreq = new QSpinBox;
994     dvbFreq->setAlignment( Qt::AlignRight );
995     dvbFreq->setSuffix(" kHz");
996     dvbFreq->setSingleStep( 1000 );
997     setSpinBoxFreq( dvbFreq  );
998     dvbPropLayout->addWidget( dvbFreq, 0, 1 );
999
1000     dvbSrateLabel = new QLabel( qtr( "Transponder symbol rate" ) );
1001     dvbPropLayout->addWidget( dvbSrateLabel, 1, 0 );
1002
1003     dvbSrate = new QSpinBox;
1004     dvbSrate->setAlignment( Qt::AlignRight );
1005     dvbSrate->setSuffix(" kHz");
1006     setSpinBoxFreq( dvbSrate );
1007     dvbPropLayout->addWidget( dvbSrate, 1, 1 );
1008
1009     dvbBandLabel = new QLabel( qtr( "Bandwidth" ) );
1010     dvbPropLayout->addWidget( dvbBandLabel, 2, 0 );
1011
1012     dvbBandBox = new QComboBox;
1013     /* This doesn't work since dvb-bandwidth doesn't seem to be a
1014        list of Integers
1015        setfillVLCConfigCombo( "dvb-bandwidth", p_intf, bdaBandBox );
1016      */
1017     dvbBandBox->addItem( qtr( "Auto" ), 0 );
1018     dvbBandBox->addItem( qtr( "6 MHz" ), 6 );
1019     dvbBandBox->addItem( qtr( "7 MHz" ), 7 );
1020     dvbBandBox->addItem( qtr( "8 MHz" ), 8 );
1021     dvbPropLayout->addWidget( dvbBandBox, 2, 1 );
1022
1023     dvbBandLabel->hide();
1024     dvbBandBox->hide();
1025
1026     dvbPropLayout->addItem( new QSpacerItem( 20, 20, QSizePolicy::Expanding ),
1027             2, 0, 2, 1 );
1028
1029     /* DVB CONNECTs */
1030     CuMRL( dvbCard, valueChanged ( int ) );
1031     CuMRL( dvbFreq, valueChanged ( int ) );
1032     CuMRL( dvbSrate, valueChanged ( int ) );
1033     CuMRL( dvbBandBox, currentIndexChanged ( int ) );
1034
1035     BUTTONACT( dvbs, updateButtons() );
1036     BUTTONACT( dvbt, updateButtons() );
1037     BUTTONACT( dvbc, updateButtons() );
1038     BUTTONACT( dvbs, updateMRL() );
1039     BUTTONACT( dvbt, updateMRL() );
1040     BUTTONACT( dvbc, updateMRL() );
1041     }
1042
1043 #endif
1044
1045
1046     /**********
1047      * Screen *
1048      **********/
1049     addModuleAndLayouts( SCREEN_DEVICE, screen, "Desktop", QGridLayout );
1050     QLabel *screenLabel = new QLabel( qtr( "Your display will be "
1051             "opened and played in order to stream or save it." ) );
1052     screenLabel->setWordWrap( true );
1053     screenDevLayout->addWidget( screenLabel, 0, 0 );
1054
1055     QLabel *screenFPSLabel = new QLabel(
1056             qtr( "Desired frame rate for the capture." ) );
1057     screenPropLayout->addWidget( screenFPSLabel, 0, 0 );
1058
1059     screenFPS = new QSpinBox;
1060     screenFPS->setValue( 1 );
1061     screenFPS->setAlignment( Qt::AlignRight );
1062     screenPropLayout->addWidget( screenFPS, 0, 1 );
1063
1064     /* Screen connect */
1065     CuMRL( screenFPS, valueChanged( int ) );
1066
1067     /* General connects */
1068     CONNECT( ui.deviceCombo, activated( int ) ,
1069              stackedDevLayout, setCurrentIndex( int ) );
1070     CONNECT( ui.deviceCombo, activated( int ),
1071              stackedPropLayout, setCurrentIndex( int ) );
1072     CONNECT( ui.deviceCombo, activated( int ), this, updateMRL() );
1073     CONNECT( ui.deviceCombo, activated( int ), this, updateButtons() );
1074
1075 #undef CuMRL
1076 #undef addModuleAndLayouts
1077 }
1078
1079 CaptureOpenPanel::~CaptureOpenPanel()
1080 {
1081 }
1082
1083 void CaptureOpenPanel::clear()
1084 {
1085     advMRL.clear();
1086 }
1087
1088 void CaptureOpenPanel::updateMRL()
1089 {
1090     QString mrl = "";
1091     QStringList fileList;
1092     int i_devicetype = ui.deviceCombo->itemData(
1093             ui.deviceCombo->currentIndex() ).toInt();
1094     switch( i_devicetype )
1095     {
1096 #ifdef WIN32
1097     case BDA_DEVICE:
1098         if( bdas->isChecked() ) mrl = "dvb-s://";
1099         else if(  bdat->isChecked() ) mrl = "dvb-t://";
1100         else if(  bdac->isChecked() ) mrl = "dvb-c://";
1101         else if(  bdaa->isChecked() ) mrl = "atsc://";
1102         else return;
1103         mrl += "frequency=" + QString::number( bdaFreq->value() );
1104         if( bdac->isChecked() || bdat->isChecked() || bdaa->isChecked() )
1105             mrl +="000";
1106         fileList << mrl; mrl = "";
1107
1108         if( bdas->isChecked() || bdac->isChecked() )
1109             mrl += " :dvb-srate=" + QString::number( bdaSrate->value() );
1110         else if( bdat->isChecked() || bdaa->isChecked() )
1111             mrl += " :dvb-bandwidth=" +
1112                 QString::number( bdaBandBox->itemData(
1113                     bdaBandBox->currentIndex() ).toInt() );
1114         emit methodChanged( "dvb-caching" );
1115         break;
1116     case DSHOW_DEVICE:
1117         fileList << "dshow://";
1118         mrl+= " :dshow-vdev=" +
1119             colon_escape( QString("%1").arg( vdevDshowW->getValue() ) );
1120         mrl+= " :dshow-adev=" +
1121             colon_escape( QString("%1").arg( adevDshowW->getValue() ) );
1122         if( dshowVSizeLine->isModified() )
1123             mrl += " :dshow-size=" + dshowVSizeLine->text();
1124         emit methodChanged( "dshow-caching" );
1125         break;
1126 #else
1127     case V4L_DEVICE:
1128         fileList << "v4l://" + v4lVideoDevice->text();
1129         mrl += " :input-slave=alsa://" + v4lAudioDevice->text();
1130         mrl += " :v4l-norm=" + QString::number( v4lNormBox->currentIndex() );
1131         mrl += " :v4l-frequency=" + QString::number( v4lFreq->value() );
1132         break;
1133     case V4L2_DEVICE:
1134         fileList << "v4l2://" + v4l2VideoDevice->text();
1135         mrl += " :input-slave=alsa://" + v4l2AudioDevice->text();
1136         mrl += " :v4l2-standard=" + QString::number( v4l2StdBox->currentIndex() );
1137         break;
1138     case JACK_DEVICE:
1139         mrl = "jack://";
1140         mrl += "channels=" + QString::number( jackChannels->value() );
1141         mrl += ":ports=" + jackPortsSelected->text();
1142         fileList << mrl; mrl = "";
1143
1144         mrl += " :jack-input-caching=" + QString::number( jackCaching->value() );
1145         if ( jackPace->isChecked() )
1146         {
1147                 mrl += " :jack-input-use-vlc-pace";
1148         }
1149         if ( jackConnect->isChecked() )
1150         {
1151                 mrl += " :jack-input-auto-connect";
1152         }
1153         break;
1154     case PVR_DEVICE:
1155         fileList << "pvr://";
1156         mrl += " :pvr-device=" + pvrDevice->text();
1157         mrl += " :pvr-radio-device=" + pvrRadioDevice->text();
1158         mrl += " :pvr-norm=" + QString::number( pvrNormBox->currentIndex() );
1159         if( pvrFreq->value() )
1160             mrl += " :pvr-frequency=" + QString::number( pvrFreq->value() );
1161         if( pvrBitr->value() )
1162             mrl += " :pvr-bitrate=" + QString::number( pvrBitr->value() );
1163         break;
1164     case DVB_DEVICE:
1165         mrl = "dvb://";
1166         mrl += "frequency=" + QString::number( dvbFreq->value() );
1167         if( dvbc->isChecked() || dvbt->isChecked() )
1168             mrl +="000";
1169         fileList << mrl; mrl= "";
1170
1171         mrl += " :dvb-adapter=" + QString::number( dvbCard->value() );
1172         if( dvbs->isChecked() || dvbc->isChecked() )
1173             mrl += " :dvb-srate=" + QString::number( dvbSrate->value() );
1174         else if( dvbt->isChecked() )
1175             mrl += " :dvb-bandwidth=" +
1176                 QString::number( dvbBandBox->itemData(
1177                     dvbBandBox->currentIndex() ).toInt() );
1178
1179         break;
1180 #endif
1181     case SCREEN_DEVICE:
1182         fileList << "screen://";
1183         mrl = " :screen-fps=" + QString::number( screenFPS->value() );
1184         emit methodChanged( "screen-caching" );
1185         updateButtons();
1186         break;
1187     }
1188
1189     if( !advMRL.isEmpty() ) mrl += advMRL;
1190
1191     emit mrlUpdated( fileList, mrl );
1192 }
1193
1194 /**
1195  * Update the Buttons (show/hide) for the GUI as all device type don't
1196  * use the same ui. elements.
1197  **/
1198 void CaptureOpenPanel::updateButtons()
1199 {
1200     /*  Be sure to display the ui Elements in case they were hidden by
1201      *  some Device Type (like Screen://) */
1202     ui.optionsBox->show();
1203     ui.advancedButton->show();
1204     /* Get the current Device Number */
1205     int i_devicetype = ui.deviceCombo->itemData(
1206                                 ui.deviceCombo->currentIndex() ).toInt();
1207     switch( i_devicetype )
1208     {
1209 #ifdef WIN32
1210     case BDA_DEVICE:
1211         if( bdas->isChecked() || bdac->isChecked() )
1212         {
1213             bdaSrate->show();
1214             bdaSrateLabel->show();
1215             bdaBandBox->hide();
1216             bdaBandLabel->hide();
1217         }
1218         else if( bdat->isChecked() || bdaa->isChecked() )
1219         {
1220             bdaSrate->hide();
1221             bdaSrateLabel->hide();
1222             bdaBandBox->show();
1223             bdaBandLabel->show();
1224         }
1225         break;
1226 #else
1227     case DVB_DEVICE:
1228         if( dvbs->isChecked() || dvbc->isChecked() )
1229         {
1230             dvbSrate->show();
1231             dvbSrateLabel->show();
1232             dvbBandBox->hide();
1233             dvbBandLabel->hide();
1234         }
1235         else if( dvbt->isChecked() )
1236         {
1237             dvbSrate->hide();
1238             dvbSrateLabel->hide();
1239             dvbBandBox->show();
1240             dvbBandLabel->show();
1241         }
1242         break;
1243 #endif
1244     case SCREEN_DEVICE:
1245         //ui.optionsBox->hide();
1246         ui.advancedButton->hide();
1247         break;
1248     }
1249
1250     advMRL.clear();
1251 }
1252
1253 void CaptureOpenPanel::advancedDialog()
1254 {
1255     /* Get selected device type */
1256     int i_devicetype = ui.deviceCombo->itemData(
1257                                 ui.deviceCombo->currentIndex() ).toInt();
1258
1259     /* Get the corresponding module */
1260     module_t *p_module =
1261         module_find( psz_devModule[i_devicetype] );
1262     if( NULL == p_module ) return;
1263
1264     /* Init */
1265     QList<ConfigControl *> controls;
1266
1267     /* Get the confsize  */
1268     unsigned int i_confsize;
1269     module_config_t *p_config;
1270     p_config = module_config_get( p_module, &i_confsize );
1271
1272     /* New Adv Prop dialog */
1273     adv = new QDialog( this );
1274     adv->setWindowTitle( qtr( "Advanced Options" ) );
1275     adv->setWindowRole( "vlc-advanced-options" );
1276
1277     /* A main Layout with a Frame */
1278     QVBoxLayout *mainLayout = new QVBoxLayout( adv );
1279     QScrollArea *scroll = new QScrollArea;
1280     mainLayout->addWidget( scroll );
1281
1282     QFrame *advFrame = new QFrame;
1283     /* GridLayout inside the Frame */
1284     QGridLayout *gLayout = new QGridLayout( advFrame );
1285
1286     scroll->setWidgetResizable( true );
1287     scroll->setWidget( advFrame );
1288
1289     /* Create the options inside the FrameLayout */
1290     for( int n = 0; n < (int)i_confsize; n++ )
1291     {
1292         module_config_t *p_item = p_config + n;
1293         ConfigControl *config = ConfigControl::createControl(
1294                         VLC_OBJECT( p_intf ), p_item, advFrame, gLayout, n );
1295         if ( config )
1296             controls.append( config );
1297     }
1298
1299     /* Button stuffs */
1300     QDialogButtonBox *advButtonBox = new QDialogButtonBox( adv );
1301     QPushButton *closeButton = new QPushButton( qtr( "OK" ) );
1302     QPushButton *cancelButton = new QPushButton( qtr( "Cancel" ) );
1303
1304     CONNECT( closeButton, clicked(), adv, accept() );
1305     CONNECT( cancelButton, clicked(), adv, reject() );
1306
1307     advButtonBox->addButton( closeButton, QDialogButtonBox::AcceptRole );
1308     advButtonBox->addButton( cancelButton, QDialogButtonBox::RejectRole );
1309
1310     mainLayout->addWidget( advButtonBox );
1311
1312     /* Creation of the MRL */
1313     if( adv->exec() )
1314     {
1315         QString tempMRL = "";
1316         for( int i = 0; i < controls.size(); i++ )
1317         {
1318             ConfigControl *control = controls[i];
1319
1320             tempMRL += (i ? " :" : ":");
1321
1322             if( control->getType() == CONFIG_ITEM_BOOL )
1323                 if( !(qobject_cast<VIntConfigControl *>(control)->getValue() ) )
1324                     tempMRL += "no-";
1325
1326             tempMRL += control->getName();
1327
1328             switch( control->getType() )
1329             {
1330                 case CONFIG_ITEM_STRING:
1331                 case CONFIG_ITEM_FILE:
1332                 case CONFIG_ITEM_DIRECTORY:
1333                 case CONFIG_ITEM_MODULE:
1334                     tempMRL += colon_escape( QString("=%1").arg( qobject_cast<VStringConfigControl *>(control)->getValue() ) );
1335                     break;
1336                 case CONFIG_ITEM_INTEGER:
1337                     tempMRL += QString("=%1").arg( qobject_cast<VIntConfigControl *>(control)->getValue() );
1338                     break;
1339                 case CONFIG_ITEM_FLOAT:
1340                     tempMRL += QString("=%1").arg( qobject_cast<VFloatConfigControl *>(control)->getValue() );
1341                     break;
1342             }
1343         }
1344         advMRL = tempMRL;
1345         updateMRL();
1346         msg_Dbg( p_intf, "%s", qtu( advMRL ) );
1347     }
1348     for( int i = 0; i < controls.size(); i++ )
1349     {
1350         ConfigControl *control = controls[i];
1351         delete control ;
1352     }
1353     delete adv;
1354     module_config_free( p_config );
1355     module_release (p_module);
1356 }
1357