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