]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/open.hpp
* Qt4: added network and disk UIs to Open
[vlc] / modules / gui / qt4 / components / open.hpp
1 /*****************************************************************************
2  * open.hpp : 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 #ifndef _OPENPANELS_H_
26 #define _OPENPANELS_H_
27
28 #include <vlc/vlc.h>
29 #include <QWidget>
30 #include <QString>
31 #include "ui/open_file.h"
32 #include "ui/open_disk.h"
33 #include "ui/open_net.h"
34
35 class OpenPanel: public QWidget
36 {
37     Q_OBJECT;
38 public:
39     OpenPanel( QWidget *p, intf_thread_t *_p_intf ) : QWidget( p )
40     {
41         p_intf = _p_intf;
42     }
43     virtual ~OpenPanel();
44     virtual QString getUpdatedMRL() = 0;
45 private:
46     intf_thread_t *p_intf;
47 public slots:
48     virtual void sendUpdate() = 0;
49 };
50
51 class FileOpenPanel: public OpenPanel
52 {
53     Q_OBJECT;
54 public:
55     FileOpenPanel( QWidget *, intf_thread_t * );
56     virtual ~FileOpenPanel();
57     virtual QString getUpdatedMRL();
58 private:
59     Ui::OpenFile ui;
60 public slots:
61     virtual void sendUpdate() ;
62 signals:
63     void dataUpdated( QString, QString ) ;
64
65 };
66
67 class NetOpenPanel: public OpenPanel
68 {
69     Q_OBJECT;
70 public:
71     NetOpenPanel( QWidget *, intf_thread_t * );
72     virtual ~NetOpenPanel();
73     virtual QString getUpdatedMRL();
74 private:
75     Ui::OpenNet ui;
76 public slots:
77     virtual void sendUpdate() ;
78 signals:
79     void dataUpdated( QString, QString ) ;
80
81 };
82
83 class DiskOpenPanel: public OpenPanel
84 {
85     Q_OBJECT;
86 public:
87     DiskOpenPanel( QWidget *, intf_thread_t * );
88     virtual ~DiskOpenPanel();
89     virtual QString getUpdatedMRL();
90 private:
91     Ui::OpenDisk ui;
92 public slots:
93     virtual void sendUpdate() ;
94 signals:
95     void dataUpdated( QString, QString ) ;
96
97 };
98
99
100
101 #endif