]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/open.cpp
Qt4 : Some work on OpenDialog. Does not work with files with spaces... More work...
[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     fileOpenPanel = new FileOpenPanel(this , _p_intf );
43     diskOpenPanel = new DiskOpenPanel(this , _p_intf );
44     netOpenPanel = new NetOpenPanel(this , _p_intf );
45     ui.Tab->addTab(fileOpenPanel, "File");
46     ui.Tab->addTab(diskOpenPanel, "Disk");
47     ui.Tab->addTab(netOpenPanel, "Network");
48     ui.advancedFrame->hide();
49
50     connect( fileOpenPanel, SIGNAL(mrlUpdated( QString )),
51             this, SLOT( updateMRL(QString)));
52     BUTTONACT( ui.closeButton, ok());
53     BUTTONACT( ui.cancelButton, cancel());
54     BUTTONACT( ui.advancedButton , toggleAdvancedPanel() );
55 }
56
57 OpenDialog::~OpenDialog()
58 {
59 }
60
61 void OpenDialog::showTab(int i_tab=0)
62 {
63     this->show();
64     ui.Tab->setCurrentIndex(i_tab);
65 }
66
67 void OpenDialog::cancel()
68 {
69     fileOpenPanel->clear();
70     this->toggleVisible();
71 }
72
73 void OpenDialog::ok()
74 {
75     QStringList tempMRL = MRL.split(" ");
76     for( size_t i = 0 ; i< tempMRL.size(); i++ )
77     {
78          const char * psz_utf8 = qtu( tempMRL[i] );
79          /* Play the first one, parse and enqueue the other ones */
80          playlist_Add( THEPL, psz_utf8, NULL,
81                        PLAYLIST_APPEND | (i ? 0 : PLAYLIST_GO) |
82                        ( i ? PLAYLIST_PREPARSE : 0 ),
83                        PLAYLIST_END, VLC_TRUE );
84       }
85
86     this->toggleVisible();
87 }
88
89 void OpenDialog::changedTab()
90 {
91 }
92
93 void OpenDialog::toggleAdvancedPanel()
94 {
95     if (ui.advancedFrame->isVisible())
96     {
97         ui.advancedFrame->hide();
98     }
99     else
100     {
101         ui.advancedFrame->show();
102     }
103 }
104
105 void OpenDialog::updateMRL(QString tempMRL)
106 {
107     MRL = tempMRL;
108     ui.advancedLineInput->setText(MRL);
109 }
110