]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/interface_widgets.hpp
Qt4 - A to B Loop implementation.
[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 #include <vlc/vlc.h>
30 #include <vlc_interface.h>
31
32 #include <vlc_aout.h>
33 #include "qt4.hpp"
34
35 #include <QWidget>
36 #include <QFrame>
37 #define VOLUME_MAX 200
38
39 class ResizeEvent;
40 class QPalette;
41 class QPixmap;
42 class QLabel;
43 class QHBoxLayout;
44
45 /******************** Video Widget ****************/
46 class VideoWidget : public QFrame
47 {
48     Q_OBJECT
49 public:
50     VideoWidget( intf_thread_t * );
51     virtual ~VideoWidget();
52
53     void *request( vout_thread_t *, int *, int *,
54                    unsigned int *, unsigned int * );
55     void release( void * );
56     int control( void *, int, va_list );
57
58     int i_video_height, i_video_width;
59     vout_thread_t *p_vout;
60
61     QSize widgetSize;
62     virtual QSize sizeHint() const;
63 private:
64     QWidget *frame;
65     intf_thread_t *p_intf;
66     vlc_mutex_t lock;
67 signals:
68     void askResize();
69     void askVideoToShow();
70 private slots:
71     void SetMinSize();
72 };
73
74 /******************** Background Widget ****************/
75 class BackgroundWidget : public QFrame
76 {
77     Q_OBJECT
78 public:
79     BackgroundWidget( intf_thread_t * );
80     virtual ~BackgroundWidget();
81     QSize widgetSize;
82     virtual QSize sizeHint() const;
83 private:
84     QPalette plt;
85     QLabel *label;
86     QHBoxLayout *backgroundLayout;
87     virtual void resizeEvent( QResizeEvent *e );
88     virtual void contextMenuEvent( QContextMenuEvent *event );
89     int DrawBackground();
90     int CleanBackground();
91     intf_thread_t *p_intf;
92 public slots:
93     void setArt( QString );
94     void toggle(){ TOGGLEV( this ); }
95 };
96
97 class VisualSelector : public QFrame
98 {
99     Q_OBJECT
100 public:
101     VisualSelector( intf_thread_t *);
102     virtual ~VisualSelector();
103 private:
104     intf_thread_t *p_intf;
105     QLabel *current;
106 private slots:
107     void prev();
108     void next();
109 };
110
111 /* Advanced Button Bar */
112 class QPushButton;
113 class AdvControlsWidget : public QFrame
114 {
115     Q_OBJECT
116 public:
117     AdvControlsWidget( intf_thread_t *);
118     virtual ~AdvControlsWidget();
119
120     void enableInput( bool );
121     void enableVideo( bool );
122
123 private:
124     intf_thread_t *p_intf;
125     QPushButton *recordButton, *ABButton;
126     QPushButton *snapshotButton, *frameButton;
127
128     mtime_t timeA, timeB;
129
130 private slots:
131     void snapshot();
132     void frame();
133     void fromAtoB();
134     void record();
135     void AtoBLoop( float, int, int );
136 };
137
138 /* Button Bar */
139 class InputSlider;
140 class QSlider;
141 class QGridLayout;
142 class VolumeClickHandler;
143 class ControlsWidget : public QFrame
144 {
145     Q_OBJECT
146 public:
147     ControlsWidget( intf_thread_t *, bool );
148     virtual ~ControlsWidget();
149
150     QPushButton *playlistButton;
151     QSlider *volumeSlider;
152     void setStatus( int );
153     void enableInput( bool );
154     void enableVideo( bool );
155 public slots:
156     void setNavigation( int );
157     void updateOnTimer();
158 protected:
159     friend class MainInterface;
160     friend class VolumeClickHandler;
161 private:
162     intf_thread_t       *p_intf;
163     QFrame              *discFrame;
164     QGridLayout         *controlLayout;
165     InputSlider         *slider;
166     QPushButton         *prevSectionButton, *nextSectionButton, *menuButton;
167     QPushButton         *playButton, *fullscreenButton;
168     QPushButton         *slowerButton, *fasterButton;
169     AdvControlsWidget   *advControls;
170     QLabel              *volMuteLabel;
171
172     bool                 b_advancedVisible;
173 private slots:
174     void play();
175     void stop();
176     void prev();
177     void next();
178     void updateVolume( int );
179     void fullscreen();
180     void extSettings();
181     void faster();
182     void slower();
183     void toggleAdvanced();
184 signals:
185     void advancedControlsToggled( bool );
186 };
187
188 class VolumeClickHandler : public QObject
189 {
190 public:
191     VolumeClickHandler( intf_thread_t *_p_intf, ControlsWidget *_m ) :QObject(_m)
192     {m = _m; p_intf = _p_intf; }
193     virtual ~VolumeClickHandler() {};
194     bool eventFilter( QObject *obj, QEvent *e )
195     {
196         if (e->type() == QEvent::MouseButtonPress  )
197         {
198             aout_VolumeMute( p_intf, NULL );
199             audio_volume_t i_volume;
200             aout_VolumeGet( p_intf, &i_volume );
201             m->updateVolume( i_volume *  VOLUME_MAX / (AOUT_VOLUME_MAX/2) );
202             return true;
203         }
204         return false;
205     }
206 private:
207     ControlsWidget *m;
208     intf_thread_t *p_intf;
209 };
210
211 #include <QLabel>
212 #include <QMouseEvent>
213 class TimeLabel : public QLabel
214 {
215     Q_OBJECT
216     void mousePressEvent( QMouseEvent *event )
217     {
218         emit timeLabelClicked();
219     }
220     void mouseDoubleClickEvent( QMouseEvent *event )
221     {
222         emit timeLabelDoubleClicked();
223     }
224 signals:
225     void timeLabelClicked();
226     void timeLabelDoubleClicked();
227 };
228
229 /******************** Playlist Widgets ****************/
230 #include <QModelIndex>
231 #include <QSplitter>
232 class QSignalMapper;
233 class PLSelector;
234 class PLPanel;
235 class QPushButton;
236
237 class PlaylistWidget : public QSplitter
238 {
239     Q_OBJECT;
240 public:
241     PlaylistWidget( intf_thread_t *_p_i ) ;
242     virtual ~PlaylistWidget();
243 private:
244     PLSelector *selector;
245     PLPanel *rightPanel;
246     QPushButton *addButton;
247     QLabel *art;
248     QString prevArt;
249 protected:
250      intf_thread_t *p_intf;
251 private slots:
252     void setArt( QString );
253 signals:
254     void rootChanged( int );
255     void artSet( QString );
256 };
257
258
259 /******************** Speed Control Widgets ****************/
260 class SpeedControlWidget : public QFrame
261 {
262     Q_OBJECT
263 public:
264     SpeedControlWidget( intf_thread_t *);
265     virtual ~SpeedControlWidget();
266     void updateControls( int );
267 private:
268     intf_thread_t *p_intf;
269     QSlider *speedSlider;
270     QPushButton *normalSpeedButton;
271 private slots:
272     void updateRate( int );
273     void resetRate();
274 };
275
276
277 #endif