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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * open.cpp : Advanced open dialog
  3.  *****************************************************************************
  4.  * Copyright © 2006-2009 the VideoLAN team
  5.  * $Id: ec4fe8e37ed2f87f13e5ebbb490c7cc961e3581a $
  6.  *
  7.  * Authors: Jean-Baptiste Kempf <jb@videolan.org>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  22.  *****************************************************************************/
  23. #ifdef HAVE_CONFIG_H
  24. # include "config.h"
  25. #endif
  26. #include "dialogs/open.hpp"
  27. #include "dialogs_provider.hpp"
  28. #include "recents.hpp"
  29. #include "util/qt_dirs.hpp"
  30. #include <QTabWidget>
  31. #include <QGridLayout>
  32. #include <QRegExp>
  33. #include <QMenu>
  34. #define DEBUG_QT 1
  35. OpenDialog *OpenDialog::instance = NULL;
  36. OpenDialog* OpenDialog::getInstance( QWidget *parent, intf_thread_t *p_intf,
  37.         bool b_rawInstance, int _action_flag, bool b_selectMode, bool _b_pl )
  38. {
  39.     /* Creation */
  40.     if( !instance )
  41.         instance = new OpenDialog( parent, p_intf, b_selectMode,
  42.                                    _action_flag, _b_pl );
  43.     else if( !b_rawInstance )
  44.     {
  45.         /* Request the instance but change small details:
  46.            - Button menu */
  47.         if( b_selectMode )
  48.             _action_flag = SELECT; /* This should be useless, but we never know
  49.                                       if the call is correct */
  50.         instance->setWindowModality( Qt::WindowModal );
  51.         instance->i_action_flag = _action_flag;
  52.         instance->b_pl = _b_pl;
  53.         instance->setMenuAction();
  54.     }
  55.     return instance;
  56. }
  57. OpenDialog::OpenDialog( QWidget *parent,
  58.                         intf_thread_t *_p_intf,
  59.                         bool b_selectMode,
  60.                         int _action_flag,
  61.                         bool _b_pl)  :  QVLCDialog( parent, _p_intf )
  62. {
  63.     i_action_flag = _action_flag;
  64.     b_pl =_b_pl;
  65.     if( b_selectMode ) /* Select mode */
  66.         i_action_flag = SELECT;
  67.     /* Basic Creation of the Window */
  68.     ui.setupUi( this );
  69.     setWindowTitle( qtr( "Open Media" ) );
  70.     setWindowModality( Qt::WindowModal );
  71.     /* Tab definition and creation */
  72.     fileOpenPanel    = new FileOpenPanel( this, p_intf );
  73.     discOpenPanel    = new DiscOpenPanel( this, p_intf );
  74.     netOpenPanel     = new NetOpenPanel( this, p_intf );
  75.     captureOpenPanel = new CaptureOpenPanel( this, p_intf );
  76.     /* Insert the tabs */
  77.     ui.Tab->insertTab( OPEN_FILE_TAB, fileOpenPanel, QIcon( ":/folder-grey" ),
  78.                        qtr( "&File" ) );
  79.     ui.Tab->insertTab( OPEN_DISC_TAB, discOpenPanel, QIcon( ":/disc" ),
  80.                        qtr( "&Disc" ) );
  81.     ui.Tab->insertTab( OPEN_NETWORK_TAB, netOpenPanel, QIcon( ":/network" ),
  82.                        qtr( "&Network" ) );
  83.     ui.Tab->insertTab( OPEN_CAPTURE_TAB, captureOpenPanel, QIcon( ":/capture-card" ),
  84.                        qtr( "Capture &Device" ) );
  85.     /* Hide the Slave input widgets */
  86.     ui.slaveLabel->hide();
  87.     ui.slaveText->hide();
  88.     ui.slaveBrowseButton->hide();
  89.     /* Buttons Creation */
  90.     /* Play Button */
  91.     playButton = ui.playButton;
  92.     /* Cancel Button */
  93.     cancelButton = new QPushButton( qtr( "&Cancel" ) );
  94.     /* Select Button */
  95.     selectButton = new QPushButton( qtr( "&Select" ) );
  96.     /* Menu for the Play button */
  97.     QMenu * openButtonMenu = new QMenu( "Open" );
  98.     openButtonMenu->addAction( qtr( "&Enqueue" ), this, SLOT( enqueue() ),
  99.                                     QKeySequence( "Alt+E" ) );
  100.     openButtonMenu->addAction( qtr( "&Play" ), this, SLOT( play() ),
  101.                                     QKeySequence( "Alt+P" ) );
  102.     openButtonMenu->addAction( qtr( "&Stream" ), this, SLOT( stream() ) ,
  103.                                     QKeySequence( "Alt+S" ) );
  104.     openButtonMenu->addAction( qtr( "&Convert" ), this, SLOT( transcode() ) ,
  105.                                     QKeySequence( "Alt+C" ) );
  106.     ui.menuButton->setMenu( openButtonMenu );
  107.     ui.menuButton->setIcon( QIcon( ":/down_arrow" ) );
  108.     /* Add the three Buttons */
  109.     ui.buttonsBox->addButton( selectButton, QDialogButtonBox::AcceptRole );
  110.     ui.buttonsBox->addButton( cancelButton, QDialogButtonBox::RejectRole );
  111.     /* At creation time, modify the default buttons */
  112.     setMenuAction();
  113.     /* Force MRL update on tab change */
  114.     CONNECT( ui.Tab, currentChanged( int ), this, signalCurrent( int ) );
  115.     CONNECT( fileOpenPanel, mrlUpdated( const QStringList&, const QString& ),
  116.              this, updateMRL( const QStringList&, const QString& ) );
  117.     CONNECT( netOpenPanel, mrlUpdated( const QStringList&, const QString& ),
  118.              this, updateMRL( const QStringList&, const QString& ) );
  119.     CONNECT( discOpenPanel, mrlUpdated( const QStringList&, const QString& ),
  120.              this, updateMRL( const QStringList&, const QString& ) );
  121.     CONNECT( captureOpenPanel, mrlUpdated( const QStringList&, const QString& ),
  122.              this, updateMRL( const QStringList&, const QString& ) );
  123.     CONNECT( fileOpenPanel, methodChanged( const QString& ),
  124.              this, newCachingMethod( const QString& ) );
  125.     CONNECT( netOpenPanel, methodChanged( const QString& ),
  126.              this, newCachingMethod( const QString& ) );
  127.     CONNECT( discOpenPanel, methodChanged( const QString& ),
  128.              this, newCachingMethod( const QString& ) );
  129.     CONNECT( captureOpenPanel, methodChanged( const QString& ),
  130.              this, newCachingMethod( const QString& ) );
  131.     /* Advanced frame Connects */
  132.     CONNECT( ui.slaveCheckbox, toggled( bool ), this, updateMRL() );
  133.     CONNECT( ui.slaveText, textChanged( const QString& ), this, updateMRL() );
  134.     CONNECT( ui.cacheSpinBox, valueChanged( int ), this, updateMRL() );
  135.     CONNECT( ui.startTimeDoubleSpinBox, valueChanged( double ), this, updateMRL() );
  136.     BUTTONACT( ui.advancedCheckBox, toggleAdvancedPanel() );
  137.     BUTTONACT( ui.slaveBrowseButton, browseInputSlave() );
  138.     /* Buttons action */
  139.     BUTTONACT( playButton, selectSlots() );
  140.     BUTTONACT( selectButton, close() );
  141.     BUTTONACT( cancelButton, cancel() );
  142.     /* Hide the advancedPanel */
  143.     if( !config_GetInt( p_intf, "qt-adv-options" ) )
  144.         ui.advancedFrame->hide();
  145.     else
  146.         ui.advancedCheckBox->setChecked( true );
  147.     /* Initialize caching */
  148.     storedMethod = "";
  149.     newCachingMethod( "file-caching" );
  150.     setMinimumSize( sizeHint() );
  151.     setMaximumWidth( 900 );
  152.     resize( getSettings()->value( "opendialog-size", QSize( 500, 490 ) ).toSize() );
  153. }
  154. OpenDialog::~OpenDialog()
  155. {
  156.     getSettings()->setValue( "opendialog-size", size() );
  157. }
  158. /* Used by VLM dialog and inputSlave selection */
  159. QString OpenDialog::getMRL( bool b_all )
  160. {
  161.     if( itemsMRL.size() == 0 ) return "";
  162.     return b_all ? itemsMRL[0] + ui.advancedLineInput->text()
  163.                  : itemsMRL[0];
  164. }
  165. /* Finish the dialog and decide if you open another one after */
  166. void OpenDialog::setMenuAction()
  167. {
  168.     if( i_action_flag == SELECT )
  169.     {
  170.         playButton->hide();
  171.         selectButton->show();
  172.         selectButton->setDefault( true );
  173.     }
  174.     else
  175.     {
  176.         switch ( i_action_flag )
  177.         {
  178.         case OPEN_AND_STREAM:
  179.             playButton->setText( qtr( "&Stream" ) );
  180.             break;
  181.         case OPEN_AND_SAVE:
  182.             playButton->setText( qtr( "&Convert / Save" ) );
  183.             break;
  184.         case OPEN_AND_ENQUEUE:
  185.             playButton->setText( qtr( "&Enqueue" ) );
  186.             break;
  187.         case OPEN_AND_PLAY:
  188.         default:
  189.             playButton->setText( qtr( "&Play" ) );
  190.         }
  191.         playButton->show();
  192.         selectButton->hide();
  193.         playButton->setDefault( true );
  194.     }
  195. }
  196. void OpenDialog::showTab( int i_tab )
  197. {
  198.     if( i_tab == OPEN_CAPTURE_TAB ) captureOpenPanel->initialize();
  199.     ui.Tab->setCurrentIndex( i_tab );
  200.     show();
  201. }
  202. /* Function called on signal currentChanged triggered */
  203. void OpenDialog::signalCurrent( int i_tab )
  204. {
  205.     if( i_tab == OPEN_CAPTURE_TAB ) captureOpenPanel->initialize();
  206.     if( ui.Tab->currentWidget() != NULL )
  207.         ( dynamic_cast<OpenPanel *>( ui.Tab->currentWidget() ) )->updateMRL();
  208. }
  209. void OpenDialog::toggleAdvancedPanel()
  210. {
  211.     if( ui.advancedFrame->isVisible() )
  212.     {
  213.         ui.advancedFrame->hide();
  214.         if( size().isValid() )
  215.             resize( size().width(), size().height()
  216.                     - ui.advancedFrame->height() );
  217.     }
  218.     else
  219.     {
  220.         ui.advancedFrame->show();
  221.         if( size().isValid() )
  222.             resize( size().width(), size().height()
  223.                     + ui.advancedFrame->height() );
  224.     }
  225. }
  226. /***********
  227.  * Actions *
  228.  ***********/
  229. /* If Cancel is pressed or escaped */
  230. void OpenDialog::cancel()
  231. {
  232.     /* Clear the panels */
  233.     for( int i = 0; i < OPEN_TAB_MAX; i++ )
  234.         dynamic_cast<OpenPanel*>( ui.Tab->widget( i ) )->clear();
  235.     /* Clear the variables */
  236.     itemsMRL.clear();
  237.     optionsMRL.clear();
  238.     /* If in Select Mode, reject instead of hiding */
  239.     if( i_action_flag == SELECT ) reject();
  240.     else hide();
  241. }
  242. /* If EnterKey is pressed */
  243. void OpenDialog::close()
  244. {
  245.     /* If in Select Mode, accept instead of selecting a Slot */
  246.     if( i_action_flag == SELECT )
  247.         accept();
  248.     else
  249.         selectSlots();
  250. }
  251. /* Play button */
  252. void OpenDialog::selectSlots()
  253. {
  254.     switch ( i_action_flag )
  255.     {
  256.     case OPEN_AND_STREAM:
  257.         stream();
  258.         break;
  259.     case OPEN_AND_SAVE:
  260.         transcode();
  261.         break;
  262.     case OPEN_AND_ENQUEUE:
  263.         enqueue();
  264.         break;
  265.     case OPEN_AND_PLAY:
  266.     default:
  267.         play();
  268.     }
  269. }
  270. void OpenDialog::play()
  271. {
  272.     finish( false );
  273. }
  274. void OpenDialog::enqueue()
  275. {
  276.     finish( true );
  277. }
  278. void OpenDialog::finish( bool b_enqueue = false )
  279. {
  280.     toggleVisible();
  281.     if( i_action_flag == SELECT )
  282.     {
  283.         accept();
  284.         return;
  285.     }
  286.     /* Sort alphabetically */
  287.     itemsMRL.sort();
  288.     /* Go through the item list */
  289.     for( int i = 0; i < itemsMRL.size(); i++ )
  290.     {
  291.         bool b_start = !i && !b_enqueue;
  292.         input_item_t *p_input;
  293.         p_input = input_item_New( p_intf, qtu( itemsMRL[i] ), NULL );
  294.         /* Insert options only for the first element.
  295.            We don't know how to edit that anyway. */
  296.         if( i == 0 )
  297.         {
  298.             /* Take options from the UI, not from what we stored */
  299.             QStringList optionsList = ui.advancedLineInput->text().split( " :" );
  300.             /* Insert options */
  301.             for( int j = 0; j < optionsList.size(); j++ )
  302.             {
  303.                 QString qs = colon_unescape( optionsList[j] );
  304.                 if( !qs.isEmpty() )
  305.                 {
  306.                     input_item_AddOption( p_input, qtu( qs ),
  307.                                           VLC_INPUT_OPTION_TRUSTED );
  308. #ifdef DEBUG_QT
  309.                     msg_Warn( p_intf, "Input option: %s", qtu( qs ) );
  310. #endif
  311.                 }
  312.             }
  313.         }
  314.         /* Switch between enqueuing and starting the item */
  315.         /* FIXME: playlist_AddInput() can fail */
  316.         playlist_AddInput( THEPL, p_input,
  317.                 PLAYLIST_APPEND | ( b_start ? PLAYLIST_GO : PLAYLIST_PREPARSE ),
  318.                 PLAYLIST_END, b_pl ? true : false, pl_Unlocked );
  319.         vlc_gc_decref( p_input );
  320.         /* Do not add the current MRL if playlist_AddInput fail */
  321.         RecentsMRL::getInstance( p_intf )->addRecent( itemsMRL[i] );
  322.     }
  323. }
  324. void OpenDialog::transcode()
  325. {
  326.     stream( true );
  327. }
  328. void OpenDialog::stream( bool b_transcode_only )
  329. {
  330.     QString soutMRL = getMRL( false );
  331.     if( soutMRL.isEmpty() ) return;
  332.     toggleVisible();
  333.     /* Dbg and send :D */
  334.     msg_Dbg( p_intf, "MRL passed to the Sout: %s", qtu( soutMRL ) );
  335.     THEDP->streamingDialog( this, soutMRL, b_transcode_only,
  336.                             ui.advancedLineInput->text().split( " :" ) );
  337. }
  338. /* Update the MRL */
  339. void OpenDialog::updateMRL( const QStringList& item, const QString& tempMRL )
  340. {
  341.     optionsMRL = tempMRL;
  342.     itemsMRL = item;
  343.     updateMRL();
  344. }
  345. void OpenDialog::updateMRL() {
  346.     QString mrl = optionsMRL;
  347.     if( ui.slaveCheckbox->isChecked() ) {
  348.         mrl += " :input-slave=" + ui.slaveText->text();
  349.     }
  350.     int i_cache = config_GetInt( p_intf, qtu( storedMethod ) );
  351.     if( i_cache != ui.cacheSpinBox->value() ) {
  352.         mrl += QString( " :%1=%2" ).arg( storedMethod ).
  353.                                   arg( ui.cacheSpinBox->value() );
  354.     }
  355.     if( ui.startTimeDoubleSpinBox->value() ) {
  356.         mrl += " :start-time=" + QString::number( ui.startTimeDoubleSpinBox->value() );
  357.     }
  358.     ui.advancedLineInput->setText( mrl );
  359.     ui.mrlLine->setText( itemsMRL.join( " " ) );
  360. }
  361. void OpenDialog::newCachingMethod( const QString& method )
  362. {
  363.     if( method != storedMethod ) {
  364.         storedMethod = method;
  365.         int i_value = config_GetInt( p_intf, qtu( storedMethod ) );
  366.         ui.cacheSpinBox->setValue( i_value );
  367.     }
  368. }
  369. QStringList OpenDialog::SeparateEntries( const QString& entries )
  370. {
  371.     bool b_quotes_mode = false;
  372.     QStringList entries_array;
  373.     QString entry;
  374.     int index = 0;
  375.     while( index < entries.size() )
  376.     {
  377.         int delim_pos = entries.indexOf( QRegExp( "\s+|"" ), index );
  378.         if( delim_pos < 0 ) delim_pos = entries.size() - 1;
  379.         entry += entries.mid( index, delim_pos - index + 1 );
  380.         index = delim_pos + 1;
  381.         if( entry.isEmpty() ) continue;
  382.         if( !b_quotes_mode && entry.endsWith( """ ) )
  383.         {
  384.             /* Enters quotes mode */
  385.             entry.truncate( entry.size() - 1 );
  386.             b_quotes_mode = true;
  387.         }
  388.         else if( b_quotes_mode && entry.endsWith( """ ) )
  389.         {
  390.             /* Finished the quotes mode */
  391.             entry.truncate( entry.size() - 1 );
  392.             b_quotes_mode = false;
  393.         }
  394.         else if( !b_quotes_mode && !entry.endsWith( """ ) )
  395.         {
  396.             /* we found a non-quoted standalone string */
  397.             if( index < entries.size() ||
  398.                 entry.endsWith( " " ) || entry.endsWith( "t" ) ||
  399.                 entry.endsWith( "r" ) || entry.endsWith( "n" ) )
  400.                 entry.truncate( entry.size() - 1 );
  401.             if( !entry.isEmpty() ) entries_array.append( entry );
  402.             entry.clear();
  403.         }
  404.         else
  405.         {;}
  406.     }
  407.     if( !entry.isEmpty() ) entries_array.append( entry );
  408.     return entries_array;
  409. }
  410. void OpenDialog::browseInputSlave()
  411. {
  412.     OpenDialog *od = new OpenDialog( this, p_intf, true, SELECT );
  413.     od->exec();
  414.     ui.slaveText->setText( od->getMRL( false ) );
  415.     delete od;
  416. }