]> git.sesse.net Git - vlc/blob - modules/gui/qt4/main_interface.hpp
Qt: remove unuseful code.
[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 #include <QStackedWidget>
38
39 class QSettings;
40 class QCloseEvent;
41 class QKeyEvent;
42 class QLabel;
43 class QEvent;
44 class InputManager;
45 class VideoWidget;
46 class BackgroundWidget;
47 class PlaylistWidget;
48 class VisualSelector;
49 class AdvControlsWidget;
50 class ControlsWidget;
51 class InputControlsWidget;
52 class FullscreenControllerWidget;
53 class SpeedControlWidget;
54 class QVBoxLayout;
55 class QMenu;
56 class QSize;
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     /* tors */
73     MainInterface( intf_thread_t *);
74     virtual ~MainInterface();
75
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 );
81
82     /* Getters */
83 #ifndef HAVE_MAEMO
84     QSystemTrayIcon *getSysTray() { return sysTray; }
85     QMenu *getSysTrayMenu() { return systrayMenu; }
86 #endif
87     int getControlsVisibilityStatus();
88     bool isPlDocked() { return ( b_plDocked != false ); }
89
90 protected:
91     void dropEventPlay( QDropEvent *, bool);
92 #ifdef WIN32
93     virtual bool winEvent( MSG *, long * );
94 #endif
95     virtual void dropEvent( QDropEvent *);
96     virtual void dragEnterEvent( QDragEnterEvent * );
97     virtual void dragMoveEvent( QDragMoveEvent * );
98     virtual void dragLeaveEvent( QDragLeaveEvent * );
99     virtual void closeEvent( QCloseEvent *);
100     virtual void customEvent( QEvent *);
101     virtual void keyPressEvent( QKeyEvent *);
102     virtual void wheelEvent( QWheelEvent * );
103
104 private:
105     /* Main Widgets Creation */
106     void createMainWidget( QSettings* );
107     void createStatusBar();
108     void createPlaylist();
109
110     /* Systray */
111     void createSystray();
112     void initSystray();
113     void handleSystray();
114
115     /* Central StackWidget Management */
116     void showTab( QWidget *);
117     void showVideo();
118     void showBg();
119     void restoreStackOldWidget();
120
121     /* */
122     QSettings           *settings;
123 #ifndef HAVE_MAEMO
124     QSystemTrayIcon     *sysTray;
125     QMenu               *systrayMenu;
126 #endif
127
128     QString              input_name;
129     QVBoxLayout         *mainLayout;
130     ControlsWidget      *controls;
131     InputControlsWidget *inputC;
132     FullscreenControllerWidget *fullscreenControls;
133
134     /* Widgets */
135     QStackedWidget      *stackCentralW;
136
137     VideoWidget         *videoWidget;
138     BackgroundWidget    *bgWidget;
139     PlaylistWidget      *playlistWidget;
140     //VisualSelector      *visualSelector;
141
142     /* Status Bar */
143     QLabel              *nameLabel;
144     QLabel              *cryptedLabel;
145
146     /* Status and flags */
147     QWidget             *stackCentralOldWidget;
148
149     /* Flags */
150     bool                 b_notificationEnabled; /// Systray Notifications
151     bool                 b_keep_size;         ///< persistent resizeable window
152     bool                 b_videoEmbedded;   ///< Want an external Video Window
153     bool                 b_hideAfterCreation;
154     int                  i_visualmode;        ///< Visual Mode
155
156     /* States */
157     bool                 playlistVisible;     ///< Is the playlist visible ?
158 //    bool                 videoIsActive;       ///< Having a video now / THEMIM->hasV
159 //    bool                 b_visualSelectorEnabled;
160     bool                 b_plDocked;          ///< Is the playlist docked ?
161
162     QSize                mainBasedSize;       ///< based Wnd (normal mode only)
163     QSize                mainVideoSize;       ///< Wnd with video (all modes)
164
165 #ifdef WIN32
166     HIMAGELIST himl;
167     LPTASKBARLIST3 p_taskbl;
168     UINT taskbar_wmsg;
169     void createTaskBarButtons();
170 #endif
171
172 public slots:
173     void dockPlaylist( bool b_docked = true );
174     void toggleMinimalView( bool );
175     void togglePlaylist();
176 #ifndef HAVE_MAEMO
177     void toggleUpdateSystrayMenu();
178 #endif
179     void toggleAdvancedButtons();
180     void toggleFullScreen();
181     void toggleFSC();
182
183     void popupMenu( const QPoint& );
184     void changeThumbbarButtons( int );
185
186     /* Manage the Video Functions from the vout threads */
187     void getVideoSlot( WId *p_id, int *pi_x, int *pi_y,
188                        unsigned *pi_width, unsigned *pi_height );
189     void releaseVideoSlot( void );
190
191 private slots:
192     void debug();
193     void destroyPopupMenu();
194     void recreateToolbars();
195     void setName( const QString& );
196     void setVLCWindowsTitle( const QString& title = "" );
197 #if 0
198     void visual();
199 #endif
200 #ifndef HAVE_MAEMO
201     void handleSystrayClick( QSystemTrayIcon::ActivationReason );
202     void updateSystrayTooltipName( const QString& );
203     void updateSystrayTooltipStatus( int );
204 #endif
205     void showCryptedLabel( bool );
206
207     void handleKeyPress( QKeyEvent * );
208
209     void showBuffering( float );
210
211     void resizeStack( int w, int h ) {
212         resize( size() - stackCentralW->size() + QSize( w, h ) );
213         debug(); }
214
215
216 signals:
217     void askGetVideo( WId *p_id, int *pi_x, int *pi_y,
218                       unsigned *pi_width, unsigned *pi_height );
219     void askReleaseVideo( );
220     void askVideoToResize( unsigned int, unsigned int );
221     void askVideoSetFullScreen( bool );
222     void minimalViewToggled( bool );
223     void fullscreenInterfaceToggled( bool );
224
225 };
226
227 #endif