]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/interface_widgets.hpp
Update qt4 interface to use new "teletex-es". It fixes the unwanted display
[vlc] / modules / gui / qt4 / components / interface_widgets.hpp
1 /*****************************************************************************
2  * interface_widgets.hpp : Custom widgets for the main interface
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  *          Rafaël Carré <funman@videolanorg>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
24  *****************************************************************************/
25
26 #ifndef _INTFWIDGETS_H_
27 #define _INTFWIDGETS_H_
28
29 #ifdef HAVE_CONFIG_H
30 # include "config.h"
31 #endif
32
33 #include <vlc_common.h>
34 #include <vlc_interface.h>
35 #include <vlc_aout.h>
36
37 #include "qt4.hpp"
38 #include "main_interface.hpp"
39 #include "input_manager.hpp"
40
41 #include <QWidget>
42 #include <QFrame>
43
44 #define VOLUME_MAX 200
45
46 /* on WIN32 hide() for fullscreen controller doesnt work, so it have to be
47    done by trick with setting the opacity of window */
48 #ifdef WIN32
49     #define WIN32TRICK
50 #endif
51
52 /* to trying transparency with fullscreen controller on windows enable that */
53 /* it can be enabled on-non windows systems,
54    but it will be transparent only with composite manager */
55 #ifndef WIN32
56     #define HAVE_TRANSPARENCY 1
57 #else
58     #define HAVE_TRANSPARENCY 0
59 #endif
60
61 /* Default value of opacity for FS controller */
62 #define DEFAULT_OPACITY 0.75
63
64 class ResizeEvent;
65 class QPalette;
66 class QPixmap;
67 class QLabel;
68 class QHBoxLayout;
69
70 /******************** Video Widget ****************/
71 class VideoWidget : public QFrame
72 {
73     Q_OBJECT
74 friend class MainInterface;
75
76 public:
77     VideoWidget( intf_thread_t * );
78     virtual ~VideoWidget();
79
80     void *request( vout_thread_t *, int *, int *,
81                    unsigned int *, unsigned int * );
82     void  release( void * );
83     int   control( void *, int, va_list );
84
85     virtual QSize sizeHint() const;
86 private:
87     intf_thread_t *p_intf;
88     int i_vout;
89
90     QSize videoSize;
91
92 signals:
93     void askVideoWidgetToShow( unsigned int, unsigned int );
94
95 public slots:
96     void SetSizing( unsigned int, unsigned int );
97
98 protected:
99     virtual QPaintEngine *paintEngine() const
100     {
101         return NULL;
102     }
103
104     virtual void paintEvent(QPaintEvent *);
105 };
106
107 /******************** Background Widget ****************/
108 class BackgroundWidget : public QWidget
109 {
110     Q_OBJECT
111 public:
112     BackgroundWidget( intf_thread_t * );
113     virtual ~BackgroundWidget();
114
115 private:
116     QPalette plt;
117     QLabel *label;
118     virtual void contextMenuEvent( QContextMenuEvent *event );
119     intf_thread_t *p_intf;
120     virtual void resizeEvent( QResizeEvent * event );
121 public slots:
122     void toggle(){ TOGGLEV( this ); }
123     void updateArt( QString );
124 };
125
126 class VisualSelector : public QFrame
127 {
128     Q_OBJECT
129 public:
130     VisualSelector( intf_thread_t *);
131     virtual ~VisualSelector();
132 private:
133     intf_thread_t *p_intf;
134     QLabel *current;
135 private slots:
136     void prev();
137     void next();
138 };
139
140 /* Advanced Button Bar */
141 class QPushButton;
142 class AdvControlsWidget : public QFrame
143 {
144     Q_OBJECT
145 public:
146     AdvControlsWidget( intf_thread_t *);
147     virtual ~AdvControlsWidget();
148
149     void enableInput( bool );
150     void enableVideo( bool );
151
152 private:
153     intf_thread_t *p_intf;
154     QPushButton *recordButton, *ABButton;
155     QPushButton *snapshotButton, *frameButton;
156
157     mtime_t timeA, timeB;
158
159 private slots:
160     void snapshot();
161 #if 0
162     void frame();
163 #endif
164     void fromAtoB();
165     void record();
166     void AtoBLoop( float, int, int );
167 };
168
169 /* Button Bar */
170 class InputSlider;
171 class QSlider;
172 class QGridLayout;
173 class VolumeClickHandler;
174 class SoundSlider;
175 class QAbstractSlider;
176 class QToolButton;
177
178 class ControlsWidget : public QFrame
179 {
180     Q_OBJECT
181 public:
182     /* p_intf, advanced control visible or not, blingbling or not */
183     ControlsWidget( intf_thread_t *_p_i, MainInterface *_p_mi,
184         bool b_advControls, bool b_shiny, bool b_fsCreation = false);
185     virtual ~ControlsWidget();
186
187     QPushButton *playlistButton;
188     void setStatus( int );
189     void enableInput( bool );
190     void enableVideo( bool );
191 public slots:
192     void setNavigation( int );
193 protected:
194     friend class MainInterface;
195     friend class VolumeClickHandler;
196 protected:
197     intf_thread_t       *p_intf;
198     QWidget             *discFrame;
199     QWidget             *telexFrame;
200     QGridLayout         *controlLayout;
201     InputSlider         *slider;
202     QPushButton         *prevSectionButton, *nextSectionButton, *menuButton;
203     QPushButton         *playButton, *fullscreenButton, *extSettingsButton;
204     QPushButton         *telexTransparent, *telexOn;
205     QSpinBox            *telexPage;
206     QToolButton         *slowerButton, *fasterButton;
207     QHBoxLayout         *controlButLayout;
208     AdvControlsWidget   *advControls;
209     QLabel              *volMuteLabel;
210     QAbstractSlider     *volumeSlider;
211     VolumeClickHandler  *hVolLabel;
212
213     bool                 b_advancedVisible;
214     bool                 b_telexTransparent;
215     bool                 b_telexEnabled;
216 protected slots:
217     void play();
218     void stop();
219     void prev();
220     void next();
221     void updateVolume( int );
222     void updateVolume( void );
223     void updateInput();
224     void fullscreen();
225     void extSettings();
226     void faster();
227     void slower();
228     void toggleAdvanced();
229     void toggleTeletext();
230     void toggleTeletextTransparency();
231     void enableTeletext( bool );
232 signals:
233     void advancedControlsToggled( bool );
234 };
235
236 /***********************************
237  * Fullscreen controller
238  ***********************************/
239
240 static int showFullscreenControllCallback(vlc_object_t *vlc_object, const char *variable, vlc_value_t old_val,
241     vlc_value_t new_val, void *data);
242
243 static int regMouseMoveCallback(vlc_object_t *vlc_object, const char *variable, vlc_value_t old_val,
244     vlc_value_t new_val, void *data);
245
246 class FullscreenControllerWidget : public ControlsWidget
247 {
248     Q_OBJECT
249 public:
250     FullscreenControllerWidget( intf_thread_t *, MainInterface*, bool, bool );
251     virtual ~FullscreenControllerWidget();
252
253     void setHideTimeout( int hideTimeout ) { i_hideTimeout = hideTimeout; }
254     void setIsFullscreen( bool isFS ) { b_isFullscreen = isFS; }
255     void regFullscreenCallback( vout_thread_t *p_vout );
256
257     bool isFSCHidden();
258
259 public slots:
260     void unregFullscreenCallback();
261
262 protected:
263     friend class MainInterface;
264     friend class VolumeClickHandler;
265
266     virtual void mouseMoveEvent( QMouseEvent *event );
267     virtual void mousePressEvent( QMouseEvent *event );
268     virtual void enterEvent( QEvent *event );
269     virtual void leaveEvent( QEvent *event );
270     virtual void keyPressEvent( QKeyEvent *event );
271
272 private slots:
273     void hideFSControllerWidget();
274     void slowHideFSC();
275
276 private:
277     QTimer *p_hideTimer;
278
279 #if HAVE_TRANSPARENCY
280     QTimer *p_slowHideTimer;
281 #endif
282
283     int i_lastPosX;
284     int i_lastPosY;
285     int i_hideTimeout;  /* FSC hiding timeout, same as mouse hiding timeout */
286     bool b_mouseIsOver;
287     bool b_isFullscreen;
288
289 #ifdef WIN32TRICK
290     bool fscHidden;
291 #endif
292
293     virtual void customEvent( QEvent *event );
294 };
295
296
297
298 class VolumeClickHandler : public QObject
299 {
300 public:
301     VolumeClickHandler( intf_thread_t *_p_intf, ControlsWidget *_m ) :QObject(_m)
302     {m = _m; p_intf = _p_intf; }
303     virtual ~VolumeClickHandler() {};
304     bool eventFilter( QObject *obj, QEvent *e )
305     {
306         if (e->type() == QEvent::MouseButtonPress  )
307         {
308             aout_VolumeMute( p_intf, NULL );
309             audio_volume_t i_volume;
310             aout_VolumeGet( p_intf, &i_volume );
311             m->updateVolume( i_volume *  VOLUME_MAX / (AOUT_VOLUME_MAX/2) );
312             return true;
313         }
314         return false;
315     }
316 private:
317     ControlsWidget *m;
318     intf_thread_t *p_intf;
319 };
320
321 #include <QLabel>
322 #include <QMouseEvent>
323 class TimeLabel : public QLabel
324 {
325     Q_OBJECT
326     void mousePressEvent( QMouseEvent *event )
327     {
328         emit timeLabelClicked();
329     }
330     void mouseDoubleClickEvent( QMouseEvent *event )
331     {
332         emit timeLabelDoubleClicked();
333     }
334 signals:
335     void timeLabelClicked();
336     void timeLabelDoubleClicked();
337 };
338
339 class SpeedLabel : public QLabel
340 {
341     Q_OBJECT
342 public:
343     SpeedLabel( intf_thread_t *_p_intf, const QString text ): QLabel( text)
344     { p_intf = _p_intf; }
345
346 protected:
347     virtual void mouseDoubleClickEvent ( QMouseEvent * event )
348     {
349         THEMIM->getIM()->setRate( INPUT_RATE_DEFAULT );
350     }
351 private:
352     intf_thread_t *p_intf;
353 };
354
355 /******************** Speed Control Widgets ****************/
356 class SpeedControlWidget : public QFrame
357 {
358     Q_OBJECT
359 public:
360     SpeedControlWidget( intf_thread_t *);
361     virtual ~SpeedControlWidget();
362     void updateControls( int );
363 private:
364     intf_thread_t *p_intf;
365     QSlider *speedSlider;
366 public slots:
367     void setEnable( bool );
368 private slots:
369     void updateRate( int );
370     void resetRate();
371 };
372
373 #endif