]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/open.cpp
508d12869edee2594610c3076815a1c639decfd3
[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     ui.Tab->addTab(fileOpenPanel, "Test");
43 }
44
45 OpenDialog::~OpenDialog()
46 {
47 }
48
49 void OpenDialog::cancel()
50 {
51     this->toggleVisible();
52 }
53
54 void OpenDialog::ok()
55 {
56     this->toggleVisible();
57 }