]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/open.hpp
Simplification of Advanced 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     void clear();
59 private:
60     Ui::OpenFile ui;
61     QStringList browse();
62     void updateSubsMRL();
63 public slots:
64     virtual void sendUpdate() ;
65     void updateMRL();
66     void browseFile();
67     void browseFileSub();
68     void browseFileAudio();
69 signals:
70     void mrlUpdated( QString ) ;
71 };
72
73 class NetOpenPanel: public OpenPanel
74 {
75     Q_OBJECT;
76 public:
77     NetOpenPanel( QWidget *, intf_thread_t * );
78     virtual ~NetOpenPanel();
79     virtual QString getUpdatedMRL();
80 private:
81     Ui::OpenNetwork ui;
82 public slots:
83     virtual void sendUpdate() ;
84 signals:
85     void dataUpdated( QString, QString ) ;
86
87 };
88
89 class DiskOpenPanel: public OpenPanel
90 {
91     Q_OBJECT;
92 public:
93     DiskOpenPanel( QWidget *, intf_thread_t * );
94     virtual ~DiskOpenPanel();
95     virtual QString getUpdatedMRL();
96 private:
97     Ui::OpenDisk ui;
98 public slots:
99     virtual void sendUpdate() ;
100 signals:
101     void dataUpdated( QString, QString ) ;
102
103 };
104
105 #endif