]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/open.hpp
Qt4: Preferences, Simple_Preferences. A bit more, but a lot of things are missing...
[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 void clear() = 0;
45 protected:
46     intf_thread_t *p_intf;
47 public slots:
48     virtual void updateMRL() = 0;
49 signals:
50     void mrlUpdated(QString);
51     void methodChanged( QString method );
52 };
53
54 class FileOpenPanel: public OpenPanel
55 {
56     Q_OBJECT;
57 public:
58     FileOpenPanel( QWidget *, intf_thread_t * );
59     virtual ~FileOpenPanel();
60     virtual void clear() ;
61 private:
62     Ui::OpenFile ui;
63     QStringList browse( QString );
64 public slots:
65     virtual void updateMRL();
66 private slots:
67     void browseFile();
68     void browseFileSub();
69 };
70
71 class NetOpenPanel: public OpenPanel
72 {
73     Q_OBJECT;
74 public:
75     NetOpenPanel( QWidget *, intf_thread_t * );
76     virtual ~NetOpenPanel();
77     virtual void clear() ;
78 private:
79     Ui::OpenNetwork ui;
80 public slots:
81     virtual void updateMRL();
82 private slots:
83     void updateProtocol(int);
84     void updateAddress();
85 };
86
87 class DiskOpenPanel: public OpenPanel
88 {
89     Q_OBJECT;
90 public:
91     DiskOpenPanel( QWidget *, intf_thread_t * );
92     virtual ~DiskOpenPanel();
93     virtual void clear() ;
94 private:
95     Ui::OpenDisk ui;
96 public slots:
97     virtual void updateMRL() ;
98 };
99
100 #endif