]> git.sesse.net Git - vlc/blob - modules/gui/wxwidgets/dialogs/messages.cpp
* Show meta-information separately
[vlc] / modules / gui / wxwidgets / dialogs / messages.cpp
1 /*****************************************************************************
2  * messages.cpp : wxWindows plugin for vlc
3  *****************************************************************************
4  * Copyright (C) 2000-2004 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Olivier Teulière <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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #include "dialogs/messages.hpp"
25
26 /*****************************************************************************
27  * Event Table.
28  *****************************************************************************/
29
30 /* IDs for the controls and the menu commands */
31 enum
32 {
33     Close_Event,
34     Clear_Event,
35     Save_Log_Event
36 };
37
38 BEGIN_EVENT_TABLE(Messages, wxFrame)
39     /* Button events */
40     EVT_BUTTON(wxID_CLOSE, Messages::OnButtonClose)
41     EVT_BUTTON(wxID_CLEAR, Messages::OnClear)
42     EVT_BUTTON(wxID_SAVEAS, Messages::OnSaveLog)
43
44     /* Special events : we don't want to destroy the window when the user
45      * clicks on (X) */
46     EVT_CLOSE(Messages::OnClose)
47 END_EVENT_TABLE()
48
49 /*****************************************************************************
50  * Constructor.
51  *****************************************************************************/
52 Messages::Messages( intf_thread_t *_p_intf, wxWindow *p_parent ):
53     wxFrame( p_parent, -1, wxU(_("Messages")), wxDefaultPosition,
54              wxDefaultSize, wxDEFAULT_FRAME_STYLE )
55 {
56     /* Initializations */
57     p_intf = _p_intf;
58     b_verbose = VLC_FALSE;
59     SetIcon( *p_intf->p_sys->p_icon );
60     save_log_dialog = NULL;
61     b_verbose = VLC_FALSE;
62
63     /* Create a panel to put everything in */
64     wxPanel *messages_panel = new wxPanel( this, -1 );
65     messages_panel->SetAutoLayout( TRUE );
66
67     /* Create the textctrl and some text attributes */
68     textctrl = new wxTextCtrl( messages_panel, -1, wxT(""), wxDefaultPosition,
69         wxSize::wxSize( 400, 500 ), wxTE_MULTILINE | wxTE_READONLY |
70                                     wxTE_RICH | wxTE_NOHIDESEL );
71     info_attr = new wxTextAttr( wxColour::wxColour( 0, 128, 0 ) );
72     err_attr = new wxTextAttr( *wxRED );
73     warn_attr = new wxTextAttr( *wxBLUE );
74     dbg_attr = new wxTextAttr( *wxBLACK );
75
76     /* Create the OK button */
77     wxButton *ok_button = new wxButton( messages_panel, wxID_CLOSE);
78     ok_button->SetDefault();
79
80     /* Create the Clear button */
81     wxButton *clear_button = new wxButton( messages_panel, wxID_CLEAR );
82     clear_button->SetDefault();
83
84     /* Create the Save Log button */
85     wxButton *save_log_button = new wxButton( messages_panel, wxID_SAVEAS );
86     save_log_button->SetDefault();
87
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
106 Messages::~Messages()
107 {
108     /* Clean up */
109     if( save_log_dialog ) delete save_log_dialog;
110
111     delete info_attr;
112     delete err_attr;
113     delete warn_attr;
114     delete dbg_attr;
115 }
116
117 bool Messages::Show( bool show )
118 {
119     b_verbose = show;
120     return wxFrame::Show( show );
121 }
122
123 void Messages::UpdateLog()
124 {
125     msg_subscription_t *p_sub = p_intf->p_sys->p_sub;
126     int i_start;
127
128     vlc_mutex_lock( p_sub->p_lock );
129     int i_stop = *p_sub->pi_stop;
130     vlc_mutex_unlock( p_sub->p_lock );
131
132
133     if( p_sub->i_start != i_stop )
134     {
135         textctrl->SetInsertionPointEnd();
136
137         for( i_start = p_sub->i_start;
138              i_start != i_stop;
139              i_start = (i_start+1) % VLC_MSG_QSIZE )
140         {
141
142             if( !b_verbose &&
143                 VLC_MSG_ERR != p_sub->p_msg[i_start].i_type )
144                 continue;
145
146             /* Append all messages to log window */
147             textctrl->SetDefaultStyle( *dbg_attr );
148             (*textctrl) << wxL2U(p_sub->p_msg[i_start].psz_module);
149
150             switch( p_sub->p_msg[i_start].i_type )
151             {
152             case VLC_MSG_INFO:
153                 (*textctrl) << wxT(": ");
154                 textctrl->SetDefaultStyle( *info_attr );
155                 break;
156             case VLC_MSG_ERR:
157                 (*textctrl) << wxT(" error: ");
158                 textctrl->SetDefaultStyle( *err_attr );
159                 break;
160             case VLC_MSG_WARN:
161                 (*textctrl) << wxT(" warning: ");
162                 textctrl->SetDefaultStyle( *warn_attr );
163                 break;
164             case VLC_MSG_DBG:
165             default:
166                 (*textctrl) << wxT(" debug: ");
167                 break;
168             }
169
170             /* Add message */
171             (*textctrl) << wxL2U(p_sub->p_msg[i_start].psz_msg) << wxT("\n");
172         }
173
174         vlc_mutex_lock( p_sub->p_lock );
175         p_sub->i_start = i_start;
176         vlc_mutex_unlock( p_sub->p_lock );
177     }
178 }
179
180 /*****************************************************************************
181  * Private methods.
182  *****************************************************************************/
183 void Messages::OnButtonClose( wxCommandEvent& WXUNUSED(event) )
184 {
185     wxCloseEvent cevent;
186     OnClose(cevent);
187 }
188
189 void Messages::OnClose( wxCloseEvent& WXUNUSED(event) )
190 {
191     Hide();
192 }
193
194 void Messages::OnClear( wxCommandEvent& WXUNUSED(event) )
195 {
196     textctrl->Clear();
197 }
198
199 void Messages::OnSaveLog( wxCommandEvent& WXUNUSED(event) )
200 {
201     if( save_log_dialog == NULL )
202         save_log_dialog = new wxFileDialog( this,
203             wxU(_("Save Messages As...")),
204             wxT(""), wxT("messages"), wxT("*"), wxSAVE | wxOVERWRITE_PROMPT );
205
206     if( save_log_dialog && save_log_dialog->ShowModal() == wxID_OK )
207     {
208         if( !textctrl->SaveFile( save_log_dialog->GetPath() ) )
209         {
210             // [FIX ME] should print an error message
211         }
212     }
213 }