]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/open.cpp
Qt4: Just a toggle test for the advanced Panel.
[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
26 #include "dialogs/open.hpp"
27 #include "components/open.hpp"
28
29 #include "qt4.hpp"
30 #include "util/qvlcframe.hpp"
31
32 #include "input_manager.hpp"
33 #include "dialogs_provider.hpp"
34
35 OpenDialog *OpenDialog::instance = NULL;
36
37 OpenDialog::OpenDialog( intf_thread_t *_p_intf ) : QVLCFrame( _p_intf )
38 {
39     setWindowTitle( _("Open" ) );
40     ui.setupUi( this );
41     fileOpenPanel = new FileOpenPanel(this , _p_intf );
42     diskOpenPanel = new DiskOpenPanel(this , _p_intf );
43     netOpenPanel = new NetOpenPanel(this , _p_intf );
44     ui.Tab->addTab(fileOpenPanel, "File");
45     ui.Tab->addTab(diskOpenPanel, "Disk");
46     ui.Tab->addTab(netOpenPanel, "Network");
47     ui.advancedFrame->hide();
48
49     BUTTONACT( ui.advancedButton , toggleAdvancedPanel()  );
50 }
51
52 OpenDialog::~OpenDialog()
53 {
54 }
55
56 void OpenDialog::toggleAdvancedPanel()
57 {
58     if (ui.advancedFrame->isVisible())
59     {
60         ui.advancedFrame->hide();
61     }
62     else
63     {
64         ui.advancedFrame->show();
65     }
66 }
67
68 void OpenDialog::cancel()
69 {
70     this->toggleVisible();
71 }
72
73 void OpenDialog::ok()
74 {
75     this->toggleVisible();
76 }
77