dialogs.cpp
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:13k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * dialogs.cpp : wxWindows plugin for vlc
  3.  *****************************************************************************
  4.  * Copyright (C) 2000-2004 VideoLAN
  5.  * $Id: dialogs.cpp 8512 2004-08-24 18:43:41Z asmax $
  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.  * Preamble
  25.  *****************************************************************************/
  26. #include <stdlib.h>                                      /* malloc(), free() */
  27. #include <errno.h>                                                 /* ENOMEM */
  28. #include <string.h>                                            /* strerror() */
  29. #include <stdio.h>
  30. #include <vlc/vlc.h>
  31. #include <vlc/aout.h>
  32. #include <vlc/intf.h>
  33. #include "wxwindows.h"
  34. /* include the icon graphic */
  35. #include "../../../share/vlc32x32.xpm"
  36. /* Dialogs Provider */
  37. class DialogsProvider: public wxFrame
  38. {
  39. public:
  40.     /* Constructor */
  41.     DialogsProvider( intf_thread_t *p_intf, wxWindow *p_parent );
  42.     virtual ~DialogsProvider();
  43. private:
  44.     void Open( int i_access_method, int i_arg );
  45.     /* Event handlers (these functions should _not_ be virtual) */
  46.     void OnExit( wxCommandEvent& event );
  47.     void OnPlaylist( wxCommandEvent& event );
  48.     void OnMessages( wxCommandEvent& event );
  49.     void OnFileInfo( wxCommandEvent& event );
  50.     void OnPreferences( wxCommandEvent& event );
  51.     void OnWizardDialog( wxCommandEvent& event );
  52.     void OnBookmarks( wxCommandEvent& event );
  53.     void OnOpenFileGeneric( wxCommandEvent& event );
  54.     void OnOpenFileSimple( wxCommandEvent& event );
  55.     void OnOpenFile( wxCommandEvent& event );
  56.     void OnOpenDisc( wxCommandEvent& event );
  57.     void OnOpenNet( wxCommandEvent& event );
  58.     void OnOpenCapture( wxCommandEvent& event );
  59.     void OnOpenSat( wxCommandEvent& event );
  60.     void OnPopupMenu( wxCommandEvent& event );
  61.     void OnIdle( wxIdleEvent& event );
  62.     void OnExitThread( wxCommandEvent& event );
  63.     DECLARE_EVENT_TABLE();
  64.     intf_thread_t *p_intf;
  65. public:
  66.     /* Secondary windows */
  67.     OpenDialog          *p_open_dialog;
  68.     wxFileDialog        *p_file_dialog;
  69.     Playlist            *p_playlist_dialog;
  70.     Messages            *p_messages_dialog;
  71.     FileInfo            *p_fileinfo_dialog;
  72.     WizardDialog        *p_wizard_dialog;
  73.     wxFrame             *p_prefs_dialog;
  74.     wxWindow            *p_bookmarks_dialog;
  75.     wxFileDialog        *p_file_generic_dialog;
  76. };
  77. DEFINE_LOCAL_EVENT_TYPE( wxEVT_DIALOG );
  78. BEGIN_EVENT_TABLE(DialogsProvider, wxFrame)
  79.     /* Idle loop used to update some of the dialogs */
  80.     EVT_IDLE(DialogsProvider::OnIdle)
  81.     /* Custom wxDialog events */
  82.     EVT_COMMAND(INTF_DIALOG_FILE, wxEVT_DIALOG, DialogsProvider::OnOpenFile)
  83.     EVT_COMMAND(INTF_DIALOG_DISC, wxEVT_DIALOG, DialogsProvider::OnOpenDisc)
  84.     EVT_COMMAND(INTF_DIALOG_NET, wxEVT_DIALOG, DialogsProvider::OnOpenNet)
  85.     EVT_COMMAND(INTF_DIALOG_CAPTURE, wxEVT_DIALOG,
  86.                 DialogsProvider::OnOpenCapture)
  87.     EVT_COMMAND(INTF_DIALOG_FILE_SIMPLE, wxEVT_DIALOG,
  88.                 DialogsProvider::OnOpenFileSimple)
  89.     EVT_COMMAND(INTF_DIALOG_FILE_GENERIC, wxEVT_DIALOG,
  90.                 DialogsProvider::OnOpenFileGeneric)
  91.     EVT_COMMAND(INTF_DIALOG_PLAYLIST, wxEVT_DIALOG,
  92.                 DialogsProvider::OnPlaylist)
  93.     EVT_COMMAND(INTF_DIALOG_MESSAGES, wxEVT_DIALOG,
  94.                 DialogsProvider::OnMessages)
  95.     EVT_COMMAND(INTF_DIALOG_PREFS, wxEVT_DIALOG,
  96.                 DialogsProvider::OnPreferences)
  97.     EVT_COMMAND(INTF_DIALOG_WIZARD, wxEVT_DIALOG,
  98.                 DialogsProvider::OnWizardDialog)
  99.     EVT_COMMAND(INTF_DIALOG_FILEINFO, wxEVT_DIALOG,
  100.                 DialogsProvider::OnFileInfo)
  101.     EVT_COMMAND(INTF_DIALOG_BOOKMARKS, wxEVT_DIALOG,
  102.                 DialogsProvider::OnBookmarks)
  103.     EVT_COMMAND(INTF_DIALOG_POPUPMENU, wxEVT_DIALOG,
  104.                 DialogsProvider::OnPopupMenu)
  105.     EVT_COMMAND(INTF_DIALOG_EXIT, wxEVT_DIALOG,
  106.                 DialogsProvider::OnExitThread)
  107. END_EVENT_TABLE()
  108. wxWindow *CreateDialogsProvider( intf_thread_t *p_intf, wxWindow *p_parent )
  109. {
  110.     return new DialogsProvider( p_intf, p_parent );
  111. }
  112. /*****************************************************************************
  113.  * Constructor.
  114.  *****************************************************************************/
  115. DialogsProvider::DialogsProvider( intf_thread_t *_p_intf, wxWindow *p_parent )
  116.   :  wxFrame( p_parent, -1, wxT("") )
  117. {
  118.     /* Initializations */
  119.     p_intf = _p_intf;
  120.     p_open_dialog = NULL;
  121.     p_file_dialog = NULL;
  122.     p_playlist_dialog = NULL;
  123.     p_messages_dialog = NULL;
  124.     p_fileinfo_dialog = NULL;
  125.     p_prefs_dialog = NULL;
  126.     p_file_generic_dialog = NULL;
  127.     p_wizard_dialog = NULL;
  128.     p_bookmarks_dialog = NULL;
  129.     /* Give our interface a nice little icon */
  130.     p_intf->p_sys->p_icon = new wxIcon( vlc_xpm );
  131.     /* Create the messages dialog so it can begin storing logs */
  132.     p_messages_dialog = new Messages( p_intf, p_parent ? p_parent : this );
  133.     /* Check if user wants to show the bookmarks dialog by default */
  134.     wxCommandEvent dummy_event;
  135.     if( config_GetInt( p_intf, "wxwin-bookmarks" ) )
  136.         OnBookmarks( dummy_event );
  137.     /* Intercept all menu events in our custom event handler */
  138.     PushEventHandler( new MenuEvtHandler( p_intf, NULL ) );
  139. }
  140. DialogsProvider::~DialogsProvider()
  141. {
  142.     /* Clean up */
  143.     if( p_open_dialog )     delete p_open_dialog;
  144.     if( p_prefs_dialog )    p_prefs_dialog->Destroy();
  145.     if( p_file_dialog )     delete p_file_dialog;
  146.     if( p_playlist_dialog ) delete p_playlist_dialog;
  147.     if( p_messages_dialog ) delete p_messages_dialog;
  148.     if( p_fileinfo_dialog ) delete p_fileinfo_dialog;
  149.     if( p_file_generic_dialog ) delete p_file_generic_dialog;
  150.     if( p_wizard_dialog ) delete p_wizard_dialog;
  151.     if( p_bookmarks_dialog ) delete p_bookmarks_dialog;
  152.     if( p_intf->p_sys->p_icon ) delete p_intf->p_sys->p_icon;
  153.     /* We must set this here because on win32 this destructor will be
  154.      * automatically called so we must not call it again on wxApp->OnExit().
  155.      * There shouldn't be any race conditions as all this should be done
  156.      * from the same thread. */
  157.     p_intf->p_sys->p_wxwindow = NULL;
  158. }
  159. void DialogsProvider::OnIdle( wxIdleEvent& WXUNUSED(event) )
  160. {
  161.   /* Update the log window */
  162.   if( p_messages_dialog )
  163.     p_messages_dialog->UpdateLog();
  164.   /* Update the playlist */
  165.   if( p_playlist_dialog )
  166.     p_playlist_dialog->UpdatePlaylist();
  167.   /* Update the fileinfo windows */
  168.   if( p_fileinfo_dialog )
  169.     p_fileinfo_dialog->UpdateFileInfo();
  170. }
  171. void DialogsProvider::OnPlaylist( wxCommandEvent& WXUNUSED(event) )
  172. {
  173.     /* Show/hide the playlist window */
  174.     if( !p_playlist_dialog )
  175.         p_playlist_dialog = new Playlist( p_intf, this );
  176.     if( p_playlist_dialog )
  177.     {
  178.         p_playlist_dialog->ShowPlaylist( !p_playlist_dialog->IsShown() );
  179.     }
  180. }
  181. void DialogsProvider::OnMessages( wxCommandEvent& WXUNUSED(event) )
  182. {
  183.     /* Show/hide the log window */
  184.     if( !p_messages_dialog )
  185.         p_messages_dialog = new Messages( p_intf, this );
  186.     if( p_messages_dialog )
  187.     {
  188.         p_messages_dialog->Show( !p_messages_dialog->IsShown() );
  189.     }
  190. }
  191. void DialogsProvider::OnFileInfo( wxCommandEvent& WXUNUSED(event) )
  192. {
  193.     /* Show/hide the file info window */
  194.     if( !p_fileinfo_dialog )
  195.         p_fileinfo_dialog = new FileInfo( p_intf, this );
  196.     if( p_fileinfo_dialog )
  197.     {
  198.         p_fileinfo_dialog->Show( !p_fileinfo_dialog->IsShown() );
  199.     }
  200. }
  201. void DialogsProvider::OnPreferences( wxCommandEvent& WXUNUSED(event) )
  202. {
  203.     /* Show/hide the open dialog */
  204.     if( !p_prefs_dialog )
  205.         p_prefs_dialog = new PrefsDialog( p_intf, this );
  206.     if( p_prefs_dialog )
  207.     {
  208.         p_prefs_dialog->Show( !p_prefs_dialog->IsShown() );
  209.     }
  210. }
  211. void DialogsProvider::OnWizardDialog( wxCommandEvent& WXUNUSED(event) )
  212. {
  213.     p_wizard_dialog = new WizardDialog( p_intf, this, NULL, 0, 0 );
  214.     if( p_wizard_dialog )
  215.     {
  216.         p_wizard_dialog->Run();
  217.         delete p_wizard_dialog;
  218.     }
  219.     p_wizard_dialog = NULL;
  220. }
  221. void DialogsProvider::OnBookmarks( wxCommandEvent& WXUNUSED(event) )
  222. {
  223.     /* Show/hide the open dialog */
  224.     if( !p_bookmarks_dialog )
  225.         p_bookmarks_dialog = BookmarksDialog( p_intf, this );
  226.     if( p_bookmarks_dialog )
  227.     {
  228.         p_bookmarks_dialog->Show( !p_bookmarks_dialog->IsShown() );
  229.     }
  230. }
  231. void DialogsProvider::OnOpenFileGeneric( wxCommandEvent& event )
  232. {
  233.     intf_dialog_args_t *p_arg = (intf_dialog_args_t *)event.GetClientData();
  234.     if( p_arg == NULL )
  235.     {
  236.         msg_Dbg( p_intf, "OnOpenFileGeneric() called with NULL arg" );
  237.         return;
  238.     }
  239.     if( p_file_generic_dialog == NULL )
  240.         p_file_generic_dialog = new wxFileDialog( NULL );
  241.     if( p_file_generic_dialog )
  242.     {
  243.         p_file_generic_dialog->SetMessage( wxU(p_arg->psz_title) );
  244.         p_file_generic_dialog->SetWildcard( wxU(p_arg->psz_extensions) );
  245.         p_file_generic_dialog->SetStyle( (p_arg->b_save ? wxSAVE : wxOPEN) |
  246.                                          (p_arg->b_multiple ? wxMULTIPLE:0) );
  247.     }
  248.     if( p_file_generic_dialog &&
  249.         p_file_generic_dialog->ShowModal() == wxID_OK )
  250.     {
  251.         wxArrayString paths;
  252.         p_file_generic_dialog->GetPaths( paths );
  253.         p_arg->i_results = paths.GetCount();
  254.         p_arg->psz_results = (char **)malloc( p_arg->i_results *
  255.                                               sizeof(char *) );
  256.         for( size_t i = 0; i < paths.GetCount(); i++ )
  257.         {
  258.             p_arg->psz_results[i] = strdup( paths[i].mb_str() );
  259.         }
  260.     }
  261.     /* Callback */
  262.     if( p_arg->pf_callback )
  263.     {
  264.         p_arg->pf_callback( p_arg );
  265.     }
  266.     if( p_arg->psz_results )
  267.     {
  268.         for( int i = 0; i < p_arg->i_results; i++ )
  269.         {
  270.             free( p_arg->psz_results[i] );
  271.         }
  272.         free( p_arg->psz_results );
  273.     }
  274.     if( p_arg->psz_title ) free( p_arg->psz_title );
  275.     if( p_arg->psz_extensions ) free( p_arg->psz_extensions );
  276.     free( p_arg );
  277. }
  278. void DialogsProvider::OnOpenFileSimple( wxCommandEvent& event )
  279. {
  280.     playlist_t *p_playlist =
  281.         (playlist_t *)vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
  282.                                        FIND_ANYWHERE );
  283.     if( p_playlist == NULL )
  284.     {
  285.         return;
  286.     }
  287.     if( p_file_dialog == NULL )
  288.         p_file_dialog = new wxFileDialog( NULL, wxU(_("Open File")),
  289.             wxT(""), wxT(""), wxT("*"), wxOPEN | wxMULTIPLE );
  290.     if( p_file_dialog && p_file_dialog->ShowModal() == wxID_OK )
  291.     {
  292.         wxArrayString paths;
  293.         p_file_dialog->GetPaths( paths );
  294.         for( size_t i = 0; i < paths.GetCount(); i++ )
  295.             if( event.GetInt() )
  296.                 playlist_Add( p_playlist, (const char *)paths[i].mb_str(),
  297.                               (const char *)paths[i].mb_str(),
  298.                               PLAYLIST_APPEND | (i ? 0 : PLAYLIST_GO),
  299.                               PLAYLIST_END );
  300.             else
  301.                 playlist_Add( p_playlist, (const char *)paths[i].mb_str(),
  302.                               (const char *)paths[i].mb_str(),
  303.                               PLAYLIST_APPEND, PLAYLIST_END );
  304.     }
  305.     vlc_object_release( p_playlist );
  306. }
  307. void DialogsProvider::OnOpenFile( wxCommandEvent& event )
  308. {
  309.     Open( FILE_ACCESS, event.GetInt() );
  310. }
  311. void DialogsProvider::OnOpenDisc( wxCommandEvent& event )
  312. {
  313.     Open( DISC_ACCESS, event.GetInt() );
  314. }
  315. void DialogsProvider::OnOpenNet( wxCommandEvent& event )
  316. {
  317.     Open( NET_ACCESS, event.GetInt() );
  318. }
  319. void DialogsProvider::OnOpenCapture( wxCommandEvent& event )
  320. {
  321.     Open( CAPTURE_ACCESS, event.GetInt() );
  322. }
  323. void DialogsProvider::Open( int i_access_method, int i_arg )
  324. {
  325.     /* Show/hide the open dialog */
  326.     if( !p_open_dialog )
  327.         p_open_dialog = new OpenDialog( p_intf, this, i_access_method, i_arg,
  328.                                         OPEN_NORMAL );
  329.     if( p_open_dialog )
  330.     {
  331.         p_open_dialog->Show( i_access_method, i_arg );
  332.     }
  333. }
  334. void DialogsProvider::OnPopupMenu( wxCommandEvent& event )
  335. {
  336.     wxPoint mousepos = ScreenToClient( wxGetMousePosition() );
  337.     ::PopupMenu( p_intf, this, mousepos );
  338. }
  339. void DialogsProvider::OnExitThread( wxCommandEvent& WXUNUSED(event) )
  340. {
  341.     wxTheApp->ExitMainLoop();
  342. }