]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/open.hpp
45a3c342603913662450cb3f5df4504f823cec0e
[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 #include "ui/open_capture.h"
35
36 class QFileDialog;
37 class QLineEdit;
38
39 class OpenPanel: public QWidget
40 {
41     Q_OBJECT;
42 public:
43     OpenPanel( QWidget *p, intf_thread_t *_p_intf ) : QWidget( p )
44     {
45         p_intf = _p_intf;
46     }
47     virtual ~OpenPanel() {};
48     virtual void clear() = 0;
49 protected:
50     intf_thread_t *p_intf;
51 public slots:
52     virtual void updateMRL() = 0;
53 signals:
54     void mrlUpdated(QString);
55     void methodChanged( QString method );
56 };
57
58 class FileOpenPanel: public OpenPanel
59 {
60     Q_OBJECT;
61 public:
62     FileOpenPanel( QWidget *, intf_thread_t * );
63     virtual ~FileOpenPanel();
64     virtual void clear() ;
65     virtual void accept() ;
66 private:
67     Ui::OpenFile ui;
68     QStringList browse( QString );
69     QFileDialog *dialogBox;
70     QLineEdit *lineFileEdit;
71     bool eventFilter(QObject *, QEvent *);
72 public slots:
73     virtual void updateMRL();
74 private slots:
75     void browseFile();
76     void browseFileSub();
77     void toggleSubtitleFrame();
78
79 };
80
81 class NetOpenPanel: public OpenPanel
82 {
83     Q_OBJECT;
84 public:
85     NetOpenPanel( QWidget *, intf_thread_t * );
86     virtual ~NetOpenPanel();
87     virtual void clear() ;
88 private:
89     Ui::OpenNetwork ui;
90 public slots:
91     virtual void updateMRL();
92 private slots:
93     void updateProtocol(int);
94     void updateAddress();
95 };
96
97 class DiskOpenPanel: public OpenPanel
98 {
99     Q_OBJECT;
100 public:
101     DiskOpenPanel( QWidget *, intf_thread_t * );
102     virtual ~DiskOpenPanel();
103     virtual void clear() ;
104 private:
105     Ui::OpenDisk ui;
106 public slots:
107     virtual void updateMRL() ;
108 };
109
110
111 class CaptureOpenPanel: public OpenPanel
112 {
113     Q_OBJECT;
114 public:
115     CaptureOpenPanel( QWidget *, intf_thread_t * );
116     virtual ~CaptureOpenPanel();
117     virtual void clear() ;
118 private:
119     Ui::OpenCapture ui;
120 public slots:
121     virtual void updateMRL();
122 };
123
124 #endif