]> git.sesse.net Git - vlc/blob - modules/gui/wxwidgets/interface.hpp
ca359af76a3abe51dd27aee3ecc531d78441a952
[vlc] / modules / gui / wxwidgets / interface.hpp
1 /*****************************************************************************
2  * interface.hpp: Main interface headers
3  *****************************************************************************
4  * Copyright (C) 1999-2005 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Gildas Bazin <gbazin@videolan.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 #ifndef _WXVLC_INTERFACE_H_
25 #define _WXVLC_INTERFACE_H_
26
27 #include "wxwidgets.hpp"
28 #include "input_manager.hpp"
29
30 #include <wx/dnd.h>
31 #include <wx/accel.h>
32 #include <wx/taskbar.h>
33
34
35 namespace wxvlc
36 {
37     class Timer;
38     class Interface;
39
40 #if wxUSE_DRAG_AND_DROP
41     /* Drag and Drop class */
42     class DragAndDrop: public wxFileDropTarget
43     {
44     public:
45         DragAndDrop( intf_thread_t *_p_intf, vlc_bool_t b_enqueue = VLC_FALSE );
46         virtual bool OnDropFiles( wxCoord x, wxCoord y,
47                                   const wxArrayString& filenames );
48
49     private:
50         intf_thread_t *p_intf;
51         vlc_bool_t b_enqueue;
52     };
53 #endif
54
55     /* Systray integration */
56 #ifdef wxHAS_TASK_BAR_ICON
57    class Systray: public wxTaskBarIcon
58    {
59    public:
60         Systray( Interface* p_main_interface, intf_thread_t *p_intf );
61         virtual ~Systray() {};
62         wxMenu* CreatePopupMenu();
63         void UpdateTooltip( const wxChar* tooltip );
64
65     private:
66         void OnMenuIconize( wxCommandEvent& event );
67         void OnLeftClick( wxTaskBarIconEvent& event );
68         void OnPlayStream ( wxCommandEvent& event );
69         void OnStopStream ( wxCommandEvent& event );
70         void OnPrevStream ( wxCommandEvent& event );
71         void OnNextStream ( wxCommandEvent& event );
72         void OnExit(  wxCommandEvent& event );
73         Interface* p_main_interface;
74         intf_thread_t *p_intf;
75         DECLARE_EVENT_TABLE()
76     };
77 #endif
78
79     /* Main Interface */
80     class Interface: public wxFrame
81     {
82     public:
83         /* Constructor */
84         Interface( intf_thread_t *p_intf, long style = wxDEFAULT_FRAME_STYLE );
85         virtual ~Interface();
86         void Init();
87         void TogglePlayButton( int i_playing_status );
88         void Update();
89         void PlayStream();
90         void StopStream();
91         void PrevStream();
92         void NextStream();
93
94         wxBoxSizer  *main_sizer;
95
96         wxPanel     *main_panel;
97         wxBoxSizer  *panel_sizer;
98
99         wxStatusBar *statusbar;
100
101         InputManager *input_manager;
102
103         vlc_bool_t  b_extra;
104         wxPanel     *extra_frame;
105
106         wxControl  *volctrl;
107
108     #ifdef wxHAS_TASK_BAR_ICON
109         Systray     *p_systray;
110     #endif
111
112         wxWindow *video_window;
113
114     private:
115         void SetupHotkeys();
116         void CreateOurMenuBar();
117         void CreateOurToolBar();
118         void CreateOurExtendedPanel();
119         void Open( int i_access_method );
120
121         void SetIntfMinSize();
122
123         /* Event handlers (these functions should _not_ be virtual) */
124         void OnExit( wxCommandEvent& event );
125         void OnAbout( wxCommandEvent& event );
126
127         void OnOpenFileSimple( wxCommandEvent& event );
128         void OnOpenDir( wxCommandEvent& event );
129         void OnOpenFile( wxCommandEvent& event );
130         void OnOpenDisc( wxCommandEvent& event );
131         void OnOpenNet( wxCommandEvent& event );
132         void OnOpenSat( wxCommandEvent& event );
133
134         void OnExtended( wxCommandEvent& event );
135
136         void OnBookmarks( wxCommandEvent& event );
137         void OnShowDialog( wxCommandEvent& event );
138         void OnPlayStream( wxCommandEvent& event );
139         void OnStopStream( wxCommandEvent& event );
140         void OnPrevStream( wxCommandEvent& event );
141         void OnNextStream( wxCommandEvent& event );
142         void OnSlowStream( wxCommandEvent& event );
143         void OnFastStream( wxCommandEvent& event );
144
145         void OnMenuOpen( wxMenuEvent& event );
146
147     #if defined( __WXMSW__ ) || defined( __WXMAC__ )
148         void OnContextMenu2(wxContextMenuEvent& event);
149     #endif
150         void OnContextMenu(wxMouseEvent& event);
151
152         void OnControlEvent( wxCommandEvent& event );
153
154         DECLARE_EVENT_TABLE();
155
156         Timer *timer;
157         intf_thread_t *p_intf;
158
159         int i_old_playing_status;
160
161         /* For auto-generated menus */
162         wxMenu *p_settings_menu;
163         wxMenu *p_audio_menu;
164         wxMenu *p_video_menu;
165         wxMenu *p_navig_menu;
166
167         /* Utility dimensions */
168         wxSize main_min_size;
169         wxSize ext_min_size;
170     };
171
172
173     class WindowSettings
174     {
175     public:
176         WindowSettings( intf_thread_t *_p_intf );
177         virtual ~WindowSettings();
178         enum
179         {
180             ID_SCREEN = -1,
181             ID_MAIN,
182             ID_PLAYLIST,
183             ID_MESSAGES,
184             ID_FILE_INFO,
185             ID_BOOKMARKS,
186             ID_VIDEO,
187             ID_MAX,
188         };
189
190         void SetSettings( int id, bool _b_shown,
191                     wxPoint p = wxDefaultPosition, wxSize s = wxDefaultSize );
192         bool GetSettings( int id, bool& _b_shown, wxPoint& p, wxSize& s );
193
194         void SetScreen( int i_screen_w, int i_screen_h );
195
196     private:
197         intf_thread_t *p_intf;
198
199         int     i_screen_w;
200         int     i_screen_h;
201         bool    b_valid[ID_MAX];
202         bool    b_shown[ID_MAX];
203         wxPoint position[ID_MAX];
204         wxSize  size[ID_MAX];
205     };
206
207
208     class MenuEvtHandler : public wxEvtHandler
209     {
210     public:
211         MenuEvtHandler( intf_thread_t *p_intf, Interface *p_main_interface );
212         virtual ~MenuEvtHandler();
213
214         void OnMenuEvent( wxCommandEvent& event );
215         void OnShowDialog( wxCommandEvent& event );
216
217     private:
218         DECLARE_EVENT_TABLE()
219
220         intf_thread_t *p_intf;
221         Interface *p_main_interface;
222     };
223 };
224
225 void PopupMenu( intf_thread_t *, wxWindow *, const wxPoint& );
226 wxMenu *SettingsMenu( intf_thread_t *, wxWindow *, wxMenu * = NULL );
227 wxMenu *AudioMenu( intf_thread_t *, wxWindow *, wxMenu * = NULL );
228 wxMenu *VideoMenu( intf_thread_t *, wxWindow *, wxMenu * = NULL );
229 wxMenu *NavigMenu( intf_thread_t *, wxWindow *, wxMenu * = NULL );
230
231 #endif