]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/controller.hpp
Qt: respect font sizes
[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
36 #define MAIN_TB1_DEFAULT "64;39;64;38;65"
37 #define MAIN_TB2_DEFAULT "0-2;64;3;1;4;64;7;10;9;64-4;20;19;64-4;37;65;35-4"
38 #define ADV_TB_DEFAULT "12;11;13;14"
39 #define INPT_TB_DEFAULT "5-1;15-1;33;6-1"
40 #define FSC_TB_DEFAULT "0-2;64;3;1;4;64;37;64;38;64;8;65;35-4;34"
41
42 #define I_PLAY_TOOLTIP N_("Play\nIf the playlist is empty, open a medium")
43
44 class QPixmap;
45 class QLabel;
46
47 class QGridLayout;
48 class QHBoxLayout;
49 class QBoxLayout;
50
51 class QAbstractSlider;
52 class QAbstractButton;
53 class InputSlider;
54 class QToolButton;
55
56 class VolumeClickHandler;
57 class WidgetListing;
58
59 class QSignalMapper;
60 class QTimer;
61
62 typedef enum buttonType_e
63 {
64     PLAY_BUTTON,
65     STOP_BUTTON,
66     OPEN_BUTTON,
67     PREVIOUS_BUTTON,
68     NEXT_BUTTON,
69     SLOWER_BUTTON,
70     FASTER_BUTTON,
71     FULLSCREEN_BUTTON,
72     DEFULLSCREEN_BUTTON,
73     EXTENDED_BUTTON,
74     PLAYLIST_BUTTON,
75     SNAPSHOT_BUTTON,
76     RECORD_BUTTON,
77     ATOB_BUTTON,
78     FRAME_BUTTON,
79     REVERSE_BUTTON,
80     SKIP_BACK_BUTTON,
81     SKIP_FW_BUTTON,
82     QUIT_BUTTON,
83     RANDOM_BUTTON,
84     LOOP_BUTTON,
85     INFO_BUTTON,
86     BUTTON_MAX,
87
88     SPLITTER = 0x20,
89     INPUT_SLIDER,
90     TIME_LABEL,
91     VOLUME,
92     VOLUME_SPECIAL,
93     MENU_BUTTONS,
94     TELETEXT_BUTTONS,
95     ADVANCED_CONTROLLER,
96     SPECIAL_MAX,
97
98     WIDGET_SPACER = 0x40,
99     WIDGET_SPACER_EXTEND,
100     WIDGET_MAX,
101 } buttonType_e;
102
103
104 static const char* const nameL[BUTTON_MAX] = { N_("Play"), N_("Stop"), N_("Open"),
105     N_("Previous"), N_("Next"), N_("Slower"), N_("Faster"), N_("Fullscreen"),
106    N_("De-Fullscreen"), N_("Extended panel"), N_("Playlist"), N_("Snapshot"),
107    N_("Record"), N_("A->B Loop"), N_("Frame By Frame"), N_("Trickplay Reverse"),
108    N_("Step backward" ), N_("Step forward"), N_("Quit"), N_("Random"),
109    N_("Loop/Repeat mode"), N_("Information") };
110 static const char* const tooltipL[BUTTON_MAX] = { I_PLAY_TOOLTIP,
111     N_("Stop playback"), N_("Open a medium"),
112     N_("Previous media in the playlist"),
113     N_("Next media in the playlist"), N_("Slower"), N_("Faster"),
114     N_("Toggle the video in fullscreen"), N_("Toggle the video out fullscreen"),
115     N_("Show extended settings" ), N_( "Show playlist" ),
116     N_( "Take a snapshot" ), N_( "Record" ),
117     N_( "Loop from point A to point B continuously." ), N_("Frame by frame"),
118     N_("Reverse"), N_("Step backward"), N_("Step forward"), N_("Quit"),
119     N_("Random"), N_("Change the loop and repeat modes"), N_("Information") };
120 static const QString iconL[BUTTON_MAX] ={ ":/toolbar/play_b", ":/toolbar/stop_b",
121     ":/toolbar/eject", ":/toolbar/previous_b", ":/toolbar/next_b",
122     ":/toolbar/slower", ":/toolbar/faster", ":/toolbar/fullscreen",
123     ":/toolbar/defullscreen", ":/toolbar/extended", ":/toolbar/playlist",
124     ":/toolbar/snapshot", ":/toolbar/record", ":/toolbar/atob_nob",
125     ":/toolbar/frame", ":/toolbar/reverse", ":/toolbar/skip_back",
126     ":/toolbar/skip_fw", ":/toolbar/clear", ":/buttons/playlist/shuffle_on",
127     ":/buttons/playlist/repeat_all", ":/menu/info" };
128
129 enum
130 {
131    WIDGET_NORMAL = 0x0,
132    WIDGET_FLAT   = 0x1,
133    WIDGET_BIG    = 0x2,
134    WIDGET_SHINY  = 0x4,
135 };
136
137 class AdvControlsWidget;
138 class AbstractController : public QFrame
139 {
140     friend class WidgetListing; /* For ToolBar Edition HACKS */
141
142     Q_OBJECT
143 public:
144     AbstractController( intf_thread_t  *_p_i, QWidget *_parent = 0 );
145
146 protected:
147     intf_thread_t       *p_intf;
148
149     QSignalMapper       *toolbarActionsMapper;
150     QHBoxLayout         *controlLayout;
151     /* Change to BoxLayout if both dir are needed */
152
153     AdvControlsWidget   *advControls;
154
155     void parseAndCreate( const QString& config, QBoxLayout *controlLayout );
156
157     virtual void createAndAddWidget( QBoxLayout *controlLayout, int i_index,
158                                      buttonType_e i_type, int i_option );
159
160     QWidget *createWidget( buttonType_e, int options = WIDGET_NORMAL );
161 private:
162     static void setupButton( QAbstractButton * );
163     QFrame *discFrame();
164     QFrame *telexFrame();
165     void applyAttributes( QToolButton *, bool b_flat, bool b_big );
166 protected slots:
167     virtual void setStatus( int );
168
169 signals:
170     void inputExists( bool ); /// This might be usefull in the IM ?
171     void inputPlaying( bool ); /// This might be usefull in the IM ?
172     void inputIsRecordable( bool ); /// same ?
173     void inputIsTrickPlayable( bool ); /// same ?
174     void sizeChanged();
175 };
176
177 /* Advanced Button Bar */
178 class AdvControlsWidget : public AbstractController
179 {
180     Q_OBJECT
181 public:
182     AdvControlsWidget( intf_thread_t *, QWidget *_parent = 0 );
183 };
184
185 /* Slider Bar */
186 class InputControlsWidget : public AbstractController
187 {
188     Q_OBJECT
189 public:
190     InputControlsWidget( intf_thread_t * , QWidget *_parent = 0 );
191 };
192
193 /* Button Bar */
194 class ControlsWidget : public AbstractController
195 {
196     Q_OBJECT
197 public:
198     /* p_intf, advanced control visible or not, blingbling or not */
199     ControlsWidget( intf_thread_t *_p_i, bool b_advControls,
200                     QWidget *_parent = 0 );
201     virtual ~ControlsWidget();
202
203 protected:
204     friend class MainInterface;
205
206     bool                 b_advancedVisible;
207
208 protected slots:
209     void toggleAdvanced();
210
211 signals:
212     void advancedControlsToggled( bool );
213 };
214
215
216 /* to trying transparency with fullscreen controller on windows enable that */
217 /* it can be enabled on-non windows systems,
218    but it will be transparent only with composite manager */
219 #define HAVE_TRANSPARENCY 1
220
221 /* Default value of opacity for FS controller */
222 #define DEFAULT_OPACITY 0.70
223
224 /***********************************
225  * Fullscreen controller
226  ***********************************/
227 class FullscreenControllerWidget : public AbstractController
228 {
229     Q_OBJECT
230 public:
231     FullscreenControllerWidget( intf_thread_t *, QWidget *_parent = 0  );
232     virtual ~FullscreenControllerWidget();
233
234     /* Vout */
235     void fullscreenChanged( vout_thread_t *, bool b_fs, int i_timeout );
236     void mouseChanged( vout_thread_t *, int i_mousex, int i_mousey );
237
238 signals:
239     void keyPressed( QKeyEvent * );
240
241 public slots:
242     void setVoutList( vout_thread_t **, int );
243
244 protected:
245     friend class MainInterface;
246
247     virtual void mouseMoveEvent( QMouseEvent *event );
248     virtual void mousePressEvent( QMouseEvent *event );
249     virtual void mouseReleaseEvent( QMouseEvent *event );
250     virtual void enterEvent( QEvent *event );
251     virtual void leaveEvent( QEvent *event );
252     virtual void keyPressEvent( QKeyEvent *event );
253
254 private slots:
255     void showFSC();
256     void planHideFSC();
257     void hideFSC() { hide(); }
258     void slowHideFSC();
259     void centerFSC( int );
260
261 private:
262     virtual void customEvent( QEvent *event );
263
264     QTimer *p_hideTimer;
265 #if HAVE_TRANSPARENCY
266     QTimer *p_slowHideTimer;
267     bool b_slow_hide_begin;
268     int  i_slow_hide_timeout;
269 #endif
270
271     int i_mouse_last_x, i_mouse_last_y;
272     bool b_mouse_over;
273     int i_screennumber;
274     QRect screenRes;
275
276     /* List of vouts currently tracked */
277     QList<vout_thread_t *> vout;
278
279     /* Shared variable between FSC and VLC (protected by a lock) */
280     vlc_mutex_t lock;
281     bool        b_fullscreen;
282     int         i_hide_timeout;  /* FSC hiding timeout, same as mouse hiding timeout */
283     int i_mouse_last_move_x;
284     int i_mouse_last_move_y;
285 };
286
287 #endif