]> git.sesse.net Git - vlc/blob - modules/gui/qt4/main_interface.hpp
VLC pointer variable callback -> Qt4 signal class
[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 _MAIN_INTERFACE_H_
26 #define _MAIN_INTERFACE_H_
27
28 #include "qt4.hpp"
29
30 #include "util/qvlcframe.hpp"
31 #include "components/preferences_widgets.hpp" /* First Start */
32
33 #include <QSystemTrayIcon>
34
35 class QSettings;
36 class QCloseEvent;
37 class QKeyEvent;
38 class QLabel;
39 class QEvent;
40 class InputManager;
41 class VideoWidget;
42 class BackgroundWidget;
43 class PlaylistWidget;
44 class VisualSelector;
45 class AdvControlsWidget;
46 class ControlsWidget;
47 class InputControlsWidget;
48 class FullscreenControllerWidget;
49 class SpeedControlWidget;
50 class QMenu;
51 class QSize;
52 class DialogHandler;
53
54 enum {
55     CONTROLS_VISIBLE = 0x1,
56     CONTROLS_HIDDEN = 0x2,
57     CONTROLS_ADVANCED = 0x4,
58 };
59
60 typedef enum pl_dock_e {
61     PL_UNDOCKED,
62     PL_BOTTOM,
63     PL_RIGHT,
64     PL_LEFT
65 } pl_dock_e;
66
67 class MainInterface : public QVLCMW
68 {
69     Q_OBJECT;
70
71     friend class InteractionDialog;
72     friend class PlaylistWidget;
73
74 public:
75     MainInterface( intf_thread_t *);
76     virtual ~MainInterface();
77
78     /* Video requests from core */
79     WId requestVideo( vout_thread_t *p_nvout, int *pi_x,
80                       int *pi_y, unsigned int *pi_width,
81                       unsigned int *pi_height );
82     void releaseVideo( void  );
83     int controlVideo( int i_query, va_list args );
84
85     /* Getters */
86     QSystemTrayIcon *getSysTray() { return sysTray; };
87     QMenu *getSysTrayMenu() { return systrayMenu; };
88     int getControlsVisibilityStatus();
89
90     /* Sizehint() */
91     virtual QSize sizeHint() const;
92
93 protected:
94 //    void resizeEvent( QResizeEvent * );
95     void dropEvent( QDropEvent *);
96     void dropEventPlay( QDropEvent *, bool);
97     void dragEnterEvent( QDragEnterEvent * );
98     void dragMoveEvent( QDragMoveEvent * );
99     void dragLeaveEvent( QDragLeaveEvent * );
100     void closeEvent( QCloseEvent *);
101
102 private:
103     QSettings           *settings;
104     QSystemTrayIcon     *sysTray;
105     QMenu               *systrayMenu;
106     QString              input_name;
107     QVBoxLayout         *mainLayout;
108     ControlsWidget      *controls;
109     InputControlsWidget *inputC;
110     FullscreenControllerWidget *fullscreenControls;
111     DialogHandler       *dialogHandler;
112
113     void handleMainUi( QSettings* );
114     void askForPrivacy();
115     int  privacyDialog( QList<ConfigControl *> *controls );
116
117     /* Systray */
118     void handleSystray();
119     void createSystray();
120     void initSystray();
121
122     void createStatusBar();
123
124     /* Video */
125     VideoWidget         *videoWidget;
126
127     BackgroundWidget    *bgWidget;
128     VisualSelector      *visualSelector;
129     PlaylistWidget      *playlistWidget;
130
131     bool                 videoIsActive;       ///< Having a video now / THEMIM->hasV
132     bool                 videoEmbeddedFlag;   ///< Want an external Video Window
133     bool                 playlistVisible;     ///< Is the playlist visible ?
134     bool                 visualSelectorEnabled;
135     bool                 notificationEnabled; /// Systray Notifications
136     bool                 bgWasVisible;
137     bool                 b_keep_size;         ///< persistent resizeable window
138     QSize                mainBasedSize;       ///< based Wnd (normal mode only)
139     QSize                mainVideoSize;       ///< Wnd with video (all modes)
140     int                  i_visualmode;        ///< Visual Mode
141     pl_dock_e            i_pl_dock;
142     bool                 isDocked() { return ( i_pl_dock != PL_UNDOCKED ); }
143
144     /* Status Bar */
145     QLabel              *nameLabel;
146 #if 0
147     QLabel              *cryptedLabel;
148 #endif
149
150     virtual void customEvent( QEvent *);
151     virtual void keyPressEvent( QKeyEvent *);
152     virtual void wheelEvent( QWheelEvent * );
153     virtual void resizeEvent( QResizeEvent * event );
154
155 public slots:
156     void undockPlaylist();
157     void dockPlaylist( pl_dock_e i_pos = PL_BOTTOM );
158     void toggleMinimalView( bool );
159     void togglePlaylist();
160     void toggleUpdateSystrayMenu();
161     void toggleAdvanced();
162     void toggleFullScreen();
163     void toggleFSC();
164     void popupMenu();
165
166     /* Manage the Video Functions from the vout threads */
167     void releaseVideoSlot( void );
168
169 private slots:
170     void debug();
171     void doComponentsUpdate();
172     void setName( QString );
173     void setVLCWindowsTitle( QString title = "" );
174 #if 0
175     void visual();
176 #endif
177     void handleSystrayClick( QSystemTrayIcon::ActivationReason );
178     void updateSystrayTooltipName( QString );
179     void updateSystrayTooltipStatus( int );
180
181 #if 0
182     void showCryptedLabel( bool );
183 #endif
184 signals:
185     void askReleaseVideo( );
186     void askVideoToResize( unsigned int, unsigned int );
187     void askVideoToShow( unsigned int, unsigned int );
188     void askVideoToToggle();
189     void askBgWidgetToToggle();
190     void askUpdate();
191     void minimalViewToggled( bool );
192     void fullscreenInterfaceToggled( bool );
193 };
194
195 #endif