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