open_panels.cpp
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:45k
源码类别:

midi

开发平台:

Unix_Linux

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