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