]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/open.cpp
Simplification of Advanced Open
[vlc] / modules / gui / qt4 / dialogs / open.cpp
1 /*****************************************************************************
2  * open.cpp : Advanced open dialog
3  ****************************************************************************
4  * Copyright (C) 2006 the VideoLAN team
5  * $Id: streaminfo.cpp 16816 2006-09-23 20:56:52Z jb $
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 #include <QTabWidget>
24 #include <QGridLayout>
25 #include <QFileDialog>
26
27 #include "dialogs/open.hpp"
28 #include "components/open.hpp"
29
30 #include "qt4.hpp"
31 #include "util/qvlcframe.hpp"
32
33 #include "input_manager.hpp"
34 #include "dialogs_provider.hpp"
35
36 OpenDialog *OpenDialog::instance = NULL;
37
38 OpenDialog::OpenDialog( intf_thread_t *_p_intf ) : QVLCFrame( _p_intf )
39 {
40     setWindowTitle( qtr("Open" ) );
41     ui.setupUi( this );
42     ui.vboxLayout->setSizeConstraint(QLayout::SetFixedSize);
43     fileOpenPanel = new FileOpenPanel(this , _p_intf );
44     diskOpenPanel = new DiskOpenPanel(this , _p_intf );
45     netOpenPanel = new NetOpenPanel(this , _p_intf );
46     ui.Tab->addTab(fileOpenPanel, "File");
47     ui.Tab->addTab(diskOpenPanel, "Disk");
48     ui.Tab->addTab(netOpenPanel, "Network");
49     ui.advancedFrame->hide();
50
51     connect( fileOpenPanel, SIGNAL(mrlUpdated( QString )),
52             this, SLOT( updateMRL(QString)));
53     BUTTONACT( ui.closeButton, ok());
54     BUTTONACT( ui.cancelButton, cancel());
55     BUTTONACT( ui.advancedButton , toggleAdvancedPanel() );
56 }
57
58 OpenDialog::~OpenDialog()
59 {
60 }
61
62 void OpenDialog::showTab(int i_tab=0)
63 {
64     this->show();
65     ui.Tab->setCurrentIndex(i_tab);
66 }
67
68 void OpenDialog::cancel()
69 {
70     fileOpenPanel->clear();
71     this->toggleVisible();
72 }
73
74 void OpenDialog::ok()
75 {
76     QStringList tempMRL = MRL.split(" ");
77     for( size_t i = 0 ; i< tempMRL.size(); i++ )
78     {
79          const char * psz_utf8 = qtu( tempMRL[i] );
80          /* Play the first one, parse and enqueue the other ones */
81          playlist_Add( THEPL, psz_utf8, NULL,
82                        PLAYLIST_APPEND | (i ? 0 : PLAYLIST_GO) |
83                        ( i ? PLAYLIST_PREPARSE : 0 ),
84                        PLAYLIST_END, VLC_TRUE );
85       }
86
87     this->toggleVisible();
88 }
89
90 void OpenDialog::changedTab()
91 {
92 }
93
94 void OpenDialog::toggleAdvancedPanel()
95 {
96     if (ui.advancedFrame->isVisible())
97     {
98         ui.advancedFrame->hide();
99     }
100     else
101     {
102         ui.advancedFrame->show();
103     }
104 }
105
106 void OpenDialog::updateMRL(QString tempMRL)
107 {
108     MRL = tempMRL;
109     ui.advancedLineInput->setText(MRL);
110 }
111