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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * messages.cpp : wxWindows plugin for vlc
  3.  *****************************************************************************
  4.  * Copyright (C) 2000-2004 VideoLAN
  5.  * $Id: messages.cpp 8175 2004-07-12 06:47:15Z zorglub $
  6.  *
  7.  * Authors: Olivier Teuli鑢e <ipkiss@via.ecp.fr>
  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/intf.h>
  32. #include "wxwindows.h"
  33. /*****************************************************************************
  34.  * Event Table.
  35.  *****************************************************************************/
  36. /* IDs for the controls and the menu commands */
  37. enum
  38. {
  39.     Close_Event,
  40.     Clear_Event,
  41.     Save_Log_Event
  42. };
  43. BEGIN_EVENT_TABLE(Messages, wxFrame)
  44.     /* Button events */
  45.     EVT_BUTTON(wxID_OK, Messages::OnClose)
  46.     EVT_BUTTON(wxID_CLEAR, Messages::OnClear)
  47.     EVT_BUTTON(wxID_SAVEAS, Messages::OnSaveLog)
  48.     /* Special events : we don't want to destroy the window when the user
  49.      * clicks on (X) */
  50.     EVT_CLOSE(Messages::OnClose)
  51. END_EVENT_TABLE()
  52. /*****************************************************************************
  53.  * Constructor.
  54.  *****************************************************************************/
  55. Messages::Messages( intf_thread_t *_p_intf, wxWindow *p_parent ):
  56.     wxFrame( p_parent, -1, wxU(_("Messages")), wxDefaultPosition,
  57.              wxDefaultSize, wxDEFAULT_FRAME_STYLE )
  58. {
  59.     /* Initializations */
  60.     p_intf = _p_intf;
  61.     b_verbose = VLC_FALSE;
  62.     SetIcon( *p_intf->p_sys->p_icon );
  63.     save_log_dialog = NULL;
  64.     b_verbose = VLC_FALSE;
  65.     /* Create a panel to put everything in */
  66.     wxPanel *messages_panel = new wxPanel( this, -1 );
  67.     messages_panel->SetAutoLayout( TRUE );
  68.     /* Create the textctrl and some text attributes */
  69.     textctrl = new wxTextCtrl( messages_panel, -1, wxT(""), wxDefaultPosition,
  70.         wxSize::wxSize( 400, 500 ), wxTE_MULTILINE | wxTE_READONLY |
  71.                                     wxTE_RICH | wxTE_NOHIDESEL );
  72.     info_attr = new wxTextAttr( wxColour::wxColour( 0, 128, 0 ) );
  73.     err_attr = new wxTextAttr( *wxRED );
  74.     warn_attr = new wxTextAttr( *wxBLUE );
  75.     dbg_attr = new wxTextAttr( *wxBLACK );
  76.     /* Create the OK button */
  77.     wxButton *ok_button = new wxButton( messages_panel, wxID_OK,
  78.                                         wxU(_("Close")));
  79.     ok_button->SetDefault();
  80.     /* Create the Clear button */
  81.     wxButton *clear_button = new wxButton( messages_panel, wxID_CLEAR,
  82.                                            wxU(_("Clear")));
  83.     clear_button->SetDefault();
  84.     /* Create the Save Log button */
  85.      wxButton *save_log_button = new wxButton( messages_panel, wxID_SAVEAS,
  86.                                                wxU(_("Save As...")));
  87.      save_log_button->SetDefault();
  88.     /* Place everything in sizers */
  89.     wxBoxSizer *buttons_sizer = new wxBoxSizer( wxHORIZONTAL );
  90.     buttons_sizer->Add( ok_button, 0, wxEXPAND |wxALIGN_LEFT| wxALL, 5 );
  91.     buttons_sizer->Add( clear_button, 0, wxEXPAND |wxALIGN_LEFT| wxALL, 5 );
  92.     buttons_sizer->Add( save_log_button, 0, wxEXPAND |wxALIGN_LEFT| wxALL, 5 );
  93.     buttons_sizer->Add( new wxPanel( this, -1 ), 1, wxALL, 5 );
  94.     buttons_sizer->Layout();
  95.     wxBoxSizer *main_sizer = new wxBoxSizer( wxVERTICAL );
  96.     wxBoxSizer *panel_sizer = new wxBoxSizer( wxVERTICAL );
  97.     panel_sizer->Add( textctrl, 1, wxEXPAND | wxALL, 5 );
  98.     panel_sizer->Add( buttons_sizer, 0, wxEXPAND | wxALL, 5 );
  99.     panel_sizer->Layout();
  100.     messages_panel->SetSizerAndFit( panel_sizer );
  101.     main_sizer->Add( messages_panel, 1, wxGROW, 0 );
  102.     main_sizer->Layout();
  103.     SetSizerAndFit( main_sizer );
  104. }
  105. Messages::~Messages()
  106. {
  107.     /* Clean up */
  108.     if( save_log_dialog ) delete save_log_dialog;
  109.     delete info_attr;
  110.     delete err_attr;
  111.     delete warn_attr;
  112.     delete dbg_attr;
  113. }
  114. bool Messages::Show( bool show )
  115. {
  116.     b_verbose = show;
  117.     return wxFrame::Show( show );
  118. }
  119. void Messages::UpdateLog()
  120. {
  121.     msg_subscription_t *p_sub = p_intf->p_sys->p_sub;
  122.     int i_start;
  123.     vlc_mutex_lock( p_sub->p_lock );
  124.     int i_stop = *p_sub->pi_stop;
  125.     vlc_mutex_unlock( p_sub->p_lock );
  126.     if( p_sub->i_start != i_stop )
  127.     {
  128.         for( i_start = p_sub->i_start;
  129.              i_start != i_stop;
  130.              i_start = (i_start+1) % VLC_MSG_QSIZE )
  131.         {
  132.             if( !b_verbose &&
  133.                 VLC_MSG_ERR != p_sub->p_msg[i_start].i_type )
  134.                 continue;
  135.             /* Append all messages to log window */
  136.             textctrl->SetDefaultStyle( *dbg_attr );
  137.             (*textctrl) << wxL2U(p_sub->p_msg[i_start].psz_module);
  138.             switch( p_sub->p_msg[i_start].i_type )
  139.             {
  140.             case VLC_MSG_INFO:
  141.                 (*textctrl) << wxT(": ");
  142.                 textctrl->SetDefaultStyle( *info_attr );
  143.                 break;
  144.             case VLC_MSG_ERR:
  145.                 (*textctrl) << wxT(" error: ");
  146.                 textctrl->SetDefaultStyle( *err_attr );
  147.                 break;
  148.             case VLC_MSG_WARN:
  149.                 (*textctrl) << wxT(" warning: ");
  150.                 textctrl->SetDefaultStyle( *warn_attr );
  151.                 break;
  152.             case VLC_MSG_DBG:
  153.             default:
  154.                 (*textctrl) << wxT(" debug: ");
  155.                 break;
  156.             }
  157.             /* Add message */
  158.             (*textctrl) << wxL2U(p_sub->p_msg[i_start].psz_msg) << wxT("n");
  159.         }
  160.         vlc_mutex_lock( p_sub->p_lock );
  161.         p_sub->i_start = i_start;
  162.         vlc_mutex_unlock( p_sub->p_lock );
  163.     }
  164. }
  165. /*****************************************************************************
  166.  * Private methods.
  167.  *****************************************************************************/
  168. void Messages::OnClose( wxCommandEvent& WXUNUSED(event) )
  169. {
  170.     Hide();
  171. }
  172. void Messages::OnClear( wxCommandEvent& WXUNUSED(event) )
  173. {
  174.     textctrl->Clear();
  175. }
  176. void Messages::OnSaveLog( wxCommandEvent& WXUNUSED(event) )
  177. {
  178.     if( save_log_dialog == NULL )
  179.         save_log_dialog = new wxFileDialog( this,
  180.             wxU(_("Save Messages As...")),
  181.             wxT(""), wxT("messages"), wxT("*"), wxSAVE | wxOVERWRITE_PROMPT );
  182.     if( save_log_dialog && save_log_dialog->ShowModal() == wxID_OK )
  183.     {
  184.         if( !textctrl->SaveFile( save_log_dialog->GetPath() ) )
  185.         {
  186.             // [FIX ME] should print an error message
  187.         }
  188.     }
  189. }