]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/controller.hpp
1b796b7603a641305f9d757535b1feeb62ad97ae
[vlc] / modules / gui / qt4 / components / controller.hpp
1 /*****************************************************************************
2  * Controller.hpp : Controller for the main interface
3  ****************************************************************************
4  * Copyright (C) 2006-2008 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Jean-Baptiste Kempf <jb@videolan.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #ifndef QVLC_CONTROLLER_H_
25 #define QVLC_CONTROLLER_H_
26
27 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
30
31 #include "qt4.hpp"
32
33 #include <QFrame>
34 #include <QString>
35 #include <QSizeGrip>
36
37 #define MAIN_TB1_DEFAULT "64;39;64;38;65"
38 #define MAIN_TB2_DEFAULT "0-2;64;3;1;4;64;7;9;64;10;20;19;64-4;37;65;35-4"
39 #define ADV_TB_DEFAULT "12;11;13;14"
40 #define INPT_TB_DEFAULT "5-1;15-1;33;6-1"
41 #define FSC_TB_DEFAULT "0-2;64;3;1;4;64;37;64;38;64;8;65;25;35-4;34"
42
43 #define I_PLAY_TOOLTIP N_("Play\nIf the playlist is empty, open a medium")
44
45 class QPixmap;
46 class QLabel;
47
48 class QGridLayout;
49 class QHBoxLayout;
50 class QBoxLayout;
51
52 class QAbstractSlider;
53 class QAbstractButton;
54 class SeekSlider;
55 class QToolButton;
56
57 class VolumeClickHandler;
58 class WidgetListing;
59
60 class QSignalMapper;
61 class QTimer;
62
63 typedef enum buttonType_e
64 {
65     PLAY_BUTTON,
66     STOP_BUTTON,
67     OPEN_BUTTON,
68     PREV_SLOW_BUTTON,
69     NEXT_FAST_BUTTON,
70     SLOWER_BUTTON,
71     FASTER_BUTTON,
72     FULLSCREEN_BUTTON,
73     DEFULLSCREEN_BUTTON,
74     EXTENDED_BUTTON,
75     PLAYLIST_BUTTON,
76     SNAPSHOT_BUTTON,
77     RECORD_BUTTON,
78     ATOB_BUTTON,
79     FRAME_BUTTON,
80     REVERSE_BUTTON,
81     SKIP_BACK_BUTTON,
82     SKIP_FW_BUTTON,
83     QUIT_BUTTON,
84     RANDOM_BUTTON,
85     LOOP_BUTTON,
86     INFO_BUTTON,
87     PREVIOUS_BUTTON,
88     NEXT_BUTTON,
89     OPEN_SUB_BUTTON,
90     FULLWIDTH_BUTTON,
91     BUTTON_MAX,
92
93     SPLITTER = 0x20,
94     INPUT_SLIDER,
95     TIME_LABEL,
96     VOLUME,
97     VOLUME_SPECIAL,
98     MENU_BUTTONS,
99     TELETEXT_BUTTONS,
100     ADVANCED_CONTROLLER,
101     PLAYBACK_BUTTONS,
102     SPECIAL_MAX,
103
104     WIDGET_SPACER = 0x40,
105     WIDGET_SPACER_EXTEND,
106     WIDGET_MAX,
107 } buttonType_e;
108
109
110 static const char* const nameL[BUTTON_MAX] = { N_("Play"), N_("Stop"), N_("Open"),
111     N_("Previous/Backward"), N_("Next/Forward"), N_("Slower"), N_("Faster"), N_("Fullscreen"),
112     N_("De-Fullscreen"), N_("Extended panel"), N_("Playlist"), N_("Snapshot"),
113     N_("Record"), N_("A->B Loop"), N_("Frame By Frame"), N_("Trickplay Reverse"),
114     N_("Step backward" ), N_("Step forward"), N_("Quit"), N_("Random"),
115     N_("Loop/Repeat mode"), N_("Information"), N_("Previous"), N_("Next"),
116     N_("Open subtitles file"), N_("Fullscreen controller width toggle")
117 };
118 static const char* const tooltipL[BUTTON_MAX] = { I_PLAY_TOOLTIP,
119     N_("Stop playback"), N_("Open a medium"),
120     N_("Previous media in the playlist, skip backward when keep-pressed"),
121     N_("Next media in the playlist, skip forward when keep-pressed"), N_("Slower"), N_("Faster"),
122     N_("Toggle the video in fullscreen"), N_("Toggle the video out fullscreen"),
123     N_("Show extended settings" ), N_( "Show playlist" ),
124     N_( "Take a snapshot" ), N_( "Record" ),
125     N_( "Loop from point A to point B continuously." ), N_("Frame by frame"),
126     N_("Reverse"), N_("Step backward"), N_("Step forward"), N_("Quit"),
127     N_("Random"), N_("Change the loop and repeat modes"), N_("Information"),
128     N_("Previous media in the playlist"), N_("Next media in the playlist"),
129     N_("Open subtitles file"),
130     N_("Dock/undock fullscreen controller to/from bottom of screen")
131 };
132 static const QString iconL[BUTTON_MAX] ={ ":/toolbar/play_b", ":/toolbar/stop_b",
133     ":/toolbar/eject", ":/toolbar/previous_b", ":/toolbar/next_b",
134     ":/toolbar/slower", ":/toolbar/faster", ":/toolbar/fullscreen",
135     ":/toolbar/defullscreen", ":/toolbar/extended", ":/toolbar/playlist",
136     ":/toolbar/snapshot", ":/toolbar/record", ":/toolbar/atob_nob",
137     ":/toolbar/frame", ":/toolbar/reverse", ":/toolbar/skip_back",
138     ":/toolbar/skip_fw", ":/toolbar/clear", ":/buttons/playlist/shuffle_on",
139     ":/buttons/playlist/repeat_all", ":/menu/info",
140     ":/toolbar/previous_b", ":/toolbar/next_b", "", ":/toolbar/space"
141 };
142
143 enum
144 {
145    WIDGET_NORMAL = 0x0,
146    WIDGET_FLAT   = 0x1,
147    WIDGET_BIG    = 0x2,
148    WIDGET_SHINY  = 0x4,
149 };
150
151 class AdvControlsWidget;
152 class AbstractController : public QFrame
153 {
154     friend class WidgetListing; /* For ToolBar Edition HACKS */
155
156     Q_OBJECT
157 public:
158     AbstractController( intf_thread_t  *_p_i, QWidget *_parent = 0 );
159
160 protected:
161     intf_thread_t       *p_intf;
162
163     QSignalMapper       *toolbarActionsMapper;
164     QHBoxLayout         *controlLayout;
165     /* Change to BoxLayout if both dir are needed */
166
167     AdvControlsWidget   *advControls;
168
169     void parseAndCreate( const QString& config, QBoxLayout *controlLayout );
170
171     virtual void createAndAddWidget( QBoxLayout *controlLayout, int i_index,
172                                      buttonType_e i_type, int i_option );
173
174     QWidget *createWidget( buttonType_e, int options = WIDGET_NORMAL );
175 private:
176     static void setupButton( QAbstractButton * );
177     QFrame *discFrame();
178     QFrame *telexFrame();
179     void applyAttributes( QToolButton *, bool b_flat, bool b_big );
180
181     QHBoxLayout         *buttonGroupLayout;
182 protected slots:
183     virtual void setStatus( int );
184
185 signals:
186     void inputExists( bool ); /// This might be useful in the IM ?
187     void inputPlaying( bool ); /// This might be useful in the IM ?
188     void inputIsRecordable( bool ); /// same ?
189     void inputIsTrickPlayable( bool ); /// same ?
190 };
191
192 /* Advanced Button Bar */
193 class AdvControlsWidget : public AbstractController
194 {
195     Q_OBJECT
196 public:
197     AdvControlsWidget( intf_thread_t *, QWidget *_parent = 0 );
198 };
199
200 /* Slider Bar */
201 class InputControlsWidget : public AbstractController
202 {
203     Q_OBJECT
204 public:
205     InputControlsWidget( intf_thread_t * , QWidget *_parent = 0 );
206 };
207
208 /* Button Bar */
209 class ControlsWidget : public AbstractController
210 {
211     Q_OBJECT
212 public:
213     /* p_intf, advanced control visible or not, blingbling or not */
214     ControlsWidget( intf_thread_t *_p_i, bool b_advControls,
215                     QWidget *_parent = 0 );
216
217     void setGripVisible( bool b_visible )
218     { grip->setVisible( b_visible ); }
219
220 protected:
221     friend class MainInterface;
222
223     bool b_advancedVisible;
224
225 private:
226     QSizeGrip *grip;
227
228 protected slots:
229     void toggleAdvanced();
230
231 signals:
232     void advancedControlsToggled( bool );
233 };
234
235
236 /* to trying transparency with fullscreen controller on windows enable that */
237 /* it can be enabled on-non windows systems,
238    but it will be transparent only with composite manager */
239 #define HAVE_TRANSPARENCY 1
240
241 /* Default value of opacity for FS controller */
242 #define DEFAULT_OPACITY 0.70
243
244 /***********************************
245  * Fullscreen controller
246  ***********************************/
247 class FullscreenControllerWidget : public AbstractController
248 {
249     Q_OBJECT
250 public:
251     FullscreenControllerWidget( intf_thread_t *, QWidget *_parent = 0  );
252     virtual ~FullscreenControllerWidget();
253
254     /* Vout */
255     void fullscreenChanged( vout_thread_t *, bool b_fs, int i_timeout );
256     void mouseChanged( vout_thread_t *, int i_mousex, int i_mousey );
257     void toggleFullwidth();
258
259 signals:
260     void keyPressed( QKeyEvent * );
261
262 public slots:
263     void setVoutList( vout_thread_t **, int );
264
265 protected:
266     friend class MainInterface;
267
268     virtual void mouseMoveEvent( QMouseEvent *event );
269     virtual void mousePressEvent( QMouseEvent *event );
270     virtual void mouseReleaseEvent( QMouseEvent *event );
271     virtual void enterEvent( QEvent *event );
272     virtual void leaveEvent( QEvent *event );
273     virtual void keyPressEvent( QKeyEvent *event );
274
275     virtual void customEvent( QEvent *event );
276
277 private slots:
278     void showFSC();
279     void planHideFSC();
280     void hideFSC() { hide(); }
281     void slowHideFSC();
282     void centerFSC( int );
283
284 private:
285     QTimer *p_hideTimer;
286 #if HAVE_TRANSPARENCY
287     QTimer *p_slowHideTimer;
288     bool b_slow_hide_begin;
289     int  i_slow_hide_timeout;
290     float f_opacity;
291 #endif
292
293     int i_mouse_last_x, i_mouse_last_y;
294     bool b_mouse_over;
295     int i_screennumber;
296     QRect screenRes;
297
298     /* List of vouts currently tracked */
299     QList<vout_thread_t *> vout;
300
301     /* Shared variable between FSC and VLC (protected by a lock) */
302     vlc_mutex_t lock;
303     bool        b_fullscreen;
304     int         i_hide_timeout;  /* FSC hiding timeout, same as mouse hiding timeout */
305     int i_mouse_last_move_x;
306     int i_mouse_last_move_y;
307
308     bool isWideFSC;
309 };
310
311 #endif