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