]> git.sesse.net Git - vlc/blob - modules/gui/wxwidgets/dialogs.cpp
Disable update checking per default, re-enable with --enable-update-check
[vlc] / modules / gui / wxwidgets / dialogs.cpp
1 /*****************************************************************************
2  * dialogs.cpp : wxWidgets plugin for vlc
3  *****************************************************************************
4  * Copyright (C) 2000-2004 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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #include <errno.h>                                                 /* ENOMEM */
28
29 #include <vlc/vlc.h>
30 #include <vlc_aout.h>
31 #include <vlc_interface.h>
32
33 #include "vlc_charset.h"
34
35 //#include "dialogs/vlm/vlm_panel.hpp"
36 #include "dialogs/bookmarks.hpp"
37 #include "dialogs/wizard.hpp"
38 #include "dialogs/playlist.hpp"
39 #include "dialogs/open.hpp"
40 #include "dialogs/updatevlc.hpp"
41 #include "dialogs/fileinfo.hpp"
42 #include "dialogs/iteminfo.hpp"
43 #include "dialogs/preferences.hpp"
44 #include "dialogs/messages.hpp"
45 #include "dialogs/interaction.hpp"
46 #include "interface.hpp"
47
48 /* include the icon graphic */
49 #include "../../../share/vlc32x32.xpm"
50
51
52 /* Dialogs Provider */
53 namespace wxvlc
54 {
55 class DialogsProvider: public wxFrame
56 {
57 public:
58     /* Constructor */
59     DialogsProvider( intf_thread_t *p_intf, wxWindow *p_parent );
60     virtual ~DialogsProvider();
61
62 private:
63     void Open( int i_access_method, int i_arg );
64
65     /* Event handlers (these functions should _not_ be virtual) */
66 #ifdef UPDATE_CHECK
67     void OnUpdateVLC( wxCommandEvent& event );
68 #endif
69     //void OnVLM( wxCommandEvent& event );
70     void OnInteraction( wxCommandEvent& event );
71     void OnExit( wxCommandEvent& event );
72     void OnPlaylist( wxCommandEvent& event );
73     void OnMessages( wxCommandEvent& event );
74     void OnFileInfo( wxCommandEvent& event );
75     void OnPreferences( wxCommandEvent& event );
76     void OnWizardDialog( wxCommandEvent& event );
77     void OnBookmarks( wxCommandEvent& event );
78
79     void OnOpenFileGeneric( wxCommandEvent& event );
80     void OnOpenFileSimple( wxCommandEvent& event );
81     void OnOpenDirectory( wxCommandEvent& event );
82     void OnOpenFile( wxCommandEvent& event );
83     void OnOpenDisc( wxCommandEvent& event );
84     void OnOpenNet( wxCommandEvent& event );
85     void OnOpenCapture( wxCommandEvent& event );
86     void OnOpenSat( wxCommandEvent& event );
87
88     void OnPopupMenu( wxCommandEvent& event );
89     void OnAudioPopupMenu( wxCommandEvent& event );
90     void OnVideoPopupMenu( wxCommandEvent& event );
91     void OnMiscPopupMenu( wxCommandEvent& event );
92
93     void OnIdle( wxIdleEvent& event );
94
95     void OnExitThread( wxCommandEvent& event );
96
97     DECLARE_EVENT_TABLE();
98
99     intf_thread_t *p_intf;
100
101 public:
102     /* Secondary windows */
103     OpenDialog          *p_open_dialog;
104     wxFileDialog        *p_file_dialog;
105     wxDirDialog         *p_dir_dialog;
106     Playlist            *p_playlist_dialog;
107     Messages            *p_messages_dialog;
108     FileInfo            *p_fileinfo_dialog;
109     WizardDialog        *p_wizard_dialog;
110     wxFrame             *p_prefs_dialog;
111     wxFrame             *p_bookmarks_dialog;
112     wxFileDialog        *p_file_generic_dialog;
113 #ifdef UPDATE_CHECK
114     UpdateVLC           *p_updatevlc_dialog;
115 #endif
116     //VLMFrame            *p_vlm_dialog;
117 };
118 }
119
120 DEFINE_LOCAL_EVENT_TYPE( wxEVT_DIALOG );
121
122 BEGIN_EVENT_TABLE(DialogsProvider, wxFrame)
123     /* Idle loop used to update some of the dialogs */
124     EVT_IDLE(DialogsProvider::OnIdle)
125
126     /* Custom wxDialog events */
127     EVT_COMMAND(INTF_DIALOG_FILE, wxEVT_DIALOG, DialogsProvider::OnOpenFile)
128     EVT_COMMAND(INTF_DIALOG_DISC, wxEVT_DIALOG, DialogsProvider::OnOpenDisc)
129     EVT_COMMAND(INTF_DIALOG_NET, wxEVT_DIALOG, DialogsProvider::OnOpenNet)
130     EVT_COMMAND(INTF_DIALOG_CAPTURE, wxEVT_DIALOG,
131                 DialogsProvider::OnOpenCapture)
132     EVT_COMMAND(INTF_DIALOG_FILE_SIMPLE, wxEVT_DIALOG,
133                 DialogsProvider::OnOpenFileSimple)
134     EVT_COMMAND(INTF_DIALOG_FILE_GENERIC, wxEVT_DIALOG,
135                 DialogsProvider::OnOpenFileGeneric)
136     EVT_COMMAND(INTF_DIALOG_DIRECTORY, wxEVT_DIALOG,
137                 DialogsProvider::OnOpenDirectory)
138
139     EVT_COMMAND(INTF_DIALOG_PLAYLIST, wxEVT_DIALOG,
140                 DialogsProvider::OnPlaylist)
141     EVT_COMMAND(INTF_DIALOG_MESSAGES, wxEVT_DIALOG,
142                 DialogsProvider::OnMessages)
143     EVT_COMMAND(INTF_DIALOG_PREFS, wxEVT_DIALOG,
144                 DialogsProvider::OnPreferences)
145     EVT_COMMAND(INTF_DIALOG_WIZARD, wxEVT_DIALOG,
146                 DialogsProvider::OnWizardDialog)
147     EVT_COMMAND(INTF_DIALOG_FILEINFO, wxEVT_DIALOG,
148                 DialogsProvider::OnFileInfo)
149     EVT_COMMAND(INTF_DIALOG_BOOKMARKS, wxEVT_DIALOG,
150                 DialogsProvider::OnBookmarks)
151
152     EVT_COMMAND(INTF_DIALOG_POPUPMENU, wxEVT_DIALOG,
153                 DialogsProvider::OnPopupMenu)
154     EVT_COMMAND(INTF_DIALOG_AUDIOPOPUPMENU, wxEVT_DIALOG,
155                 DialogsProvider::OnAudioPopupMenu)
156     EVT_COMMAND(INTF_DIALOG_VIDEOPOPUPMENU, wxEVT_DIALOG,
157                 DialogsProvider::OnVideoPopupMenu)
158     EVT_COMMAND(INTF_DIALOG_MISCPOPUPMENU, wxEVT_DIALOG,
159                 DialogsProvider::OnMiscPopupMenu)
160
161     EVT_COMMAND(INTF_DIALOG_EXIT, wxEVT_DIALOG,
162                 DialogsProvider::OnExitThread)
163 #ifdef UPDATE_CHECK
164     EVT_COMMAND(INTF_DIALOG_UPDATEVLC, wxEVT_DIALOG,
165                 DialogsProvider::OnUpdateVLC)
166 #endif
167 #if 0
168     EVT_COMMAND(INTF_DIALOG_VLM, wxEVT_DIALOG,
169                 DialogsProvider::OnVLM)
170 #endif
171     EVT_COMMAND( INTF_DIALOG_INTERACTION, wxEVT_DIALOG,
172                 DialogsProvider::OnInteraction )
173 END_EVENT_TABLE()
174
175 wxWindow *CreateDialogsProvider( intf_thread_t *p_intf, wxWindow *p_parent )
176 {
177     return new DialogsProvider( p_intf, p_parent );
178 }
179
180 /*****************************************************************************
181  * Constructor.
182  *****************************************************************************/
183 DialogsProvider::DialogsProvider( intf_thread_t *_p_intf, wxWindow *p_parent )
184   :  wxFrame( p_parent, -1, wxT("") )
185 {
186     /* Initializations */
187     p_intf = _p_intf;
188     p_open_dialog = NULL;
189     p_file_dialog = NULL;
190     p_playlist_dialog = NULL;
191     p_messages_dialog = NULL;
192     p_fileinfo_dialog = NULL;
193     p_prefs_dialog = NULL;
194     p_file_generic_dialog = NULL;
195     p_wizard_dialog = NULL;
196     p_bookmarks_dialog = NULL;
197     p_dir_dialog = NULL;
198     p_updatevlc_dialog = NULL;
199     //p_vlm_dialog = NULL;
200
201     /* Give our interface a nice little icon */
202     p_intf->p_sys->p_icon = new wxIcon( (const char**) vlc_xpm );
203
204     /* Create the messages dialog so it can begin storing logs */
205     p_messages_dialog = new Messages( p_intf, p_parent ? p_parent : this );
206
207     /* Check if user wants to show the bookmarks dialog by default */
208     wxCommandEvent dummy_event;
209     if( config_GetInt( p_intf, "wx-bookmarks" ) )
210         OnBookmarks( dummy_event );
211
212     /* Intercept all menu events in our custom event handler */
213     PushEventHandler( new MenuEvtHandler( p_intf, NULL ) );
214
215
216     WindowSettings *ws = p_intf->p_sys->p_window_settings;
217     wxPoint p;
218     wxSize  s;
219     bool    b_shown;
220
221 #define INIT( id, w, N, S ) \
222     if( ws->GetSettings( WindowSettings::id, b_shown, p, s ) && b_shown ) \
223     {                           \
224         if( !w )                \
225             w = N;              \
226         w->SetSize( s );        \
227         w->Move( p );           \
228         w->S( true );           \
229     }
230
231     INIT( ID_PLAYLIST, p_playlist_dialog, new Playlist(p_intf,this), ShowPlaylist );
232     INIT( ID_MESSAGES, p_messages_dialog, new Messages(p_intf,this), Show );
233     INIT( ID_FILE_INFO, p_fileinfo_dialog, new FileInfo(p_intf,this), Show );
234     INIT( ID_BOOKMARKS, p_bookmarks_dialog, new BookmarksDialog(p_intf,this), Show);
235 #undef INIT
236 }
237
238 DialogsProvider::~DialogsProvider()
239 {
240     WindowSettings *ws = p_intf->p_sys->p_window_settings;
241
242 #define UPDATE(id,w)                                        \
243   {                                                         \
244     if( w && w->IsShown() && !w->IsIconized() )             \
245         ws->SetSettings(  WindowSettings::id, true,         \
246                           w->GetPosition(), w->GetSize() ); \
247     else                                                    \
248         ws->SetSettings(  WindowSettings::id, false );      \
249   }
250
251     UPDATE( ID_PLAYLIST,  p_playlist_dialog );
252     UPDATE( ID_MESSAGES,  p_messages_dialog );
253     UPDATE( ID_FILE_INFO, p_fileinfo_dialog );
254     UPDATE( ID_BOOKMARKS, p_bookmarks_dialog );
255
256 #undef UPDATE
257
258     PopEventHandler(true);
259
260     /* Clean up */
261     if( p_open_dialog )     delete p_open_dialog;
262     if( p_prefs_dialog )    p_prefs_dialog->Destroy();
263     if( p_file_dialog )     delete p_file_dialog;
264     if( p_playlist_dialog ) delete p_playlist_dialog;
265     if( p_messages_dialog ) delete p_messages_dialog;
266     if( p_fileinfo_dialog ) delete p_fileinfo_dialog;
267     if( p_file_generic_dialog ) delete p_file_generic_dialog;
268     if( p_wizard_dialog ) delete p_wizard_dialog;
269     if( p_bookmarks_dialog ) delete p_bookmarks_dialog;
270     if( p_updatevlc_dialog ) delete p_updatevlc_dialog;
271     //if( p_vlm_dialog ) delete p_vlm_dialog;
272
273
274     if( p_intf->p_sys->p_icon ) delete p_intf->p_sys->p_icon;
275
276     /* We must set this here because on win32 this destructor will be
277      * automatically called so we must not call it again on wxApp->OnExit().
278      * There shouldn't be any race conditions as all this should be done
279      * from the same thread. */
280     p_intf->p_sys->p_wxwindow = NULL;
281 }
282
283 void DialogsProvider::OnIdle( wxIdleEvent& WXUNUSED(event) )
284 {
285     /* Update the log window */
286     if( p_messages_dialog )
287         p_messages_dialog->UpdateLog();
288
289     /* Update the playlist */
290     if( p_playlist_dialog )
291         p_playlist_dialog->UpdatePlaylist();
292
293     /* Update the fileinfo windows */
294     if( p_fileinfo_dialog )
295         p_fileinfo_dialog->Update();
296 }
297
298 void DialogsProvider::OnPlaylist( wxCommandEvent& WXUNUSED(event) )
299 {
300     /* Show/hide the playlist window */
301     if( !p_playlist_dialog )
302         p_playlist_dialog = new Playlist( p_intf, this );
303
304     if( p_playlist_dialog )
305     {
306         p_playlist_dialog->ShowPlaylist( !p_playlist_dialog->IsShown() );
307     }
308 }
309
310 void DialogsProvider::OnMessages( wxCommandEvent& WXUNUSED(event) )
311 {
312     /* Show/hide the log window */
313     if( !p_messages_dialog )
314         p_messages_dialog = new Messages( p_intf, this );
315
316     if( p_messages_dialog )
317     {
318         p_messages_dialog->Show( !p_messages_dialog->IsShown() );
319     }
320 }
321
322 void DialogsProvider::OnFileInfo( wxCommandEvent& WXUNUSED(event) )
323 {
324     /* Show/hide the file info window */
325     if( !p_fileinfo_dialog )
326         p_fileinfo_dialog = new FileInfo( p_intf, this );
327
328     if( p_fileinfo_dialog )
329     {
330         p_fileinfo_dialog->Show( !p_fileinfo_dialog->IsShown() );
331     }
332 }
333
334 void DialogsProvider::OnPreferences( wxCommandEvent& WXUNUSED(event) )
335 {
336     /* Show/hide the open dialog */
337     if( !p_prefs_dialog )
338         p_prefs_dialog = new PrefsDialog( p_intf, this );
339
340     if( p_prefs_dialog )
341     {
342         p_prefs_dialog->Show( !p_prefs_dialog->IsShown() );
343     }
344 }
345
346 void DialogsProvider::OnWizardDialog( wxCommandEvent& WXUNUSED(event) )
347 {
348     p_wizard_dialog = new WizardDialog( p_intf, this, NULL, 0, 0 );
349
350     if( p_wizard_dialog )
351     {
352         p_wizard_dialog->Run();
353         delete p_wizard_dialog;
354     }
355
356     p_wizard_dialog = NULL;
357 }
358
359 void DialogsProvider::OnBookmarks( wxCommandEvent& WXUNUSED(event) )
360 {
361     /* Show/hide the open dialog */
362     if( !p_bookmarks_dialog )
363         p_bookmarks_dialog = new BookmarksDialog( p_intf, this );
364
365     if( p_bookmarks_dialog )
366     {
367         p_bookmarks_dialog->Show( !p_bookmarks_dialog->IsShown() );
368     }
369 }
370
371 void DialogsProvider::OnOpenFileGeneric( wxCommandEvent& event )
372 {
373     intf_dialog_args_t *p_arg = (intf_dialog_args_t *)event.GetClientData();
374
375     if( p_arg == NULL )
376     {
377         msg_Dbg( p_intf, "OnOpenFileGeneric() called with NULL arg" );
378         return;
379     }
380
381     if( p_file_generic_dialog == NULL )
382         p_file_generic_dialog = new wxFileDialog( NULL );
383
384     if( p_file_generic_dialog )
385     {
386         p_file_generic_dialog->SetMessage( wxU(p_arg->psz_title) );
387         p_file_generic_dialog->SetWildcard( wxU(p_arg->psz_extensions) );
388         p_file_generic_dialog->SetWindowStyle( (p_arg->b_save ? wxSAVE : wxOPEN) |
389                                                (p_arg->b_multiple ? wxMULTIPLE:0) );
390     }
391
392     if( p_file_generic_dialog &&
393         p_file_generic_dialog->ShowModal() == wxID_OK )
394     {
395         wxArrayString paths;
396
397         p_file_generic_dialog->GetPaths( paths );
398
399         p_arg->i_results = paths.GetCount();
400         p_arg->psz_results = (char **)malloc( p_arg->i_results *
401                                               sizeof(char *) );
402         for( size_t i = 0; i < paths.GetCount(); i++ )
403         {
404             p_arg->psz_results[i] = strdup( paths[i].mb_str(wxConvUTF8) );
405         }
406     }
407
408     /* Callback */
409     if( p_arg->pf_callback )
410     {
411         p_arg->pf_callback( p_arg );
412     }
413
414     if( p_arg->psz_results )
415     {
416         for( int i = 0; i < p_arg->i_results; i++ )
417         {
418             free( p_arg->psz_results[i] );
419         }
420         free( p_arg->psz_results );
421     }
422     if( p_arg->psz_title ) free( p_arg->psz_title );
423     if( p_arg->psz_extensions ) free( p_arg->psz_extensions );
424
425     free( p_arg );
426 }
427
428 void DialogsProvider::OnOpenFileSimple( wxCommandEvent& event )
429 {
430     playlist_t *p_playlist =
431         (playlist_t *)vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
432                                        FIND_ANYWHERE );
433     if( p_playlist == NULL )
434     {
435         return;
436     }
437
438     if( p_file_dialog == NULL )
439         p_file_dialog = new wxFileDialog( NULL, wxU(_("Open File")),
440             wxT(""), wxT(""), wxT("*"), wxOPEN | wxMULTIPLE );
441
442     p_file_dialog->SetWildcard(wxU(_("All Files (*.*)|*"
443         "|Sound Files (*.mp3, *.ogg, etc.)|" EXTENSIONS_AUDIO
444         "|Video Files (*.avi, *.mpg, etc.)|" EXTENSIONS_VIDEO
445         "|Playlist Files (*.m3u, *.pls, etc.)|" EXTENSIONS_PLAYLIST
446         "|Subtitle Files (*.srt, *.sub, etc.)|" EXTENSIONS_SUBTITLE)));
447
448     if( p_file_dialog && p_file_dialog->ShowModal() == wxID_OK )
449     {
450         wxArrayString paths;
451
452         p_file_dialog->GetPaths( paths );
453
454         for( size_t i = 0; i < paths.GetCount(); i++ )
455         {
456             char *psz_utf8 = wxFromLocale( paths[i] );
457             if( event.GetInt() )
458                 playlist_Add( p_playlist, psz_utf8, NULL,
459                               PLAYLIST_APPEND | (i ? 0 : PLAYLIST_GO) |
460                               (i ? PLAYLIST_PREPARSE : 0 ),
461                               PLAYLIST_END, VLC_TRUE, VLC_FALSE );
462             else
463                 playlist_Add( p_playlist, psz_utf8, NULL,
464                               PLAYLIST_APPEND | PLAYLIST_PREPARSE , PLAYLIST_END , VLC_TRUE, VLC_FALSE );
465             wxLocaleFree( psz_utf8 );
466         }
467     }
468
469     vlc_object_release( p_playlist );
470 }
471
472 void DialogsProvider::OnOpenDirectory( wxCommandEvent& event )
473 {
474     playlist_t *p_playlist =
475         (playlist_t *)vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
476                                        FIND_ANYWHERE );
477     if( p_playlist == NULL )
478     {
479         return;
480     }
481
482     if( p_dir_dialog == NULL )
483         p_dir_dialog = new wxDirDialog( NULL, wxU(_("Select a directory")) );
484
485     if( p_dir_dialog && p_dir_dialog->ShowModal() == wxID_OK )
486     {
487         wxString path = p_dir_dialog->GetPath();
488         char *psz_utf8 = wxFromLocale( path );
489         playlist_Add( p_playlist, psz_utf8, NULL,
490                       PLAYLIST_APPEND | (event.GetInt() ? PLAYLIST_GO : 0),
491                       PLAYLIST_END, VLC_TRUE, VLC_FALSE );
492         wxLocaleFree( psz_utf8 );
493     }
494
495     vlc_object_release( p_playlist );
496 }
497
498 void DialogsProvider::OnOpenFile( wxCommandEvent& event )
499 {
500     Open( FILE_ACCESS, event.GetInt() );
501 }
502
503 void DialogsProvider::OnOpenDisc( wxCommandEvent& event )
504 {
505     Open( DISC_ACCESS, event.GetInt() );
506 }
507
508 void DialogsProvider::OnOpenNet( wxCommandEvent& event )
509 {
510     Open( NET_ACCESS, event.GetInt() );
511 }
512
513 void DialogsProvider::OnOpenCapture( wxCommandEvent& event )
514 {
515     Open( CAPTURE_ACCESS, event.GetInt() );
516 }
517
518 void DialogsProvider::Open( int i_access_method, int i_arg )
519 {
520     /* Show/hide the open dialog */
521     if( !p_open_dialog )
522         p_open_dialog = new OpenDialog( p_intf, this, i_access_method, i_arg,
523                                         OPEN_NORMAL );
524
525     if( p_open_dialog )
526     {
527         p_open_dialog->Show( i_access_method, i_arg );
528     }
529 }
530
531 void DialogsProvider::OnPopupMenu( wxCommandEvent& event )
532 {
533     wxPoint mousepos = ScreenToClient( wxGetMousePosition() );
534     ::PopupMenu( p_intf, this, mousepos );
535 }
536
537 void DialogsProvider::OnAudioPopupMenu( wxCommandEvent& event )
538 {
539     wxPoint mousepos = ScreenToClient( wxGetMousePosition() );
540     ::AudioPopupMenu( p_intf, this, mousepos );
541 }
542 void DialogsProvider::OnVideoPopupMenu( wxCommandEvent& event )
543 {
544     wxPoint mousepos = ScreenToClient( wxGetMousePosition() );
545     ::VideoPopupMenu( p_intf, this, mousepos );
546 }
547 void DialogsProvider::OnMiscPopupMenu( wxCommandEvent& event )
548 {
549     wxPoint mousepos = ScreenToClient( wxGetMousePosition() );
550     ::MiscPopupMenu( p_intf, this, mousepos );
551 }
552
553 void DialogsProvider::OnExitThread( wxCommandEvent& WXUNUSED(event) )
554 {
555     wxTheApp->ExitMainLoop();
556 }
557
558 #ifdef UPDATE_CHECK
559 void DialogsProvider::OnUpdateVLC( wxCommandEvent& WXUNUSED(event) )
560 {
561     /* Show/hide the file info window */
562     if( !p_updatevlc_dialog )
563         p_updatevlc_dialog = new UpdateVLC( p_intf, this );
564
565     if( p_updatevlc_dialog )
566     {
567         p_updatevlc_dialog->Show( !p_updatevlc_dialog->IsShown() );
568     }
569 }
570 #endif
571
572 #if 0
573 void DialogsProvider::OnVLM( wxCommandEvent& WXUNUSED(event) )
574 {
575     /* Show/hide the file info window */
576     if( !p_vlm_dialog )
577         p_vlm_dialog = new VLMFrame( p_intf, this );
578
579     if( p_vlm_dialog )
580     {
581         p_vlm_dialog->Show( !p_vlm_dialog->IsShown() );
582     }
583 }
584 #endif
585
586 void DialogsProvider::OnInteraction( wxCommandEvent& event )
587 {
588     intf_dialog_args_t *p_arg = (intf_dialog_args_t *)event.GetClientData();
589     interaction_dialog_t *p_dialog;
590     InteractionDialog *p_wxdialog;
591
592     return;
593
594     if( p_arg == NULL )
595     {
596         msg_Dbg( p_intf, "OnInteraction() called with NULL arg" );
597         return;
598     }
599     p_dialog = p_arg->p_dialog;
600
601     /** \bug We store the interface object for the dialog in the p_private
602      * field of the core dialog object. This is not safe if we change
603      * interface while a dialog is loaded */
604
605     switch( p_dialog->i_action )
606     {
607     case INTERACT_NEW:
608         p_wxdialog = new InteractionDialog( p_intf, this, p_dialog );
609         p_dialog->p_private = (void*)p_wxdialog;
610         p_wxdialog->Show();
611         break;
612     case INTERACT_UPDATE:
613         p_wxdialog = (InteractionDialog*)(p_dialog->p_private);
614         if( p_wxdialog)
615             p_wxdialog->Update();
616         break;
617     case INTERACT_HIDE:
618         p_wxdialog = (InteractionDialog*)(p_dialog->p_private);
619         if( p_wxdialog )
620             p_wxdialog->Hide();
621         p_dialog->i_status = HIDDEN_DIALOG;
622         break;
623     case INTERACT_DESTROY:
624         p_wxdialog = (InteractionDialog*)(p_dialog->p_private);
625         /// \todo
626         p_dialog->i_status = DESTROYED_DIALOG;
627         break;
628     }
629 }