]> git.sesse.net Git - vlc/blob - modules/gui/wxwidgets/wxwidgets.cpp
Plugins: push cancellation down
[vlc] / modules / gui / wxwidgets / wxwidgets.cpp
1 /*****************************************************************************
2  * wxwidgets.cpp : wxWidgets plugin for vlc
3  *****************************************************************************
4  * Copyright (C) 2000-2005 the VideoLAN team
5  * $Id$
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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #include <errno.h>                                                 /* ENOMEM */
28
29 #ifdef HAVE_CONFIG_H
30 # include "config.h"
31 #endif
32
33 #include <vlc_common.h>
34 #include <vlc_plugin.h>
35 #include <vlc_interface.h>
36
37 #ifdef HAVE_LOCALE_H
38 #   include <locale.h>
39 #endif
40
41 #include "interface.hpp"
42
43 /* Temporary hack */
44 #if defined(WIN32) && defined(_WX_INIT_H_)
45 #if (wxMAJOR_VERSION <= 2) && (wxMINOR_VERSION <= 5) && (wxRELEASE_NUMBER < 3)
46 /* Hack to detect wxWidgets 2.5 which has a different wxEntry() prototype */
47 extern int wxEntry( HINSTANCE hInstance, HINSTANCE hPrevInstance = NULL,
48                     char *pCmdLine = NULL, int nCmdShow = SW_NORMAL );
49 #endif
50 #endif
51
52 /*****************************************************************************
53  * Local prototypes.
54  *****************************************************************************/
55 static int  Open         ( vlc_object_t * );
56 static void Close        ( vlc_object_t * );
57 static int  OpenDialogs  ( vlc_object_t * );
58
59 static void Run          ( intf_thread_t * );
60 static void* Init        ( vlc_object_t *  );
61
62 static void ShowDialog   ( intf_thread_t *, int, int, intf_dialog_args_t * );
63
64 #if (wxCHECK_VERSION(2,5,0))
65 void *wxClassInfo_sm_classTable_BUGGY = 0;
66 #endif
67
68 /*****************************************************************************
69  * Local classes declarations.
70  *****************************************************************************/
71 class Instance: public wxApp
72 {
73 public:
74     Instance();
75     Instance( intf_thread_t *_p_intf );
76
77     bool OnInit();
78     int  OnExit();
79
80 private:
81     intf_thread_t *p_intf;
82     wxLocale locale;                                /* locale we'll be using */
83 };
84
85 /*****************************************************************************
86  * Module descriptor
87  *****************************************************************************/
88 #define EMBED_TEXT N_("Embed video in interface")
89 #define EMBED_LONGTEXT N_("Embed the video inside the interface instead " \
90     "of having it in a separate window.")
91 #define BOOKMARKS_TEXT N_("Bookmarks dialog")
92 #define BOOKMARKS_LONGTEXT N_("Show bookmarks dialog at startup" )
93 #define EXTENDED_TEXT N_("Extended GUI")
94 #define EXTENDED_LONGTEXT N_("Show extended GUI (equalizer, image adjust, "  \
95               "video filters...) at startup"  )
96 #define TASKBAR_TEXT N_("Taskbar")
97 #define TASKBAR_LONGTEXT N_("Show VLC on the taskbar")
98 #define MINIMAL_TEXT N_("Minimal interface")
99 #define MINIMAL_LONGTEXT N_("Use minimal interface, with no toolbar and " \
100                 "fewer menus.")
101 #define SIZE_TO_VIDEO_TEXT N_("Size to video")
102 #define SIZE_TO_VIDEO_LONGTEXT N_("Resize VLC to match the video resolution.")
103 #define SYSTRAY_TEXT N_("Systray icon")
104 #define SYSTRAY_LONGTEXT N_("Show a systray icon for VLC")
105 #define LABEL_TEXT N_("Show labels in toolbar")
106 #define LABEL_LONGTEXT N_("Show labels below the icons in the toolbar.")
107
108 #define PLAYLIST_TEXT N_("Playlist view" )
109 #define PLAYLIST_LONGTEXT N_("There are two possible playlist views in the " \
110                 "interface : the normal playlist (separate window), or an " \
111                 "embedded playlist (within the main interface, but with " \
112                 "less features). You can select which one will be available " \
113                 "on the toolbar (or both)." )
114
115 static const int pi_playlist_views[] = { 0,1,2 };
116 static const char *const psz_playlist_views[] = {
117     N_("Normal" ), N_("Embedded" ), N_("Both") };
118
119 vlc_module_begin();
120     set_shortname( "wxWidgets" );
121     set_description( N_("wxWidgets interface module") );
122     set_category( CAT_INTERFACE );
123     set_subcategory( SUBCAT_INTERFACE_MAIN );
124     set_capability( "interface", 150 );
125     set_callbacks( Open, Close );
126     add_shortcut( "wxwindows" );
127     add_shortcut( "wxwin" );
128     add_shortcut( "wx" );
129     add_shortcut( "wxwidgets" );
130
131     add_bool( "wx-embed", 1, NULL,
132               EMBED_TEXT, EMBED_LONGTEXT, false );
133         add_deprecated_alias( "wxwin-enbed" ); /*Deprecated since 0.8.4*/
134     add_bool( "wx-bookmarks", 0, NULL,
135               BOOKMARKS_TEXT, BOOKMARKS_LONGTEXT, false );
136         add_deprecated_alias( "wxwin-bookmarks" ); /*Deprecated since 0.8.4*/
137     add_bool( "wx-taskbar", 1, NULL,
138               TASKBAR_TEXT, TASKBAR_LONGTEXT, false );
139         add_deprecated_alias( "wxwin-taskbar" ); /*Deprecated since 0.8.4*/
140     add_bool( "wx-extended", 0, NULL,
141               EXTENDED_TEXT, EXTENDED_LONGTEXT, false );
142     add_bool( "wx-minimal", 0, NULL,
143               MINIMAL_TEXT, MINIMAL_LONGTEXT, true );
144         add_deprecated_alias( "wxwin-minimal" ); /*Deprecated since 0.8.4*/
145     add_bool( "wx-autosize", 1, NULL,
146               SIZE_TO_VIDEO_TEXT, SIZE_TO_VIDEO_LONGTEXT, true );
147         add_deprecated_alias( "wxwin-autosize" ); /*Deprecated since 0.8.4*/
148     add_integer( "wx-playlist-view", 0, NULL, PLAYLIST_TEXT, PLAYLIST_LONGTEXT,
149              false );
150         change_integer_list( pi_playlist_views, psz_playlist_views, NULL );
151 /* wxCocoa pretends to support this, but at least 2.6.x doesn't */
152 #ifndef __APPLE__
153 #ifdef wxHAS_TASK_BAR_ICON
154     add_bool( "wx-systray", 0, NULL,
155               SYSTRAY_TEXT, SYSTRAY_LONGTEXT, false );
156         add_deprecated_alias( "wxwin-systray" ); /*Deprecated since 0.8.4*/
157 #endif
158 #endif
159     add_bool( "wx-labels", 0, NULL, LABEL_TEXT, LABEL_LONGTEXT, true);
160     add_string( "wx-config-last", NULL, NULL,
161                 N_("last config"), N_("last config"), true );
162         change_autosave();
163         change_internal();
164         add_deprecated_alias( "wxwin-config-last" ); /*Deprecated since 0.8.4*/
165
166     add_submodule();
167     set_description( N_("wxWidgets dialogs provider") );
168     set_capability( "dialogs provider", 50 );
169     set_callbacks( OpenDialogs, Close );
170
171 #if !defined(WIN32)
172     linked_with_a_crap_library_which_uses_atexit();
173 #endif
174 vlc_module_end();
175
176 /*****************************************************************************
177  * Open: initialize and create window
178  *****************************************************************************/
179 static int Open( vlc_object_t *p_this )
180 {
181     intf_thread_t *p_intf = (intf_thread_t *)p_this;
182     /* Test in we have an X*/
183 #if defined HAVE_GETENV && (defined __WXGTK__ || defined __WXX11)
184     if( !getenv( "DISPLAY" ) )
185     {
186         msg_Err( p_intf, "no X server");
187         return VLC_EGENERIC;
188     }
189 #endif
190     /* Allocate instance and initialize some members */
191     p_intf->p_sys = (intf_sys_t *)malloc( sizeof( intf_sys_t ) );
192     if( p_intf->p_sys == NULL )
193         return VLC_ENOMEM;
194     memset( p_intf->p_sys, 0, sizeof( intf_sys_t ) );
195
196     p_intf->pf_run = Run;
197
198     p_intf->p_sys->p_sub = msg_Subscribe( p_intf );
199
200     /* Initialize wxWidgets thread */
201     p_intf->p_sys->b_playing = 0;
202
203     p_intf->p_sys->p_input = NULL;
204     p_intf->p_sys->i_playing = -1;
205
206     p_intf->p_sys->p_popup_menu = NULL;
207     p_intf->p_sys->p_video_window = NULL;
208
209     p_intf->pf_show_dialog = NULL;
210
211     p_intf->p_sys->b_video_autosize =
212         config_GetInt( p_intf, "wx-autosize" );
213
214     return VLC_SUCCESS;
215 }
216
217 static int OpenDialogs( vlc_object_t *p_this )
218 {
219     intf_thread_t *p_intf = (intf_thread_t *)p_this;
220     int i_ret = Open( p_this );
221
222     p_intf->pf_show_dialog = ShowDialog;
223
224     return i_ret;
225 }
226
227 /*****************************************************************************
228  * Close: destroy interface window
229  *****************************************************************************/
230 static void Close( vlc_object_t *p_this )
231 {
232     intf_thread_t *p_intf = (intf_thread_t *)p_this;
233
234     vlc_object_lock( p_intf );
235     p_intf->b_dead = true;
236     vlc_object_unlock( p_intf );
237
238     if( p_intf->pf_show_dialog )
239     {
240         /* We must destroy the dialogs thread */
241         wxCommandEvent event( wxEVT_DIALOG, INTF_DIALOG_EXIT );
242         p_intf->p_sys->p_wxwindow->AddPendingEvent( event );
243         vlc_thread_join( p_intf );
244     }
245
246     msg_Unsubscribe( p_intf, p_intf->p_sys->p_sub );
247
248     /* */
249     delete p_intf->p_sys->p_window_settings;
250
251 #if (wxCHECK_VERSION(2,5,0))
252     wxClassInfo::sm_classTable = (wxHashTable*)wxClassInfo_sm_classTable_BUGGY;
253 #endif
254
255     /* Destroy structure */
256     free( p_intf->p_sys );
257 }
258
259 /*****************************************************************************
260  * Run: wxWidgets thread
261  *****************************************************************************/
262
263 //when is this called?
264 #if !defined(__BUILTIN__) && defined( WIN32 )
265 HINSTANCE hInstance = 0;
266 extern "C" BOOL WINAPI
267 DllMain (HANDLE hModule, DWORD fdwReason, LPVOID lpReserved)
268 {
269     hInstance = (HINSTANCE)hModule;
270     return TRUE;
271 }
272 #endif
273
274 static void Run( intf_thread_t *p_intf )
275 {
276     if( p_intf->pf_show_dialog )
277     {
278         /* The module is used in dialog provider mode */
279
280         /* Create a new thread for wxWidgets */
281         if( vlc_thread_create( p_intf, "Skins Dialogs Thread",
282                                Init, 0, true ) )
283         {
284             msg_Err( p_intf, "cannot create Skins Dialogs Thread" );
285             p_intf->pf_show_dialog = NULL;
286         }
287     }
288     else
289     {
290         /* The module is used in interface mode */
291         Init( p_intf );
292     }
293 }
294
295 static void* Init( vlc_object_t * p_this )
296 {
297     intf_thread_t *p_intf = (intf_thread_t*)p_this;
298 #if !defined( WIN32 )
299     static char  *p_args[] = { "" };
300     int i_args = 1;
301 #endif
302     int canc = vlc_savecancel ();
303
304     /* Hack to pass the p_intf pointer to the new wxWidgets Instance object */
305 #ifdef wxTheApp
306     wxApp::SetInstance( new Instance( p_intf ) );
307 #else
308     wxTheApp = new Instance( p_intf );
309 #endif
310
311 #if defined( WIN32 )
312 #if !defined(__BUILTIN__)
313
314     //because no one knows when DllMain is called
315     if (hInstance == NULL)
316       hInstance = GetModuleHandle(NULL);
317
318     wxEntry( hInstance/*GetModuleHandle(NULL)*/, NULL, NULL, SW_SHOW );
319 #else
320     wxEntry( GetModuleHandle(NULL), NULL, NULL, SW_SHOW );
321 #endif
322 #else
323     wxEntry( i_args, p_args );
324 #endif
325     vlc_restorecancel (canc);
326     return NULL;
327 }
328
329 /* following functions are local */
330
331 /*****************************************************************************
332  * Constructors.
333  *****************************************************************************/
334 Instance::Instance( )
335 {
336 }
337
338 Instance::Instance( intf_thread_t *_p_intf )
339 {
340     /* Initialization */
341     p_intf = _p_intf;
342 }
343
344 IMPLEMENT_APP_NO_MAIN(Instance)
345
346 /*****************************************************************************
347  * Instance::OnInit: the parent interface execution starts here
348  *****************************************************************************
349  * This is the "main program" equivalent, the program execution will
350  * start here.
351  *****************************************************************************/
352 bool Instance::OnInit()
353 {
354     /* Initialization of i18n stuff.
355      * Usefull for things we don't have any control over, like wxWidgets
356      * provided facilities (eg. open file dialog) */
357     locale.Init( wxLANGUAGE_DEFAULT, wxLOCALE_LOAD_DEFAULT );
358
359     /* Load saved window settings */
360     p_intf->p_sys->p_window_settings = new WindowSettings( p_intf );
361
362     /* Make an instance of your derived frame. Passing NULL (the default value
363      * of Frame's constructor is NULL) as the frame doesn't have a parent
364      * since it is the first window */
365
366     if( !p_intf->pf_show_dialog )
367     {
368         /* The module is used in interface mode */
369         long style = wxDEFAULT_FRAME_STYLE;
370         if ( ! config_GetInt( p_intf, "wx-taskbar" ) )
371         {
372             style = wxDEFAULT_FRAME_STYLE|wxFRAME_NO_TASKBAR;
373         }
374
375         Interface *MainInterface = new Interface( p_intf, style );
376         p_intf->p_sys->p_wxwindow = MainInterface;
377
378         /* Show the interface */
379         MainInterface->Show( TRUE );
380         SetTopWindow( MainInterface );
381         MainInterface->Raise();
382     }
383
384     /* Creates the dialogs provider */
385     p_intf->p_sys->p_wxwindow =
386         CreateDialogsProvider( p_intf, p_intf->pf_show_dialog ?
387                                NULL : p_intf->p_sys->p_wxwindow );
388
389     p_intf->p_sys->pf_show_dialog = ShowDialog;
390
391     /* OK, initialization is over */
392     vlc_thread_ready( p_intf );
393
394     /* Return TRUE to tell program to continue (FALSE would terminate) */
395     return TRUE;
396 }
397
398 /*****************************************************************************
399  * Instance::OnExit: called when the interface execution stops
400  *****************************************************************************/
401 int Instance::OnExit()
402 {
403     if( p_intf->pf_show_dialog )
404     {
405          /* We need to manually clean up the dialogs class */
406          delete p_intf->p_sys->p_wxwindow;
407     }
408
409 #if (wxCHECK_VERSION(2,5,0))
410     wxClassInfo_sm_classTable_BUGGY = wxClassInfo::sm_classTable;
411     wxClassInfo::sm_classTable = 0;
412 #endif
413
414     return 0;
415 }
416
417 static void ShowDialog( intf_thread_t *p_intf, int i_dialog_event, int i_arg,
418                         intf_dialog_args_t *p_arg )
419 {
420     wxCommandEvent event( wxEVT_DIALOG, i_dialog_event );
421     event.SetInt( i_arg );
422     event.SetClientData( p_arg );
423
424 #ifdef WIN32
425     SendMessage( (HWND)p_intf->p_sys->p_wxwindow->GetHandle(),
426                  WM_CANCELMODE, 0, 0 );
427 #endif
428     if( i_dialog_event == INTF_DIALOG_POPUPMENU && i_arg == 0 ) return;
429
430     /* Hack to prevent popup events to be enqueued when
431      * one is already active */
432     if( i_dialog_event != INTF_DIALOG_POPUPMENU ||
433         !p_intf->p_sys->p_popup_menu )
434     {
435         p_intf->p_sys->p_wxwindow->AddPendingEvent( event );
436     }
437 }
438
439 /*****************************************************************************
440  * WindowSettings utility class
441  *****************************************************************************/
442 WindowSettings::WindowSettings( intf_thread_t *_p_intf )
443 {
444     char *psz_org = NULL;
445     char *psz;
446     int i;
447
448     /* */
449     p_intf = _p_intf;
450
451     /* */
452     for( i = 0; i < ID_MAX; i++ )
453     {
454         b_valid[i] = false;
455         b_shown[i] = false;
456         position[i] = wxDefaultPosition;
457         size[i] = wxDefaultSize;
458     }
459     b_shown[ID_MAIN] = true;
460
461     if( p_intf->pf_show_dialog ) return;
462
463     /* Parse the configuration */
464     psz_org = psz = config_GetPsz( p_intf, "wx-config-last" );
465     if( !psz || *psz == '\0' ) return;
466
467     msg_Dbg( p_intf, "Using last windows config '%s'", psz );
468
469     i_screen_w = 0;
470     i_screen_h = 0;
471     while( psz && *psz )
472     {
473         int id, v[4];
474
475         psz = strchr( psz, '(' );
476
477         if( !psz )
478             break;
479         psz++;
480
481         id = strtol( psz, &psz, 0 );
482         if( *psz != ',' ) /* broken cfg */
483         {
484             goto invalid;
485         }
486         psz++;
487
488         for( i = 0; i < 4; i++ )
489         {
490             v[i] = strtol( psz, &psz, 0 );
491
492             if( i < 3 )
493             {
494                 if( *psz != ',' )
495                 {
496                     goto invalid;
497                 }
498                 psz++;
499             }
500             else
501             {
502                 if( *psz != ')' )
503                 {
504                     goto invalid;
505                 }
506             }
507         }
508         if( id == ID_SCREEN )
509         {
510             i_screen_w = v[2];
511             i_screen_h = v[3];
512         }
513         else if( id >= 0 && id < ID_MAX )
514         {
515             b_valid[id] = true;
516             b_shown[id] = true;
517             position[id] = wxPoint( v[0], v[1] );
518             size[id] = wxSize( v[2], v[3] );
519
520             msg_Dbg( p_intf, "id=%d p=(%d,%d) s=(%d,%d)",
521                      id, position[id].x, position[id].y,
522                          size[id].x, size[id].y );
523         }
524
525         psz = strchr( psz, ')' );
526         if( psz ) psz++;
527     }
528
529     if( i_screen_w <= 0 || i_screen_h <= 0 )
530     {
531         goto invalid;
532     }
533
534     for( i = 0; i < ID_MAX; i++ )
535     {
536         if( !b_valid[i] )
537             continue;
538         if( position[i].x < 0 || position[i].y < 0 )
539         {
540             goto invalid;
541         }
542         if( i != ID_SMALL_PLAYLIST && (size[i].x <= 0 || size[i].y <= 0)  )
543         {
544             goto invalid;
545         }
546     }
547
548     free( psz_org );
549     return;
550
551 invalid:
552     msg_Dbg( p_intf, "last windows config is invalid (ignored)" );
553     for( i = 0; i < ID_MAX; i++ )
554     {
555         b_valid[i] = false;
556         b_shown[i] = false;
557         position[i] = wxDefaultPosition;
558         size[i] = wxDefaultSize;
559     }
560     free( psz_org );
561 }
562
563
564 WindowSettings::~WindowSettings( )
565 {
566     wxString sCfg;
567
568     if( p_intf->pf_show_dialog ) return;
569
570     sCfg = wxString::Format( wxT("(%d,0,0,%d,%d)"), ID_SCREEN,
571                              wxSystemSettings::GetMetric( wxSYS_SCREEN_X ),
572                              wxSystemSettings::GetMetric( wxSYS_SCREEN_Y ) );
573     for( int i = 0; i < ID_MAX; i++ )
574     {
575         if( !b_valid[i] || !b_shown[i] )
576             continue;
577
578         sCfg += wxString::Format( wxT("(%d,%d,%d,%d,%d)"),
579                                   i, position[i].x, position[i].y,
580                                      size[i].x, size[i].y );
581     }
582
583     config_PutPsz( p_intf, "wx-config-last", sCfg.mb_str(wxConvUTF8) );
584 }
585
586 void WindowSettings::SetScreen( int i_screen_w, int i_screen_h )
587 {
588     int i;
589
590     for( i = 0; i < ID_MAX; i++ )
591     {
592         if( !b_valid[i] )
593             continue;
594         if( position[i].x >= i_screen_w || position[i].y >= i_screen_h )
595             goto invalid;
596     }
597     return;
598
599 invalid:
600     for( i = 0; i < ID_MAX; i++ )
601     {
602         b_valid[i] = false;
603         b_shown[i] = false;
604         position[i] = wxDefaultPosition;
605         size[i] = wxDefaultSize;
606     }
607 }
608
609 void WindowSettings::SetSettings( int id, bool _b_shown, wxPoint p, wxSize s )
610 {
611     if( id < 0 || id >= ID_MAX )
612         return;
613
614     b_valid[id] = true;
615     b_shown[id] = _b_shown;
616
617     position[id] = p;
618     size[id] = s;
619 }
620
621 bool WindowSettings::GetSettings( int id, bool& _b_shown, wxPoint& p, wxSize& s)
622 {
623     if( id < 0 || id >= ID_MAX )
624         return false;
625
626     if( !b_valid[id] )
627         return false;
628
629     _b_shown = b_shown[id];
630     p = position[id];
631     s = size[id];
632
633     return true;
634 }