]> git.sesse.net Git - vlc/blob - modules/gui/qt4/main_interface.hpp
Qt: use forward declaration when possible and remove includes
[vlc] / modules / gui / qt4 / main_interface.hpp
1 /*****************************************************************************
2  * main_interface.hpp : Main Interface
3  ****************************************************************************
4  * Copyright (C) 2006-2008 the VideoLAN team
5  * $Id$
6  *
7  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
8  *          Jean-Baptiste Kempf <jb@videolan.org>
9  *
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.
14  *
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.
19  *
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  *****************************************************************************/
24
25 #ifndef QVLC_MAIN_INTERFACE_H_
26 #define QVLC_MAIN_INTERFACE_H_
27
28 #include "qt4.hpp"
29
30 #include "util/qvlcframe.hpp"
31
32 #ifdef WIN32
33  #include <vlc_windows_interfaces.h>
34 #endif
35
36 #include <QSystemTrayIcon>
37
38 class QSettings;
39 class QCloseEvent;
40 class QKeyEvent;
41 class QLabel;
42 class QEvent;
43 class InputManager;
44 class VideoWidget;
45 class BackgroundWidget;
46 class PlaylistWidget;
47 class VisualSelector;
48 class AdvControlsWidget;
49 class ControlsWidget;
50 class InputControlsWidget;
51 class FullscreenControllerWidget;
52 class SpeedControlWidget;
53 class QVBoxLayout;
54 class QMenu;
55 class QSize;
56 class QStackedWidget;
57
58 enum {
59     CONTROLS_VISIBLE  = 0x1,
60     CONTROLS_HIDDEN   = 0x2,
61     CONTROLS_ADVANCED = 0x4,
62 };
63
64
65 class MainInterface : public QVLCMW
66 {
67     Q_OBJECT;
68
69     friend class PlaylistWidget;
70
71 public:
72     MainInterface( intf_thread_t *);
73     virtual ~MainInterface();
74
75     /* Video requests from core */
76     WId getVideo( int *pi_x, int *pi_y,
77                   unsigned int *pi_width, unsigned int *pi_height );
78     void releaseVideo( void  );
79     int controlVideo( int i_query, va_list args );
80
81     /* Getters */
82 #ifndef HAVE_MAEMO
83     QSystemTrayIcon *getSysTray() { return sysTray; }
84     QMenu *getSysTrayMenu() { return systrayMenu; }
85 #endif
86     int getControlsVisibilityStatus();
87     bool isPlDocked() { return ( b_plDocked != false ); }
88
89     /* Sizehint() */
90 //    virtual QSize sizeHint() const;
91
92 protected:
93     void dropEventPlay( QDropEvent *, bool);
94 #ifdef WIN32
95     virtual bool winEvent( MSG *, long * );
96 #endif
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 customEvent( QEvent *);
103     virtual void keyPressEvent( QKeyEvent *);
104     virtual void wheelEvent( QWheelEvent * );
105     virtual void resizeEvent( QResizeEvent * event );
106
107 private:
108     /* Main Widgets Creation */
109     void createMainWidget( QSettings* );
110     void createStatusBar();
111     void createPlaylist();
112
113     /* Systray */
114     void createSystray();
115     void handleSystray();
116     void initSystray();
117
118     /* Mess about stackWidget */
119     void showTab( QWidget *);
120     void showVideo();
121     void showBg();
122     void restoreStackOldWidget();
123
124     /* */
125     QSettings           *settings;
126 #ifndef HAVE_MAEMO
127     QSystemTrayIcon     *sysTray;
128     QMenu               *systrayMenu;
129 #endif
130     QString              input_name;
131     QVBoxLayout         *mainLayout;
132     ControlsWidget      *controls;
133     InputControlsWidget *inputC;
134     FullscreenControllerWidget *fullscreenControls;
135
136     /* Widgets */
137     QStackedWidget      *stackCentralW;
138
139     VideoWidget         *videoWidget;
140     BackgroundWidget    *bgWidget;
141     PlaylistWidget      *playlistWidget;
142     //VisualSelector      *visualSelector;
143
144     /* Status Bar */
145     QLabel              *nameLabel;
146     QLabel              *cryptedLabel;
147
148     /* Status and flags */
149     QWidget             *stackCentralOldWidget;
150
151     /* Flags */
152     bool                 b_notificationEnabled; /// Systray Notifications
153     bool                 b_keep_size;         ///< persistent resizeable window
154     bool                 b_videoEmbedded;   ///< Want an external Video Window
155     bool                 b_hideAfterCreation;
156     int                  i_visualmode;        ///< Visual Mode
157
158     /* States */
159     bool                 playlistVisible;     ///< Is the playlist visible ?
160 //    bool                 videoIsActive;       ///< Having a video now / THEMIM->hasV
161 //    bool                 b_visualSelectorEnabled;
162     bool                 b_plDocked;          ///< Is the playlist docked ?
163
164     QSize                mainBasedSize;       ///< based Wnd (normal mode only)
165     QSize                mainVideoSize;       ///< Wnd with video (all modes)
166     int                  i_bg_height;         ///< Save height of bgWidget
167
168 #ifdef WIN32
169     HIMAGELIST himl;
170     LPTASKBARLIST3 p_taskbl;
171     UINT taskbar_wmsg;
172     void createTaskBarButtons();
173 #endif
174
175 public slots:
176     void dockPlaylist( bool b_docked = true );
177     void toggleMinimalView( bool );
178     void togglePlaylist();
179 #ifndef HAVE_MAEMO
180     void toggleUpdateSystrayMenu();
181 #endif
182     void toggleAdvanced();
183     void toggleFullScreen();
184     void toggleFSC();
185     void popupMenu( const QPoint& );
186     void changeThumbbarButtons( int );
187
188     /* Manage the Video Functions from the vout threads */
189     void getVideoSlot( WId *p_id, int *pi_x, int *pi_y,
190                        unsigned *pi_width, unsigned *pi_height );
191     void releaseVideoSlot( void );
192
193 private slots:
194     void debug();
195     void destroyPopupMenu();
196     void recreateToolbars();
197     void doComponentsUpdate();
198     void setName( const QString& );
199     void setVLCWindowsTitle( const QString& title = "" );
200 #if 0
201     void visual();
202 #endif
203 #ifndef HAVE_MAEMO
204     void handleSystrayClick( QSystemTrayIcon::ActivationReason );
205     void updateSystrayTooltipName( const QString& );
206     void updateSystrayTooltipStatus( int );
207 #endif
208     void showCryptedLabel( bool );
209
210     void handleKeyPress( QKeyEvent * );
211
212     void showBuffering( float );
213
214 signals:
215     void askGetVideo( WId *p_id, int *pi_x, int *pi_y,
216                       unsigned *pi_width, unsigned *pi_height );
217     void askReleaseVideo( );
218     void askVideoToResize( unsigned int, unsigned int );
219     void askVideoSetFullScreen( bool );
220     void askUpdate();
221     void minimalViewToggled( bool );
222     void fullscreenInterfaceToggled( bool );
223
224 };
225
226 #endif