]> git.sesse.net Git - vlc/blob - modules/gui/qt4/main_interface.hpp
Qt4 - Main Interface: Advanced buttons are correctly integrated, cosmetic,
[vlc] / modules / gui / qt4 / main_interface.hpp
1 /*****************************************************************************
2  * main_interface.hpp : Main Interface
3  ****************************************************************************
4  * Copyright (C) 2006-2007 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 #include "util/qvlcframe.hpp"
30
31 #include <vlc_aout.h>
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 QMenu;
48 class QSize;
49
50 class MainInterface : public QVLCMW
51 {
52     Q_OBJECT;
53 public:
54     MainInterface( intf_thread_t *);
55     virtual ~MainInterface();
56
57     void *requestVideo( vout_thread_t *p_nvout, int *pi_x,
58                         int *pi_y, unsigned int *pi_width,
59                         unsigned int *pi_height );
60     void releaseVideo( void * );
61     int controlVideo( void *p_window, int i_query, va_list args );
62
63     QSystemTrayIcon *getSysTray() { return sysTray; };
64     QMenu *getSysTrayMenu() { return systrayMenu; };
65     bool isAdvancedVisible();
66 protected:
67     void resizeEvent( QResizeEvent * );
68     void dropEvent( QDropEvent *);
69     void dragEnterEvent( QDragEnterEvent * );
70     void dragMoveEvent( QDragMoveEvent * );
71     void dragLeaveEvent( QDragLeaveEvent * );
72     void closeEvent( QCloseEvent *);
73     friend class VolumeClickHandler;
74 private:
75     QSettings           *settings;
76     QSize                mainSize, addSize;
77     QSystemTrayIcon     *sysTray;
78     QMenu               *systrayMenu;
79     QString              input_name;
80     QVBoxLayout         *mainLayout;
81     ControlsWidget      *controls;
82
83     bool                 need_components_update;
84
85     void calculateInterfaceSize();
86     void handleMainUi( QSettings* );
87     void handleSystray();
88     void doComponentsUpdate();
89     void createSystray();
90
91     /* Video */
92     VideoWidget         *videoWidget;
93     virtual void keyPressEvent( QKeyEvent *);
94     virtual void wheelEvent( QWheelEvent * );
95
96     bool                 embeddedPlaylistWasActive;
97     bool                 videoIsActive;
98     QSize                savedVideoSize;
99
100     BackgroundWidget    *bgWidget;
101     VisualSelector      *visualSelector;
102     PlaylistWidget      *playlistWidget;
103
104     bool                 playlistEmbeddedFlag;
105     bool                 videoEmbeddedFlag;
106     bool                 alwaysVideoFlag;
107     bool                 visualSelectorEnabled;
108
109     InputManager        *main_input_manager;
110     input_thread_t      *p_input;    ///< Main input associated to the playlist
111
112     QLabel              *timeLabel;
113     QLabel              *speedLabel;
114     QLabel              *nameLabel;
115
116     void customEvent( QEvent *);
117 public slots:
118     void undockPlaylist();
119     void toggleMenus();
120     void togglePlaylist();
121     void toggleUpdateSystrayMenu();
122     void toggleAdvanced();
123 private slots:
124     void updateOnTimer();
125     void setStatus( int );
126     void setName( QString );
127     void setVLCWindowsTitle( QString title = "" );
128     void setDisplay( float, int, int );
129 #if 0
130     void visual();
131 #endif
132     void handleSystrayClick( QSystemTrayIcon::ActivationReason );
133     void updateSystrayMenu( int );
134     void updateSystrayTooltipName( QString );
135     void updateSystrayTooltipStatus( int );
136     void showSpeedMenu( QPoint );
137     void showTimeMenu( QPoint );
138 };
139
140 #endif