]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/open_panels.hpp
Qt: re-probe the disc drives on each change of FocusPanel()
[vlc] / modules / gui / qt4 / components / open_panels.hpp
1 /*****************************************************************************
2  * open.hpp : Panels for the open dialogs
3  ****************************************************************************
4  * Copyright (C) 2006-2009 the VideoLAN team
5  * Copyright (C) 2007 Société des arts technologiques
6  * Copyright (C) 2007 Savoir-faire Linux
7  * $Id$
8  *
9  * Authors: Clément Stenac <zorglub@videolan.org>
10  *          Jean-Baptiste Kempf <jb@videolan.org>
11  *          Pierre-Luc Beaudoin <pierre-luc.beaudoin@savoirfairelinux.com>
12  *
13  * This program is free software; you can redistribute it and/or modify
14  * it under the terms of the GNU General Public License as published by
15  * the Free Software Foundation; either version 2 of the License, or
16  * (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software
25  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
26  *****************************************************************************/
27
28 #ifndef _OPENPANELS_H_
29 #define _OPENPANELS_H_
30
31 #ifdef HAVE_CONFIG_H
32 # include "config.h"
33 #endif
34
35 #include "components/preferences_widgets.hpp"
36
37 #include "ui/open_file.h"
38 #include "ui/open_disk.h"
39 #include "ui/open_net.h"
40 #include "ui/open_capture.h"
41
42 #include <QFileDialog>
43
44 #include <limits.h>
45
46 #define setSpinBoxFreq( spinbox ){ spinbox->setRange ( 0, INT_MAX ); \
47     spinbox->setAccelerated( true ); }
48
49 enum
50 {
51     V4L2_DEVICE,
52     PVR_DEVICE,
53     DTV_DEVICE,
54     DSHOW_DEVICE,
55     SCREEN_DEVICE,
56     JACK_DEVICE
57 };
58
59 class QWidget;
60 class QLineEdit;
61 class QString;
62 class QStringListModel;
63 class QEvent;
64
65 class OpenPanel: public QWidget
66 {
67     Q_OBJECT
68 public:
69     OpenPanel( QWidget *p, intf_thread_t *_p_intf ) : QWidget( p )
70     {
71         p_intf = _p_intf;
72     }
73     virtual ~OpenPanel() {};
74     virtual void clear() = 0;
75     virtual void onFocus() {}
76     virtual void onAccept() {}
77 protected:
78     intf_thread_t *p_intf;
79 public slots:
80     virtual void updateMRL() = 0;
81 signals:
82     void mrlUpdated( const QStringList&, const QString& );
83     void methodChanged( const QString& method );
84 };
85
86 class FileOpenBox: public QFileDialog
87 {
88     Q_OBJECT
89 public:
90     FileOpenBox( QWidget *parent, const QString &caption,
91                  const QString &directory, const QString &filter ):
92                 QFileDialog( parent, caption, directory, filter ) {}
93 public slots:
94     void accept(){}
95     void reject(){}
96 };
97
98
99 class FileOpenPanel: public OpenPanel
100 {
101     Q_OBJECT
102 public:
103     FileOpenPanel( QWidget *, intf_thread_t * );
104     virtual ~FileOpenPanel();
105     virtual void clear() ;
106     virtual void accept() ;
107 protected:
108     bool eventFilter(QObject *, QEvent *event)
109     {
110         if( event->type() == QEvent::Hide ||
111             event->type() == QEvent::HideToParent )
112         {
113             event->accept();
114             return true;
115         }
116         return false;
117     }
118     virtual void dropEvent( QDropEvent *);
119     virtual void dragEnterEvent( QDragEnterEvent * );
120     virtual void dragMoveEvent( QDragMoveEvent * );
121     virtual void dragLeaveEvent( QDragLeaveEvent * );
122 private:
123     Ui::OpenFile ui;
124     FileOpenBox *dialogBox;
125     void BuildOldPanel();
126 public slots:
127     virtual void updateMRL();
128 private slots:
129     void browseFileSub();
130     void browseFile();
131     void removeFile();
132     void updateButtons();
133     void toggleSubtitleFrame( bool );
134 };
135
136 class NetOpenPanel: public OpenPanel
137 {
138     Q_OBJECT
139 public:
140     NetOpenPanel( QWidget *, intf_thread_t * );
141     virtual ~NetOpenPanel();
142     virtual void clear() ;
143     void onFocus();
144     void onAccept();
145 private:
146     Ui::OpenNetwork ui;
147     bool b_recentList;
148 public slots:
149     virtual void updateMRL();
150 };
151
152 class UrlValidator : public QValidator
153 {
154    Q_OBJECT
155 public:
156    UrlValidator( QObject *parent ) : QValidator( parent ) { }
157    void fixup( QString& ) const;
158    QValidator::State validate( QString&, int& ) const;
159 };
160
161 class DiscOpenPanel: public OpenPanel
162 {
163     Q_OBJECT
164     enum    DiscType
165     {
166         None,
167         Dvd,
168         Vcd,
169         Cdda,
170         BRD
171     };
172 public:
173     DiscOpenPanel( QWidget *, intf_thread_t * );
174     virtual ~DiscOpenPanel();
175     virtual void clear() ;
176     virtual void accept() ;
177     void onFocus();
178 private:
179     Ui::OpenDisk ui;
180     char *psz_dvddiscpath, *psz_vcddiscpath, *psz_cddadiscpath;
181     DiscType m_discType;
182 public slots:
183     virtual void updateMRL() ;
184 private slots:
185     void browseDevice();
186     void updateButtons() ;
187     void eject();
188 };
189
190
191 class CaptureOpenPanel: public OpenPanel
192 {
193     Q_OBJECT
194 public:
195     CaptureOpenPanel( QWidget *, intf_thread_t * );
196     virtual ~CaptureOpenPanel();
197     virtual void clear() ;
198 private:
199     Ui::OpenCapture ui;
200     bool isInitialized;
201
202     QString advMRL;
203     QDialog *adv;
204 #ifdef WIN32
205     StringListConfigControl *vdevDshowW, *adevDshowW;
206     QLineEdit *dshowVSizeLine;
207 #else
208     QSpinBox  *pvrFreq, *pvrBitr;
209     QComboBox *v4l2VideoDevice, *v4l2AudioDevice;
210     QLineEdit *pvrDevice, *pvrRadioDevice;
211     QComboBox *v4l2StdBox, *pvrNormBox;
212     QSpinBox *jackChannels;
213     QCheckBox *jackPace, *jackConnect;
214     QLineEdit *jackPortsSelected;
215 #endif
216     QRadioButton *dvbc, *dvbs, *dvbs2, *dvbt, *dvbt2, *atsc, *cqam;
217     QLabel *dvbBandLabel, *dvbSrateLabel, *dvbModLabel;
218     QComboBox *dvbQamBox, *dvbPskBox, *dvbBandBox;
219     QSpinBox *dvbCard, *dvbFreq, *dvbSrate;
220     QDoubleSpinBox *screenFPS;
221
222 public slots:
223     virtual void updateMRL();
224     void initialize();
225 private slots:
226     void updateButtons();
227     void advancedDialog();
228 };
229
230 #endif