1 /*****************************************************************************
2 * main_interface.hpp : Main Interface
3 ****************************************************************************
4 * Copyright (C) 2006-2010 VideoLAN and AUTHORS
7 * Authors: Clément Stenac <zorglub@videolan.org>
8 * Jean-Baptiste Kempf <jb@videolan.org>
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23 *****************************************************************************/
25 #ifndef QVLC_MAIN_INTERFACE_H_
26 #define QVLC_MAIN_INTERFACE_H_
30 #include "util/qvlcframe.hpp"
33 #include <vlc_windows_interfaces.h>
36 #include <QSystemTrayIcon>
37 #include <QStackedWidget>
46 class BackgroundWidget;
49 class AdvControlsWidget;
51 class InputControlsWidget;
52 class FullscreenControllerWidget;
53 class SpeedControlWidget;
59 CONTROLS_VISIBLE = 0x1,
60 CONTROLS_HIDDEN = 0x2,
61 CONTROLS_ADVANCED = 0x4,
65 class MainInterface : public QVLCMW
69 friend class PlaylistWidget;
73 MainInterface( intf_thread_t *);
74 virtual ~MainInterface();
76 /* Video requests from core */
77 WId getVideo( int *pi_x, int *pi_y,
78 unsigned int *pi_width, unsigned int *pi_height );
79 void releaseVideo( void );
80 int controlVideo( int i_query, va_list args );
84 QSystemTrayIcon *getSysTray() { return sysTray; }
85 QMenu *getSysTrayMenu() { return systrayMenu; }
87 int getControlsVisibilityStatus();
88 bool isPlDocked() { return ( b_plDocked != false ); }
89 bool isInterfaceFullScreen() { return b_interfaceFullScreen; }
92 void dropEventPlay( QDropEvent *, bool);
94 virtual bool winEvent( MSG *, long * );
96 virtual void changeEvent( QEvent * );
97 virtual void dropEvent( QDropEvent *);
98 virtual void dragEnterEvent( QDragEnterEvent * );
99 virtual void dragMoveEvent( QDragMoveEvent * );
100 virtual void dragLeaveEvent( QDragLeaveEvent * );
101 virtual void closeEvent( QCloseEvent *);
102 virtual void keyPressEvent( QKeyEvent *);
103 virtual void wheelEvent( QWheelEvent * );
106 /* Main Widgets Creation */
107 void createMainWidget( QSettings* );
108 void createStatusBar();
109 void createPlaylist();
112 void createSystray();
114 void handleSystray();
116 /* Central StackWidget Management */
117 void showTab( QWidget *);
119 void restoreStackOldWidget();
122 void setMinimalView( bool );
123 void setInterfaceFullScreen( bool );
124 void computeMinimumSize();
129 QSystemTrayIcon *sysTray;
134 QVBoxLayout *mainLayout;
135 ControlsWidget *controls;
136 InputControlsWidget *inputC;
137 FullscreenControllerWidget *fullscreenControls;
140 QStackedWidget *stackCentralW;
142 VideoWidget *videoWidget;
143 BackgroundWidget *bgWidget;
144 PlaylistWidget *playlistWidget;
145 //VisualSelector *visualSelector;
149 QLabel *cryptedLabel;
151 /* Status and flags */
152 QWidget *stackCentralOldWidget;
154 QMap<QWidget *, QSize> stackWidgetsSizes;
157 bool b_notificationEnabled; /// Systray Notifications
158 bool b_autoresize; ///< persistent resizable window
159 bool b_videoEmbedded; ///< Want an external Video Window
160 bool b_videoFullScreen; ///< --fullscreen
161 bool b_hideAfterCreation;
162 bool b_minimalView; ///< Minimal video
163 bool b_interfaceFullScreen;
166 bool playlistVisible; ///< Is the playlist visible ?
167 // bool videoIsActive; ///< Having a video now / THEMIM->hasV
168 // bool b_visualSelectorEnabled;
169 bool b_plDocked; ///< Is the playlist docked ?
171 bool b_hasPausedWhenMinimized;
172 bool b_statusbarVisible;
176 LPTASKBARLIST3 p_taskbl;
178 void createTaskBarButtons();
182 void dockPlaylist( bool b_docked = true );
183 void toggleMinimalView( bool );
184 void togglePlaylist();
186 void toggleUpdateSystrayMenu();
187 void showUpdateSystrayMenu();
188 void hideUpdateSystrayMenu();
190 void toggleAdvancedButtons();
191 void toggleInterfaceFullScreen();
194 void setStatusBarVisibility(bool b_visible);
196 void popupMenu( const QPoint& );
197 void changeThumbbarButtons( int );
199 /* Manage the Video Functions from the vout threads */
200 void getVideoSlot( WId *p_id, int *pi_x, int *pi_y,
201 unsigned *pi_width, unsigned *pi_height );
202 void releaseVideoSlot( void );
206 void destroyPopupMenu();
207 void recreateToolbars();
208 void setName( const QString& );
209 void setVLCWindowsTitle( const QString& title = "" );
214 void handleSystrayClick( QSystemTrayIcon::ActivationReason );
215 void updateSystrayTooltipName( const QString& );
216 void updateSystrayTooltipStatus( int );
218 void showCryptedLabel( bool );
220 void handleKeyPress( QKeyEvent * );
222 void showBuffering( float );
224 void resizeStack( int w, int h )
226 if( !isFullScreen() && !isMaximized() )
229 resize( w, h ); /* Oh yes, it shouldn't
230 be possible that size() - stackCentralW->size() < 0
231 since stackCentralW is contained in the QMW... */
233 resize( size() - stackCentralW->size() + QSize( w, h ) );
238 void setVideoSize( unsigned int, unsigned int );
239 void setVideoFullScreen( bool );
240 void setVideoOnTop( bool );
243 void askGetVideo( WId *p_id, int *pi_x, int *pi_y,
244 unsigned *pi_width, unsigned *pi_height );
245 void askReleaseVideo( );
246 void askVideoToResize( unsigned int, unsigned int );
247 void askVideoSetFullScreen( bool );
248 void askVideoOnTop( bool );
249 void minimalViewToggled( bool );
250 void fullscreenInterfaceToggled( bool );