]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/interface_widgets.hpp
Merge branch 'master' of git@git.videolan.org:vlc
[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     vout_thread_t *p_vout;
89
90     vlc_mutex_t lock;
91     QSize videoSize;
92
93 signals:
94     void askVideoWidgetToShow( unsigned int, unsigned int );
95
96 public slots:
97     void SetSizing( unsigned int, unsigned int );
98
99 protected:
100     virtual QPaintEngine *paintEngine() const
101     {
102         return NULL;
103     }
104
105     virtual void paintEvent(QPaintEvent *);
106 };
107
108 /******************** Background Widget ****************/
109 class BackgroundWidget : public QWidget
110 {
111     Q_OBJECT
112 public:
113     BackgroundWidget( intf_thread_t * );
114     virtual ~BackgroundWidget();
115
116 private:
117     QPalette plt;
118     QLabel *label;
119     virtual void contextMenuEvent( QContextMenuEvent *event );
120     intf_thread_t *p_intf;
121     virtual void resizeEvent( QResizeEvent * event );
122 public slots:
123     void toggle(){ TOGGLEV( this ); }
124     void updateArt( QString );
125 };
126
127 class VisualSelector : public QFrame
128 {
129     Q_OBJECT
130 public:
131     VisualSelector( intf_thread_t *);
132     virtual ~VisualSelector();
133 private:
134     intf_thread_t *p_intf;
135     QLabel *current;
136 private slots:
137     void prev();
138     void next();
139 };
140
141 /* Advanced Button Bar */
142 class QPushButton;
143 class AdvControlsWidget : public QFrame
144 {
145     Q_OBJECT
146 public:
147     AdvControlsWidget( intf_thread_t *);
148     virtual ~AdvControlsWidget();
149
150     void enableInput( bool );
151     void enableVideo( bool );
152
153 private:
154     intf_thread_t *p_intf;
155     QPushButton *recordButton, *ABButton;
156     QPushButton *snapshotButton, *frameButton;
157
158     mtime_t timeA, timeB;
159
160 private slots:
161     void snapshot();
162 #if 0
163     void frame();
164 #endif
165     void fromAtoB();
166     void record();
167     void AtoBLoop( float, int, int );
168 };
169
170 /* Button Bar */
171 class InputSlider;
172 class QSlider;
173 class QGridLayout;
174 class VolumeClickHandler;
175 class SoundSlider;
176 class QAbstractSlider;
177 class QToolButton;
178
179 class ControlsWidget : public QFrame
180 {
181     Q_OBJECT
182 public:
183     /* p_intf, advanced control visible or not, blingbling or not */
184     ControlsWidget( intf_thread_t *_p_i, MainInterface *_p_mi,
185         bool b_advControls, bool b_shiny, bool b_fsCreation = false);
186     virtual ~ControlsWidget();
187
188     QPushButton *playlistButton;
189     void setStatus( int );
190     void enableInput( bool );
191     void enableVideo( bool );
192 public slots:
193     void setNavigation( int );
194 protected:
195     friend class MainInterface;
196     friend class VolumeClickHandler;
197 protected:
198     intf_thread_t       *p_intf;
199     QWidget             *discFrame;
200     QWidget             *telexFrame;
201     QGridLayout         *controlLayout;
202     InputSlider         *slider;
203     QPushButton         *prevSectionButton, *nextSectionButton, *menuButton;
204     QPushButton         *playButton, *fullscreenButton, *extSettingsButton;
205     QPushButton         *telexTransparent, *telexOn;
206     QSpinBox            *telexPage;
207     QToolButton         *slowerButton, *fasterButton;
208     QHBoxLayout         *controlButLayout;
209     AdvControlsWidget   *advControls;
210     QLabel              *volMuteLabel;
211     QAbstractSlider     *volumeSlider;
212     VolumeClickHandler  *hVolLabel;
213
214     bool                 b_advancedVisible;
215     bool                 b_telexTransparent;
216     bool                 b_telexEnabled;
217 protected slots:
218     void play();
219     void stop();
220     void prev();
221     void next();
222     void updateVolume( int );
223     void updateVolume( void );
224     void updateInput();
225     void fullscreen();
226     void extSettings();
227     void faster();
228     void slower();
229     void toggleAdvanced();
230     void toggleTeletext();
231     void toggleTeletextTransparency();
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