]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/open.cpp
*Qt4-Open: Hide by defaults.
[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
26 #include "qt4.hpp"
27 #include "components/open.hpp"
28
29 /**************************************************************************
30  * Open panel
31  ***************************************************************************/
32
33 OpenPanel::~OpenPanel()
34 {}
35
36 /**************************************************************************
37  * File open
38  **************************************************************************/
39 FileOpenPanel::FileOpenPanel( QWidget *_parent, intf_thread_t *_p_intf ) :
40                                 OpenPanel( _parent, _p_intf )
41 {
42     ui.setupUi( this );
43     ui.audioGroupBox->hide();
44     BUTTONACT( ui.extraAudioButton, toggleExtraAudio() );
45 }
46
47 FileOpenPanel::~FileOpenPanel()
48 {}
49
50 void FileOpenPanel::sendUpdate()
51 {}
52
53 QString FileOpenPanel::getUpdatedMRL()
54 {
55     return ui.fileInput->currentText();
56 }
57
58 void FileOpenPanel::toggleExtraAudio()
59 {
60    if (ui.audioGroupBox->isVisible())
61    {
62        ui.audioGroupBox->hide();
63    }
64    else
65    {
66       ui.audioGroupBox->show();
67    }
68 }
69
70
71 /**************************************************************************
72  * Disk open
73  **************************************************************************/
74 DiskOpenPanel::DiskOpenPanel( QWidget *_parent, intf_thread_t *_p_intf ) :
75                                 OpenPanel( _parent, _p_intf )
76 {
77     ui.setupUi( this );
78 }
79
80 DiskOpenPanel::~DiskOpenPanel()
81 {}
82
83 void DiskOpenPanel::sendUpdate()
84 {}
85
86 QString DiskOpenPanel::getUpdatedMRL()
87 {
88     //return ui.DiskInput->currentText();
89     return NULL;
90 }
91
92
93
94 /**************************************************************************
95  * Net open
96  **************************************************************************/
97 NetOpenPanel::NetOpenPanel( QWidget *_parent, intf_thread_t *_p_intf ) :
98                                 OpenPanel( _parent, _p_intf )
99 {
100     ui.setupUi( this );
101 }
102
103 NetOpenPanel::~NetOpenPanel()
104 {}
105
106 void NetOpenPanel::sendUpdate()
107 {}
108 /*
109 void NetOpenPanel::sendUpdate()
110 {
111     QString *mrl = new QString();
112     QString *cache = new QString();
113     getUpdatedMRL( mrl, cache );,
114     emit dataUpdated( mrl, cache );
115 }*/
116
117 QString NetOpenPanel::getUpdatedMRL()
118 {
119 //  return ui.NetInput->currentText();
120     return NULL;
121 }
122