]> git.sesse.net Git - vlc/blob - modules/gui/wxwindows/wxwindows.cpp
51d4ec1d0be7e1e8d5bdc3a64b2a27c249e42fd5
[vlc] / modules / gui / wxwindows / wxwindows.cpp
1 /*****************************************************************************
2  * wxwindows.cpp : wxWindows plugin for vlc
3  *****************************************************************************
4  * Copyright (C) 2000-2001 VideoLAN
5  * $Id: wxwindows.cpp,v 1.22 2003/07/19 16:33:55 gbazin Exp $
6  *
7  * Authors: Gildas Bazin <gbazin@netcourrier.com>
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 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #include <stdlib.h>                                      /* malloc(), free() */
28 #include <errno.h>                                                 /* ENOMEM */
29 #include <string.h>                                            /* strerror() */
30 #include <stdio.h>
31
32 #include <vlc/vlc.h>
33
34 #ifdef WIN32                                                 /* mingw32 hack */
35 #undef Yield
36 #undef CreateDialog
37
38 extern int wxEntry( HINSTANCE hInstance,
39                     HINSTANCE hPrevInstance = NULL,
40                     char *pCmdLine = NULL,
41                     int nCmdShow = SW_NORMAL );
42 #endif
43
44 /* Let vlc take care of the i18n stuff */
45 #define WXINTL_NO_GETTEXT_MACRO
46
47 #include <wx/wxprec.h>
48 #include <wx/wx.h>
49
50 #include <vlc/intf.h>
51
52 #include "wxwindows.h"
53
54 /* Temporary hack */
55 #ifdef __DARWIN__
56 int wxEntry( int argc, char *argv[] , bool enterLoop = TRUE );
57 #endif
58
59 /*****************************************************************************
60  * Local prototypes.
61  *****************************************************************************/
62 static int  Open         ( vlc_object_t * );
63 static void Close        ( vlc_object_t * );
64 static int  OpenDialogs  ( vlc_object_t * );
65
66 static void Run          ( intf_thread_t * );
67 static void Init         ( intf_thread_t * );
68
69 static void ShowDialog   ( intf_thread_t *, int, int );
70
71 /*****************************************************************************
72  * Local classes declarations.
73  *****************************************************************************/
74 class Instance: public wxApp
75 {
76 public:
77     Instance();
78     Instance( intf_thread_t *_p_intf );
79
80     bool OnInit();
81
82 private:
83     intf_thread_t *p_intf;
84     wxLocale locale;                                /* locale we'll be using */
85 };
86
87 /*****************************************************************************
88  * Module descriptor
89  *****************************************************************************/
90 vlc_module_begin();
91     set_description( (char *) _("wxWindows interface module") );
92     set_capability( "interface", 50 );
93     set_callbacks( Open, Close );
94     add_shortcut( "wxwindows" );
95     add_shortcut( "wxwin" );
96     add_shortcut( "wx" );
97     set_program( "wxvlc" );
98
99     add_submodule();
100     set_description( _("wxWindows dialogs provider") );
101     set_capability( "dialogs provider", 50 );
102     set_callbacks( OpenDialogs, Close );
103
104 #if !defined(WIN32)
105     linked_with_a_crap_library_which_uses_atexit();
106 #endif
107 vlc_module_end();
108
109 /*****************************************************************************
110  * Open: initialize and create window
111  *****************************************************************************/
112 static int Open( vlc_object_t *p_this )
113 {
114     intf_thread_t *p_intf = (intf_thread_t *)p_this;
115
116     /* Allocate instance and initialize some members */
117     p_intf->p_sys = (intf_sys_t *)malloc( sizeof( intf_sys_t ) );
118     if( p_intf->p_sys == NULL )
119     {
120         msg_Err( p_intf, "out of memory" );
121         return VLC_ENOMEM;
122     }
123
124     p_intf->pf_run = Run;
125
126     p_intf->p_sys->p_sub = msg_Subscribe( p_intf );
127
128     /* Initialize wxWindows thread */
129     p_intf->p_sys->b_playing = 0;
130
131     p_intf->p_sys->p_input = NULL;
132     p_intf->p_sys->i_playing = -1;
133     p_intf->p_sys->b_slider_free = 1;
134     p_intf->p_sys->i_slider_pos = p_intf->p_sys->i_slider_oldpos = 0;
135
136     p_intf->p_sys->p_popup_menu = NULL;
137
138     p_intf->pf_show_dialog = NULL;
139
140     return VLC_SUCCESS;
141 }
142
143 static int OpenDialogs( vlc_object_t *p_this )
144 {
145     intf_thread_t *p_intf = (intf_thread_t *)p_this;
146     int i_ret = Open( p_this );
147
148     p_intf->pf_show_dialog = ShowDialog;
149
150     return i_ret;
151 }
152
153 /*****************************************************************************
154  * Close: destroy interface window
155  *****************************************************************************/
156 static void Close( vlc_object_t *p_this )
157 {
158     intf_thread_t *p_intf = (intf_thread_t *)p_this;
159
160     if( p_intf->p_sys->p_input )
161     {
162         vlc_object_release( p_intf->p_sys->p_input );
163     }
164
165     msg_Unsubscribe( p_intf, p_intf->p_sys->p_sub );
166
167     /* Destroy structure */
168     free( p_intf->p_sys );
169 }
170
171 /*****************************************************************************
172  * Run: wxWindows thread
173  *****************************************************************************/
174 #if !defined(__BUILTIN__) && defined( WIN32 )
175 HINSTANCE hInstance = 0;
176 extern "C" BOOL WINAPI
177 DllMain (HANDLE hModule, DWORD fdwReason, LPVOID lpReserved)
178 {
179     hInstance = (HINSTANCE)hModule;
180     return TRUE;
181 }
182 #endif
183
184 static void Run( intf_thread_t *p_intf )
185 {
186     if( p_intf->pf_show_dialog )
187     {
188         /* The module is used in dialog provider mode */
189
190         /* Create a new thread for wxWindows */
191         if( vlc_thread_create( p_intf, "Skins Dialogs Thread",
192                                Init, 0, VLC_TRUE ) )
193         {
194             msg_Err( p_intf, "cannot create Skins Dialogs Thread" );
195             p_intf->pf_show_dialog = NULL;
196         }
197     }
198     else
199     {
200         /* The module is used in interface mode */
201         Init( p_intf );
202     }
203 }
204
205 static void Init( intf_thread_t *p_intf )
206 {
207 #if !defined( WIN32 )
208     static char  *p_args[] = { "" };
209     int i_args = 1;
210 #endif
211
212     /* Hack to pass the p_intf pointer to the new wxWindow Instance object */
213     wxTheApp = new Instance( p_intf );
214
215 #if defined( WIN32 )
216 #if !defined(__BUILTIN__)
217     wxEntry( hInstance/*GetModuleHandle(NULL)*/, NULL, NULL, SW_SHOW );
218 #else
219     wxEntry( GetModuleHandle(NULL), NULL, NULL, SW_SHOW );
220 #endif
221 #else
222     wxEntry( i_args, p_args );
223 #endif
224 }
225
226 /* following functions are local */
227
228 /*****************************************************************************
229  * Constructors.
230  *****************************************************************************/
231 Instance::Instance( )
232 {
233 }
234
235 Instance::Instance( intf_thread_t *_p_intf )
236 {
237     /* Initialization */
238     p_intf = _p_intf;
239 }
240
241 IMPLEMENT_APP_NO_MAIN(Instance)
242
243 /*****************************************************************************
244  * Instance::OnInit: the parent interface execution starts here
245  *****************************************************************************
246  * This is the "main program" equivalent, the program execution will
247  * start here.
248  *****************************************************************************/
249 bool Instance::OnInit()
250 {
251     /* Initialization of i18n stuff.
252      * Usefull for things we don't have any control over, like wxWindows
253      * provided facilities (eg. open file dialog) */
254     locale.Init( wxLANGUAGE_DEFAULT );
255
256     /* Make an instance of your derived frame. Passing NULL (the default value
257      * of Frame's constructor is NULL) as the frame doesn't have a parent
258      * since it is the first window */
259
260     if( !p_intf->pf_show_dialog )
261     {
262         /* The module is used in interface mode */
263         Interface *MainInterface = new Interface( p_intf );
264         p_intf->p_sys->p_wxwindow = MainInterface;
265
266         /* Show the interface */
267         MainInterface->Show( TRUE );
268
269         SetTopWindow( MainInterface );
270
271         /* Start timer */
272         new Timer( p_intf, MainInterface );
273     }
274
275     /* Creates the dialogs provider */
276     p_intf->p_sys->p_wxwindow =
277         new DialogsProvider( p_intf, p_intf->pf_show_dialog ?
278                              NULL : p_intf->p_sys->p_wxwindow );
279
280     p_intf->p_sys->pf_show_dialog = ShowDialog;
281
282     /* OK, initialization is over */
283     vlc_thread_ready( p_intf );
284
285     /* Return TRUE to tell program to continue (FALSE would terminate) */
286     return TRUE;
287 }
288
289 static void ShowDialog( intf_thread_t *p_intf, int i_dialog_event, int i_arg )
290 {
291     wxCommandEvent event( wxEVT_DIALOG, i_dialog_event );
292     event.SetInt( i_arg );
293
294     /* Hack to prevent popup events to be enqueued when
295      * one is already active */
296     if( i_dialog_event != INTF_DIALOG_POPUPMENU ||
297         !p_intf->p_sys->p_popup_menu )
298     {
299         p_intf->p_sys->p_wxwindow->AddPendingEvent( event );
300     }
301 }