1 /*****************************************************************************
2 * Controller.hpp : Controller for the main interface
3 ****************************************************************************
4 * Copyright (C) 2006-2008 the VideoLAN team
7 * Authors: Jean-Baptiste Kempf <jb@videolan.org>
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.
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.
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 *****************************************************************************/
24 #ifndef QVLC_CONTROLLER_H_
25 #define QVLC_CONTROLLER_H_
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"
42 #define I_PLAY_TOOLTIP N_("Play\nIf the playlist is empty, open a medium")
51 class QAbstractSlider;
52 class QAbstractButton;
56 class VolumeClickHandler;
62 typedef enum buttonType_e
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" };
137 class AdvControlsWidget;
138 class AbstractController : public QFrame
140 friend class WidgetListing; /* For ToolBar Edition HACKS */
144 AbstractController( intf_thread_t *_p_i, QWidget *_parent = 0 );
147 intf_thread_t *p_intf;
149 QSignalMapper *toolbarActionsMapper;
150 QHBoxLayout *controlLayout;
151 /* Change to BoxLayout if both dir are needed */
153 AdvControlsWidget *advControls;
155 void parseAndCreate( const QString& config, QBoxLayout *controlLayout );
157 virtual void createAndAddWidget( QBoxLayout *controlLayout, int i_index,
158 buttonType_e i_type, int i_option );
160 QWidget *createWidget( buttonType_e, int options = WIDGET_NORMAL );
162 static void setupButton( QAbstractButton * );
164 QFrame *telexFrame();
165 void applyAttributes( QToolButton *, bool b_flat, bool b_big );
167 virtual void setStatus( int );
170 void inputExists( bool ); /// This might be useful in the IM ?
171 void inputPlaying( bool ); /// This might be useful in the IM ?
172 void inputIsRecordable( bool ); /// same ?
173 void inputIsTrickPlayable( bool ); /// same ?
176 /* Advanced Button Bar */
177 class AdvControlsWidget : public AbstractController
181 AdvControlsWidget( intf_thread_t *, QWidget *_parent = 0 );
185 class InputControlsWidget : public AbstractController
189 InputControlsWidget( intf_thread_t * , QWidget *_parent = 0 );
193 class ControlsWidget : public AbstractController
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();
203 friend class MainInterface;
205 bool b_advancedVisible;
208 void toggleAdvanced();
211 void advancedControlsToggled( bool );
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
220 /* Default value of opacity for FS controller */
221 #define DEFAULT_OPACITY 0.70
223 /***********************************
224 * Fullscreen controller
225 ***********************************/
226 class FullscreenControllerWidget : public AbstractController
230 FullscreenControllerWidget( intf_thread_t *, QWidget *_parent = 0 );
231 virtual ~FullscreenControllerWidget();
234 void fullscreenChanged( vout_thread_t *, bool b_fs, int i_timeout );
235 void mouseChanged( vout_thread_t *, int i_mousex, int i_mousey );
238 void keyPressed( QKeyEvent * );
241 void setVoutList( vout_thread_t **, int );
244 friend class MainInterface;
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 );
256 void hideFSC() { hide(); }
258 void centerFSC( int );
261 virtual void customEvent( QEvent *event );
264 #if HAVE_TRANSPARENCY
265 QTimer *p_slowHideTimer;
266 bool b_slow_hide_begin;
267 int i_slow_hide_timeout;
270 int i_mouse_last_x, i_mouse_last_y;
275 /* List of vouts currently tracked */
276 QList<vout_thread_t *> vout;
278 /* Shared variable between FSC and VLC (protected by a lock) */
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;