]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/open.cpp
8167d15fc4a58c90367ceee460306af1cb21af46
[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  * Net open
56  **************************************************************************/
57 #if 0
58 NetOpenPanel::NetOpenPanel( QWidget *_parent, intf_thread_t *_p_intf ) :
59                                 OpenPanel( _parent, _p_intf )
60 {
61     ui.setupUi( this );
62 }
63
64 NetOpenPanel::~NetOpenPanel()
65 {}
66
67 QString NetOpenPanel::getUpdatedMRL( )
68 {
69
70 }
71
72 void NetOpenPanel::sendUpdate()
73 {
74     QString *mrl = new QString();
75     QString *cache = new QString();
76     getUpdatedMRL( mrl, cache );,
77     emit dataUpdated( mrl, cache );
78 }
79 #endif