]> git.sesse.net Git - vlc/blob - modules/gui/wxwidgets/dialogs/messages.cpp
update module LIST file.
[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
32 BEGIN_EVENT_TABLE(Messages, wxFrame)
33     /* Button events */
34     EVT_BUTTON(wxID_CLOSE, Messages::OnButtonClose)
35     EVT_BUTTON(wxID_CLEAR, Messages::OnClear)
36     EVT_BUTTON(wxID_SAVEAS, Messages::OnSaveLog)
37
38     /* Special events : we don't want to destroy the window when the user
39      * clicks on (X) */
40     EVT_CLOSE(Messages::OnClose)
41 END_EVENT_TABLE()
42
43 /*****************************************************************************
44  * Constructor.
45  *****************************************************************************/
46 Messages::Messages( intf_thread_t *_p_intf, wxWindow *p_parent ):
47     wxFrame( p_parent, -1, wxU(_("Messages")), wxDefaultPosition,
48              wxDefaultSize, wxDEFAULT_FRAME_STYLE )
49 {
50     /* Initializations */
51     p_intf = _p_intf;
52     b_verbose = VLC_FALSE;
53     SetIcon( *p_intf->p_sys->p_icon );
54     save_log_dialog = NULL;
55     b_verbose = VLC_FALSE;
56
57     /* Create a panel to put everything in */
58     wxPanel *messages_panel = new wxPanel( this, -1 );
59     messages_panel->SetAutoLayout( TRUE );
60
61     /* Create the textctrl and some text attributes */
62     textctrl = new wxTextCtrl( messages_panel, -1, wxT(""), wxDefaultPosition,
63         wxSize::wxSize( 400, 500 ), wxTE_MULTILINE | wxTE_READONLY |
64                                     wxTE_RICH | wxTE_NOHIDESEL );
65     info_attr = new wxTextAttr( wxColour::wxColour( 0, 128, 0 ) );
66     err_attr = new wxTextAttr( *wxRED );
67     warn_attr = new wxTextAttr( *wxBLUE );
68     dbg_attr = new wxTextAttr( *wxBLACK );
69
70     /* Create the Close button */
71     wxButton *close_button = new wxButton( messages_panel, wxID_CLOSE,
72                                         wxU(_("&Close")));
73     close_button->SetDefault();
74
75     /* Create the Clear button */
76     wxButton *clear_button = new wxButton( messages_panel, wxID_CLEAR,
77                                            wxU(_("Clear")));
78
79     /* Create the Save Log button */
80     wxButton *save_log_button = new wxButton( messages_panel, wxID_SAVEAS,
81                                               wxU(_("Save &As...")));
82
83
84     /* Place everything in sizers */
85     wxBoxSizer *buttons_sizer = new wxBoxSizer( wxHORIZONTAL );
86     buttons_sizer->Add( save_log_button, 0, wxEXPAND |wxALIGN_LEFT| wxALL, 5 );
87     buttons_sizer->Add( clear_button, 0, wxEXPAND |wxALIGN_RIGHT| wxALL, 5 );
88     buttons_sizer->Add( close_button, 0, wxEXPAND |wxALIGN_RIGHT| wxALL, 5 );
89     buttons_sizer->Add( new wxPanel( this, -1 ), 1, wxALL, 5 );
90     buttons_sizer->Layout();
91     wxBoxSizer *main_sizer = new wxBoxSizer( wxVERTICAL );
92     wxBoxSizer *panel_sizer = new wxBoxSizer( wxVERTICAL );
93     panel_sizer->Add( textctrl, 1, wxEXPAND | wxALL, 5 );
94     panel_sizer->Add( buttons_sizer, 0, wxEXPAND | wxALL, 5 );
95     panel_sizer->Layout();
96     messages_panel->SetSizerAndFit( panel_sizer );
97     main_sizer->Add( messages_panel, 1, wxGROW, 0 );
98     main_sizer->Layout();
99     SetSizerAndFit( main_sizer );
100 }
101
102 Messages::~Messages()
103 {
104     /* Clean up */
105     delete save_log_dialog;
106     delete info_attr;
107     delete err_attr;
108     delete warn_attr;
109     delete dbg_attr;
110 }
111
112 bool Messages::Show( bool show )
113 {
114     b_verbose = show;
115     return wxFrame::Show( show );
116 }
117
118 void Messages::UpdateLog()
119 {
120     msg_subscription_t *p_sub = p_intf->p_sys->p_sub;
121     int i_start;
122
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
127
128     if( p_sub->i_start != i_stop )
129     {
130         textctrl->SetInsertionPointEnd();
131
132         for( i_start = p_sub->i_start;
133              i_start != i_stop;
134              i_start = (i_start+1) % VLC_MSG_QSIZE )
135         {
136
137             if( !b_verbose &&
138                 VLC_MSG_ERR != p_sub->p_msg[i_start].i_type )
139                 continue;
140
141             /* Append all messages to log window */
142             textctrl->SetDefaultStyle( *dbg_attr );
143             (*textctrl) << wxL2U(p_sub->p_msg[i_start].psz_module);
144
145             switch( p_sub->p_msg[i_start].i_type )
146             {
147             case VLC_MSG_INFO:
148                 (*textctrl) << wxT(": ");
149                 textctrl->SetDefaultStyle( *info_attr );
150                 break;
151             case VLC_MSG_ERR:
152                 (*textctrl) << wxT(" error: ");
153                 textctrl->SetDefaultStyle( *err_attr );
154                 break;
155             case VLC_MSG_WARN:
156                 (*textctrl) << wxT(" warning: ");
157                 textctrl->SetDefaultStyle( *warn_attr );
158                 break;
159             case VLC_MSG_DBG:
160             default:
161                 (*textctrl) << wxT(" debug: ");
162                 break;
163             }
164
165             /* Add message */
166             (*textctrl) << wxL2U(p_sub->p_msg[i_start].psz_msg) << wxT("\n");
167         }
168
169         vlc_mutex_lock( p_sub->p_lock );
170         p_sub->i_start = i_start;
171         vlc_mutex_unlock( p_sub->p_lock );
172     }
173 }
174
175 /*****************************************************************************
176  * Private methods.
177  *****************************************************************************/
178 void Messages::OnButtonClose( wxCommandEvent& WXUNUSED(event) )
179 {
180     wxCloseEvent cevent;
181     OnClose(cevent);
182 }
183
184 void Messages::OnClose( wxCloseEvent& WXUNUSED(event) )
185 {
186     Hide();
187 }
188
189 void Messages::OnClear( wxCommandEvent& WXUNUSED(event) )
190 {
191     textctrl->Clear();
192 }
193
194 void Messages::OnSaveLog( wxCommandEvent& WXUNUSED(event) )
195 {
196     if( save_log_dialog == NULL )
197         save_log_dialog = new wxFileDialog( this,
198             wxU(_("Save Messages As...")),
199             wxT(""), wxT("messages"), wxT("*"), wxSAVE | wxOVERWRITE_PROMPT );
200
201     if( save_log_dialog && save_log_dialog->ShowModal() == wxID_OK )
202     {
203         if( !textctrl->SaveFile( save_log_dialog->GetPath() ) )
204         {
205             // [FIX ME] should print an error message
206         }
207     }
208 }