]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/open.cpp
* Qt4: added network and disk UIs to Open
[vlc] / modules / gui / qt4 / components / open.cpp
1 /*****************************************************************************
2  * open.cpp : Panels for the open dialogs
3  ****************************************************************************
4  * Copyright (C) 2006 the VideoLAN team
5  * $Id$
6  *
7  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
8  *          Jean-Baptiste Kempf <jb@videolan.org> 
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 #include "components/open.hpp"
26
27 /**************************************************************************
28  * Open panel
29  ***************************************************************************/
30
31 OpenPanel::~OpenPanel()
32 {}
33
34 /**************************************************************************
35  * File open
36  **************************************************************************/
37 FileOpenPanel::FileOpenPanel( QWidget *_parent, intf_thread_t *_p_intf ) :
38                                 OpenPanel( _parent, _p_intf )
39 {
40     ui.setupUi( this );
41 }
42
43 FileOpenPanel::~FileOpenPanel()
44 {}
45
46 void FileOpenPanel::sendUpdate()
47 {}
48
49 QString FileOpenPanel::getUpdatedMRL()
50 {
51     return ui.fileInput->currentText();
52 }
53
54
55 /**************************************************************************
56  * Disk open
57  **************************************************************************/
58 DiskOpenPanel::DiskOpenPanel( QWidget *_parent, intf_thread_t *_p_intf ) :
59                                 OpenPanel( _parent, _p_intf )
60 {
61     ui.setupUi( this );
62 }
63
64 DiskOpenPanel::~DiskOpenPanel()
65 {}
66
67 void DiskOpenPanel::sendUpdate()
68 {}
69
70 QString DiskOpenPanel::getUpdatedMRL()
71 {
72     //return ui.DiskInput->currentText();
73     return NULL;
74 }
75
76
77
78 /**************************************************************************
79  * Net open
80  **************************************************************************/
81 NetOpenPanel::NetOpenPanel( QWidget *_parent, intf_thread_t *_p_intf ) :
82                                 OpenPanel( _parent, _p_intf )
83 {
84     ui.setupUi( this );
85 }
86
87 NetOpenPanel::~NetOpenPanel()
88 {}
89
90 void NetOpenPanel::sendUpdate()
91 {}
92 /*
93 void NetOpenPanel::sendUpdate()
94 {
95     QString *mrl = new QString();
96     QString *cache = new QString();
97     getUpdatedMRL( mrl, cache );,
98     emit dataUpdated( mrl, cache );
99 }*/
100
101 QString NetOpenPanel::getUpdatedMRL()
102 {
103 //  return ui.NetInput->currentText();
104     return NULL;
105 }
106