]>
Commit | Line | Data |
---|---|---|
dd85fc6b VZ |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: logg.cpp | |
3 | // Purpose: wxLog-derived classes which need GUI support (the rest is in | |
4 | // src/common/log.cpp) | |
5 | // Author: Vadim Zeitlin | |
6 | // Modified by: | |
7 | // Created: 20.09.99 (extracted from src/common/log.cpp) | |
8 | // RCS-ID: $Id$ | |
9 | // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr> | |
10 | // Licence: wxWindows license | |
11 | ///////////////////////////////////////////////////////////////////////////// | |
12 | ||
13 | // ============================================================================ | |
14 | // declarations | |
15 | // ============================================================================ | |
16 | ||
17 | // ---------------------------------------------------------------------------- | |
18 | // headers | |
19 | // ---------------------------------------------------------------------------- | |
20 | ||
21 | // no #pragma implementation "log.h" because it's already in src/common/log.cpp | |
22 | ||
23 | // For compilers that support precompilation, includes "wx.h". | |
24 | #include "wx/wxprec.h" | |
25 | ||
26 | #ifdef __BORLANDC__ | |
27 | #pragma hdrstop | |
28 | #endif | |
29 | ||
e90c1d2a VZ |
30 | #if !wxUSE_GUI |
31 | #error "This file can't be compiled without GUI!" | |
dd85fc6b VZ |
32 | #endif |
33 | ||
34 | #ifndef WX_PRECOMP | |
35 | #include "wx/app.h" | |
f6bcfd97 | 36 | #include "wx/button.h" |
dd85fc6b VZ |
37 | #include "wx/intl.h" |
38 | #include "wx/log.h" | |
39 | #include "wx/menu.h" | |
40 | #include "wx/frame.h" | |
41 | #include "wx/filedlg.h" | |
8ca2f11c | 42 | #include "wx/msgdlg.h" |
dd85fc6b | 43 | #include "wx/textctrl.h" |
f1df0927 VZ |
44 | #include "wx/sizer.h" |
45 | #include "wx/statbmp.h" | |
f6bcfd97 | 46 | #include "wx/button.h" |
a0145564 | 47 | #include "wx/settings.h" |
dd85fc6b VZ |
48 | #endif // WX_PRECOMP |
49 | ||
1e6feb95 VZ |
50 | #if wxUSE_LOGGUI || wxUSE_LOGWINDOW |
51 | ||
dd85fc6b VZ |
52 | #include "wx/file.h" |
53 | #include "wx/textfile.h" | |
f6bcfd97 | 54 | #include "wx/statline.h" |
dd85fc6b | 55 | |
39a7c7e1 VZ |
56 | #ifdef __WXMSW__ |
57 | // for OutputDebugString() | |
58 | #include "wx/msw/private.h" | |
59 | #endif // Windows | |
60 | ||
f1df0927 | 61 | #if wxUSE_LOG_DIALOG |
f1df0927 | 62 | #include "wx/listctrl.h" |
de8e98f1 | 63 | #include "wx/imaglist.h" |
f1df0927 | 64 | #include "wx/image.h" |
db737321 | 65 | #else // !wxUSE_LOG_DIALOG |
f1df0927 VZ |
66 | #include "wx/msgdlg.h" |
67 | #endif // wxUSE_LOG_DIALOG/!wxUSE_LOG_DIALOG | |
68 | ||
69 | // ---------------------------------------------------------------------------- | |
70 | // private classes | |
71 | // ---------------------------------------------------------------------------- | |
72 | ||
73 | #if wxUSE_LOG_DIALOG | |
74 | ||
f94dfb38 VS |
75 | // this function is a wrapper around strftime(3) |
76 | // allows to exclude the usage of wxDateTime | |
77 | static wxString TimeStamp(const wxChar *format, time_t t) | |
78 | { | |
79 | wxChar buf[4096]; | |
80 | if ( !wxStrftime(buf, WXSIZEOF(buf), format, localtime(&t)) ) | |
81 | { | |
82 | // buffer is too small? | |
83 | wxFAIL_MSG(_T("strftime() failed")); | |
84 | } | |
85 | return wxString(buf); | |
86 | } | |
87 | ||
88 | ||
f1df0927 VZ |
89 | class wxLogDialog : public wxDialog |
90 | { | |
91 | public: | |
92 | wxLogDialog(wxWindow *parent, | |
93 | const wxArrayString& messages, | |
94 | const wxArrayInt& severity, | |
95 | const wxArrayLong& timess, | |
96 | const wxString& caption, | |
97 | long style); | |
98 | virtual ~wxLogDialog(); | |
99 | ||
100 | // event handlers | |
101 | void OnOk(wxCommandEvent& event); | |
102 | void OnDetails(wxCommandEvent& event); | |
f6bcfd97 BP |
103 | #if wxUSE_FILE |
104 | void OnSave(wxCommandEvent& event); | |
105 | #endif // wxUSE_FILE | |
4aff28fc | 106 | void OnListSelect(wxListEvent& event); |
f1df0927 VZ |
107 | |
108 | private: | |
f6bcfd97 BP |
109 | // create controls needed for the details display |
110 | void CreateDetailsControls(); | |
111 | ||
f1df0927 | 112 | // the data for the listctrl |
224ff7a5 VZ |
113 | wxArrayString m_messages; |
114 | wxArrayInt m_severity; | |
115 | wxArrayLong m_times; | |
f1df0927 VZ |
116 | |
117 | // the "toggle" button and its state | |
118 | wxButton *m_btnDetails; | |
119 | bool m_showingDetails; | |
120 | ||
f6bcfd97 BP |
121 | // the controls which are not shown initially (but only when details |
122 | // button is pressed) | |
f1df0927 | 123 | wxListCtrl *m_listctrl; |
f6bcfd97 BP |
124 | #if wxUSE_STATLINE |
125 | wxStaticLine *m_statline; | |
126 | #endif // wxUSE_STATLINE | |
127 | #if wxUSE_FILE | |
128 | wxButton *m_btnSave; | |
129 | #endif // wxUSE_FILE | |
f1df0927 | 130 | |
5f170f33 VZ |
131 | // the translated "Details" string |
132 | static wxString ms_details; | |
133 | ||
f1df0927 VZ |
134 | DECLARE_EVENT_TABLE() |
135 | }; | |
136 | ||
137 | BEGIN_EVENT_TABLE(wxLogDialog, wxDialog) | |
f6bcfd97 | 138 | EVT_BUTTON(wxID_CANCEL, wxLogDialog::OnOk) |
f1df0927 | 139 | EVT_BUTTON(wxID_MORE, wxLogDialog::OnDetails) |
f6bcfd97 BP |
140 | #if wxUSE_FILE |
141 | EVT_BUTTON(wxID_SAVE, wxLogDialog::OnSave) | |
142 | #endif // wxUSE_FILE | |
4aff28fc | 143 | EVT_LIST_ITEM_SELECTED(-1, wxLogDialog::OnListSelect) |
f1df0927 VZ |
144 | END_EVENT_TABLE() |
145 | ||
146 | #endif // wxUSE_LOG_DIALOG | |
147 | ||
f6bcfd97 BP |
148 | // ---------------------------------------------------------------------------- |
149 | // private functions | |
150 | // ---------------------------------------------------------------------------- | |
151 | ||
3e6e2754 | 152 | #if wxUSE_FILE && wxUSE_FILEDLG |
f6bcfd97 BP |
153 | |
154 | // pass an uninitialized file object, the function will ask the user for the | |
155 | // filename and try to open it, returns TRUE on success (file was opened), | |
156 | // FALSE if file couldn't be opened/created and -1 if the file selection | |
157 | // dialog was cancelled | |
158 | static int OpenLogFile(wxFile& file, wxString *filename = NULL); | |
159 | ||
160 | #endif // wxUSE_FILE | |
161 | ||
dd85fc6b VZ |
162 | // ---------------------------------------------------------------------------- |
163 | // global variables | |
164 | // ---------------------------------------------------------------------------- | |
165 | ||
166 | // we use a global variable to store the frame pointer for wxLogStatus - bad, | |
3e6e2754 | 167 | // but it's the easiest way |
63617fb5 | 168 | static wxFrame *gs_pFrame = NULL; // FIXME MT-unsafe |
dd85fc6b VZ |
169 | |
170 | // ============================================================================ | |
171 | // implementation | |
172 | // ============================================================================ | |
173 | ||
174 | // ---------------------------------------------------------------------------- | |
175 | // global functions | |
176 | // ---------------------------------------------------------------------------- | |
177 | ||
178 | // accepts an additional argument which tells to which frame the output should | |
179 | // be directed | |
180 | void wxLogStatus(wxFrame *pFrame, const wxChar *szFormat, ...) | |
181 | { | |
182 | wxString msg; | |
183 | ||
184 | wxLog *pLog = wxLog::GetActiveTarget(); | |
185 | if ( pLog != NULL ) { | |
186 | va_list argptr; | |
187 | va_start(argptr, szFormat); | |
188 | msg.PrintfV(szFormat, argptr); | |
189 | va_end(argptr); | |
190 | ||
191 | wxASSERT( gs_pFrame == NULL ); // should be reset! | |
192 | gs_pFrame = pFrame; | |
193 | wxLog::OnLog(wxLOG_Status, msg, time(NULL)); | |
194 | gs_pFrame = (wxFrame *) NULL; | |
195 | } | |
196 | } | |
197 | ||
dd85fc6b VZ |
198 | // ---------------------------------------------------------------------------- |
199 | // wxLogGui implementation (FIXME MT-unsafe) | |
200 | // ---------------------------------------------------------------------------- | |
201 | ||
202 | wxLogGui::wxLogGui() | |
203 | { | |
204 | Clear(); | |
205 | } | |
206 | ||
207 | void wxLogGui::Clear() | |
208 | { | |
5f170f33 VZ |
209 | m_bErrors = |
210 | m_bWarnings = | |
211 | m_bHasMessages = FALSE; | |
212 | ||
dd85fc6b | 213 | m_aMessages.Empty(); |
f1df0927 | 214 | m_aSeverity.Empty(); |
dd85fc6b VZ |
215 | m_aTimes.Empty(); |
216 | } | |
217 | ||
218 | void wxLogGui::Flush() | |
219 | { | |
220 | if ( !m_bHasMessages ) | |
221 | return; | |
222 | ||
223 | // do it right now to block any new calls to Flush() while we're here | |
224 | m_bHasMessages = FALSE; | |
225 | ||
f6bcfd97 BP |
226 | wxString appName = wxTheApp->GetAppName(); |
227 | if ( !!appName ) | |
228 | appName[0u] = wxToupper(appName[0u]); | |
f1df0927 VZ |
229 | |
230 | long style; | |
f6bcfd97 | 231 | wxString titleFormat; |
f1df0927 | 232 | if ( m_bErrors ) { |
f6bcfd97 | 233 | titleFormat = _("%s Error"); |
f1df0927 VZ |
234 | style = wxICON_STOP; |
235 | } | |
236 | else if ( m_bWarnings ) { | |
f6bcfd97 | 237 | titleFormat = _("%s Warning"); |
f1df0927 VZ |
238 | style = wxICON_EXCLAMATION; |
239 | } | |
240 | else { | |
f6bcfd97 | 241 | titleFormat = _("%s Information"); |
f1df0927 VZ |
242 | style = wxICON_INFORMATION; |
243 | } | |
1e6feb95 | 244 | |
f6bcfd97 BP |
245 | wxString title; |
246 | title.Printf(titleFormat, appName.c_str()); | |
f1df0927 | 247 | |
23f681ec | 248 | size_t nMsgCount = m_aMessages.Count(); |
224ff7a5 | 249 | |
69c916e9 VZ |
250 | // avoid showing other log dialogs until we're done with the dialog we're |
251 | // showing right now: nested modal dialogs make for really bad UI! | |
252 | Suspend(); | |
253 | ||
23f681ec VZ |
254 | wxString str; |
255 | if ( nMsgCount == 1 ) | |
256 | { | |
257 | str = m_aMessages[0]; | |
258 | } | |
259 | else // more than one message | |
260 | { | |
261 | #if wxUSE_LOG_DIALOG | |
3e6e2754 | 262 | |
39cc7a0b | 263 | wxLogDialog dlg(NULL, |
23f681ec VZ |
264 | m_aMessages, m_aSeverity, m_aTimes, |
265 | title, style); | |
f1df0927 | 266 | |
23f681ec VZ |
267 | // clear the message list before showing the dialog because while it's |
268 | // shown some new messages may appear | |
269 | Clear(); | |
270 | ||
271 | (void)dlg.ShowModal(); | |
f1df0927 | 272 | #else // !wxUSE_LOG_DIALOG |
23f681ec VZ |
273 | // concatenate all strings (but not too many to not overfill the msg box) |
274 | size_t nLines = 0; | |
dd85fc6b | 275 | |
23f681ec VZ |
276 | // start from the most recent message |
277 | for ( size_t n = nMsgCount; n > 0; n-- ) { | |
278 | // for Windows strings longer than this value are wrapped (NT 4.0) | |
279 | const size_t nMsgLineWidth = 156; | |
dd85fc6b | 280 | |
23f681ec | 281 | nLines += (m_aMessages[n - 1].Len() + nMsgLineWidth - 1) / nMsgLineWidth; |
dd85fc6b | 282 | |
23f681ec VZ |
283 | if ( nLines > 25 ) // don't put too many lines in message box |
284 | break; | |
dd85fc6b | 285 | |
23f681ec VZ |
286 | str << m_aMessages[n - 1] << wxT("\n"); |
287 | } | |
288 | #endif // wxUSE_LOG_DIALOG/!wxUSE_LOG_DIALOG | |
dd85fc6b VZ |
289 | } |
290 | ||
23f681ec VZ |
291 | // this catches both cases of 1 message with wxUSE_LOG_DIALOG and any |
292 | // situation without it | |
293 | if ( !!str ) | |
294 | { | |
39cc7a0b | 295 | wxMessageBox(str, title, wxOK | style); |
dd85fc6b | 296 | |
23f681ec VZ |
297 | // no undisplayed messages whatsoever |
298 | Clear(); | |
299 | } | |
69c916e9 VZ |
300 | |
301 | // allow flushing the logs again | |
302 | Resume(); | |
dd85fc6b VZ |
303 | } |
304 | ||
23f681ec | 305 | // log all kinds of messages |
dd85fc6b VZ |
306 | void wxLogGui::DoLog(wxLogLevel level, const wxChar *szString, time_t t) |
307 | { | |
308 | switch ( level ) { | |
309 | case wxLOG_Info: | |
310 | if ( GetVerbose() ) | |
311 | case wxLOG_Message: | |
f1df0927 | 312 | { |
a250392c VZ |
313 | m_aMessages.Add(szString); |
314 | m_aSeverity.Add(wxLOG_Message); | |
315 | m_aTimes.Add((long)t); | |
316 | m_bHasMessages = TRUE; | |
f1df0927 VZ |
317 | } |
318 | break; | |
dd85fc6b VZ |
319 | |
320 | case wxLOG_Status: | |
321 | #if wxUSE_STATUSBAR | |
f1df0927 VZ |
322 | { |
323 | // find the top window and set it's status text if it has any | |
324 | wxFrame *pFrame = gs_pFrame; | |
325 | if ( pFrame == NULL ) { | |
326 | wxWindow *pWin = wxTheApp->GetTopWindow(); | |
327 | if ( pWin != NULL && pWin->IsKindOf(CLASSINFO(wxFrame)) ) { | |
328 | pFrame = (wxFrame *)pWin; | |
dd85fc6b | 329 | } |
dd85fc6b | 330 | } |
f1df0927 VZ |
331 | |
332 | if ( pFrame && pFrame->GetStatusBar() ) | |
333 | pFrame->SetStatusText(szString); | |
334 | } | |
dd85fc6b | 335 | #endif // wxUSE_STATUSBAR |
f1df0927 | 336 | break; |
dd85fc6b VZ |
337 | |
338 | case wxLOG_Trace: | |
339 | case wxLOG_Debug: | |
f1df0927 VZ |
340 | #ifdef __WXDEBUG__ |
341 | { | |
3a57b93d VZ |
342 | wxString str; |
343 | TimeStamp(&str); | |
344 | str += szString; | |
345 | ||
8a46f9b1 | 346 | #if defined(__WXMSW__) && !defined(__WXMICROWIN__) |
f1df0927 | 347 | // don't prepend debug/trace here: it goes to the |
3a57b93d VZ |
348 | // debug window anyhow |
349 | str += wxT("\r\n"); | |
f1df0927 VZ |
350 | OutputDebugString(str); |
351 | #else | |
352 | // send them to stderr | |
3a57b93d | 353 | wxFprintf(stderr, wxT("[%s] %s\n"), |
f1df0927 VZ |
354 | level == wxLOG_Trace ? wxT("Trace") |
355 | : wxT("Debug"), | |
3a57b93d | 356 | str.c_str()); |
f1df0927 VZ |
357 | fflush(stderr); |
358 | #endif | |
359 | } | |
360 | #endif // __WXDEBUG__ | |
dd85fc6b | 361 | |
f1df0927 | 362 | break; |
dd85fc6b VZ |
363 | |
364 | case wxLOG_FatalError: | |
f1df0927 VZ |
365 | // show this one immediately |
366 | wxMessageBox(szString, _("Fatal error"), wxICON_HAND); | |
a2a0d40d | 367 | wxExit(); |
f1df0927 | 368 | break; |
dd85fc6b VZ |
369 | |
370 | case wxLOG_Error: | |
f1df0927 VZ |
371 | if ( !m_bErrors ) { |
372 | #if !wxUSE_LOG_DIALOG | |
dd85fc6b | 373 | // discard earlier informational messages if this is the 1st |
f1df0927 VZ |
374 | // error because they might not make sense any more and showing |
375 | // them in a message box might be confusing | |
376 | m_aMessages.Empty(); | |
377 | m_aSeverity.Empty(); | |
378 | m_aTimes.Empty(); | |
379 | #endif // wxUSE_LOG_DIALOG | |
380 | m_bErrors = TRUE; | |
381 | } | |
382 | // fall through | |
dd85fc6b VZ |
383 | |
384 | case wxLOG_Warning: | |
f1df0927 VZ |
385 | if ( !m_bErrors ) { |
386 | // for the warning we don't discard the info messages | |
387 | m_bWarnings = TRUE; | |
388 | } | |
389 | ||
390 | m_aMessages.Add(szString); | |
06b466c7 | 391 | m_aSeverity.Add((int)level); |
f1df0927 VZ |
392 | m_aTimes.Add((long)t); |
393 | m_bHasMessages = TRUE; | |
394 | break; | |
dd85fc6b VZ |
395 | } |
396 | } | |
397 | ||
398 | // ---------------------------------------------------------------------------- | |
399 | // wxLogWindow and wxLogFrame implementation | |
400 | // ---------------------------------------------------------------------------- | |
401 | ||
402 | // log frame class | |
403 | // --------------- | |
404 | class wxLogFrame : public wxFrame | |
405 | { | |
406 | public: | |
407 | // ctor & dtor | |
408 | wxLogFrame(wxFrame *pParent, wxLogWindow *log, const wxChar *szTitle); | |
409 | virtual ~wxLogFrame(); | |
410 | ||
411 | // menu callbacks | |
412 | void OnClose(wxCommandEvent& event); | |
413 | void OnCloseWindow(wxCloseEvent& event); | |
414 | #if wxUSE_FILE | |
415 | void OnSave (wxCommandEvent& event); | |
416 | #endif // wxUSE_FILE | |
417 | void OnClear(wxCommandEvent& event); | |
418 | ||
419 | void OnIdle(wxIdleEvent&); | |
420 | ||
421 | // accessors | |
422 | wxTextCtrl *TextCtrl() const { return m_pTextCtrl; } | |
423 | ||
424 | private: | |
857eb081 | 425 | // use standard ids for our commands! |
dd85fc6b VZ |
426 | enum |
427 | { | |
857eb081 VZ |
428 | Menu_Close = wxID_CLOSE, |
429 | Menu_Save = wxID_SAVE, | |
430 | Menu_Clear = wxID_CLEAR | |
dd85fc6b VZ |
431 | }; |
432 | ||
f6bcfd97 BP |
433 | // common part of OnClose() and OnCloseWindow() |
434 | void DoClose(); | |
dd85fc6b VZ |
435 | |
436 | wxTextCtrl *m_pTextCtrl; | |
437 | wxLogWindow *m_log; | |
438 | ||
439 | DECLARE_EVENT_TABLE() | |
440 | }; | |
441 | ||
442 | BEGIN_EVENT_TABLE(wxLogFrame, wxFrame) | |
443 | // wxLogWindow menu events | |
444 | EVT_MENU(Menu_Close, wxLogFrame::OnClose) | |
445 | #if wxUSE_FILE | |
446 | EVT_MENU(Menu_Save, wxLogFrame::OnSave) | |
447 | #endif // wxUSE_FILE | |
448 | EVT_MENU(Menu_Clear, wxLogFrame::OnClear) | |
449 | ||
450 | EVT_CLOSE(wxLogFrame::OnCloseWindow) | |
451 | END_EVENT_TABLE() | |
452 | ||
453 | wxLogFrame::wxLogFrame(wxFrame *pParent, wxLogWindow *log, const wxChar *szTitle) | |
454 | : wxFrame(pParent, -1, szTitle) | |
455 | { | |
456 | m_log = log; | |
457 | ||
458 | m_pTextCtrl = new wxTextCtrl(this, -1, wxEmptyString, wxDefaultPosition, | |
459 | wxDefaultSize, | |
460 | wxTE_MULTILINE | | |
461 | wxHSCROLL | | |
462 | wxTE_READONLY); | |
463 | ||
3a8c693a | 464 | #if wxUSE_MENUS |
dd85fc6b VZ |
465 | // create menu |
466 | wxMenuBar *pMenuBar = new wxMenuBar; | |
467 | wxMenu *pMenu = new wxMenu; | |
468 | #if wxUSE_FILE | |
469 | pMenu->Append(Menu_Save, _("&Save..."), _("Save log contents to file")); | |
470 | #endif // wxUSE_FILE | |
471 | pMenu->Append(Menu_Clear, _("C&lear"), _("Clear the log contents")); | |
472 | pMenu->AppendSeparator(); | |
473 | pMenu->Append(Menu_Close, _("&Close"), _("Close this window")); | |
474 | pMenuBar->Append(pMenu, _("&Log")); | |
475 | SetMenuBar(pMenuBar); | |
3a8c693a | 476 | #endif // wxUSE_MENUS |
dd85fc6b VZ |
477 | |
478 | #if wxUSE_STATUSBAR | |
479 | // status bar for menu prompts | |
480 | CreateStatusBar(); | |
481 | #endif // wxUSE_STATUSBAR | |
482 | ||
483 | m_log->OnFrameCreate(this); | |
484 | } | |
485 | ||
f6bcfd97 BP |
486 | void wxLogFrame::DoClose() |
487 | { | |
488 | if ( m_log->OnFrameClose(this) ) | |
489 | { | |
490 | // instead of closing just hide the window to be able to Show() it | |
491 | // later | |
492 | Show(FALSE); | |
493 | } | |
494 | } | |
495 | ||
dd85fc6b VZ |
496 | void wxLogFrame::OnClose(wxCommandEvent& WXUNUSED(event)) |
497 | { | |
498 | DoClose(); | |
499 | } | |
500 | ||
501 | void wxLogFrame::OnCloseWindow(wxCloseEvent& WXUNUSED(event)) | |
502 | { | |
503 | DoClose(); | |
504 | } | |
505 | ||
506 | #if wxUSE_FILE | |
507 | void wxLogFrame::OnSave(wxCommandEvent& WXUNUSED(event)) | |
508 | { | |
3e6e2754 | 509 | #if wxUSE_FILEDLG |
f6bcfd97 BP |
510 | wxString filename; |
511 | wxFile file; | |
512 | int rc = OpenLogFile(file, &filename); | |
513 | if ( rc == -1 ) | |
514 | { | |
dd85fc6b VZ |
515 | // cancelled |
516 | return; | |
517 | } | |
518 | ||
f6bcfd97 | 519 | bool bOk = rc != 0; |
dd85fc6b VZ |
520 | |
521 | // retrieve text and save it | |
522 | // ------------------------- | |
523 | int nLines = m_pTextCtrl->GetNumberOfLines(); | |
524 | for ( int nLine = 0; bOk && nLine < nLines; nLine++ ) { | |
525 | bOk = file.Write(m_pTextCtrl->GetLineText(nLine) + | |
f6bcfd97 | 526 | wxTextFile::GetEOL()); |
dd85fc6b VZ |
527 | } |
528 | ||
529 | if ( bOk ) | |
530 | bOk = file.Close(); | |
531 | ||
532 | if ( !bOk ) { | |
533 | wxLogError(_("Can't save log contents to file.")); | |
534 | } | |
535 | else { | |
f6bcfd97 | 536 | wxLogStatus(this, _("Log saved to the file '%s'."), filename.c_str()); |
dd85fc6b | 537 | } |
3e6e2754 | 538 | #endif |
dd85fc6b VZ |
539 | } |
540 | #endif // wxUSE_FILE | |
541 | ||
542 | void wxLogFrame::OnClear(wxCommandEvent& WXUNUSED(event)) | |
543 | { | |
544 | m_pTextCtrl->Clear(); | |
545 | } | |
546 | ||
547 | wxLogFrame::~wxLogFrame() | |
548 | { | |
549 | m_log->OnFrameDelete(this); | |
550 | } | |
551 | ||
552 | // wxLogWindow | |
553 | // ----------- | |
03147cd0 | 554 | |
dd85fc6b VZ |
555 | wxLogWindow::wxLogWindow(wxFrame *pParent, |
556 | const wxChar *szTitle, | |
557 | bool bShow, | |
558 | bool bDoPass) | |
559 | { | |
03147cd0 | 560 | PassMessages(bDoPass); |
dd85fc6b VZ |
561 | |
562 | m_pLogFrame = new wxLogFrame(pParent, this, szTitle); | |
dd85fc6b VZ |
563 | |
564 | if ( bShow ) | |
565 | m_pLogFrame->Show(TRUE); | |
566 | } | |
567 | ||
568 | void wxLogWindow::Show(bool bShow) | |
569 | { | |
570 | m_pLogFrame->Show(bShow); | |
571 | } | |
572 | ||
dd85fc6b VZ |
573 | void wxLogWindow::DoLog(wxLogLevel level, const wxChar *szString, time_t t) |
574 | { | |
575 | // first let the previous logger show it | |
03147cd0 | 576 | wxLogPassThrough::DoLog(level, szString, t); |
dd85fc6b VZ |
577 | |
578 | if ( m_pLogFrame ) { | |
579 | switch ( level ) { | |
580 | case wxLOG_Status: | |
581 | // by default, these messages are ignored by wxLog, so process | |
582 | // them ourselves | |
583 | if ( !wxIsEmpty(szString) ) | |
584 | { | |
585 | wxString str; | |
586 | str << _("Status: ") << szString; | |
587 | DoLogString(str, t); | |
588 | } | |
589 | break; | |
590 | ||
591 | // don't put trace messages in the text window for 2 reasons: | |
592 | // 1) there are too many of them | |
593 | // 2) they may provoke other trace messages thus sending a program | |
594 | // into an infinite loop | |
595 | case wxLOG_Trace: | |
596 | break; | |
597 | ||
598 | default: | |
599 | // and this will format it nicely and call our DoLogString() | |
600 | wxLog::DoLog(level, szString, t); | |
601 | } | |
602 | } | |
603 | ||
604 | m_bHasMessages = TRUE; | |
605 | } | |
606 | ||
607 | void wxLogWindow::DoLogString(const wxChar *szString, time_t WXUNUSED(t)) | |
608 | { | |
609 | // put the text into our window | |
610 | wxTextCtrl *pText = m_pLogFrame->TextCtrl(); | |
611 | ||
612 | // remove selection (WriteText is in fact ReplaceSelection) | |
613 | #ifdef __WXMSW__ | |
614 | long nLen = pText->GetLastPosition(); | |
615 | pText->SetSelection(nLen, nLen); | |
616 | #endif // Windows | |
617 | ||
618 | wxString msg; | |
619 | TimeStamp(&msg); | |
223d09f6 | 620 | msg << szString << wxT('\n'); |
dd85fc6b VZ |
621 | |
622 | pText->AppendText(msg); | |
623 | ||
624 | // TODO ensure that the line can be seen | |
625 | } | |
626 | ||
627 | wxFrame *wxLogWindow::GetFrame() const | |
628 | { | |
629 | return m_pLogFrame; | |
630 | } | |
631 | ||
632 | void wxLogWindow::OnFrameCreate(wxFrame * WXUNUSED(frame)) | |
633 | { | |
634 | } | |
635 | ||
f6bcfd97 BP |
636 | bool wxLogWindow::OnFrameClose(wxFrame * WXUNUSED(frame)) |
637 | { | |
638 | // allow to close | |
639 | return TRUE; | |
640 | } | |
641 | ||
dd85fc6b VZ |
642 | void wxLogWindow::OnFrameDelete(wxFrame * WXUNUSED(frame)) |
643 | { | |
644 | m_pLogFrame = (wxLogFrame *)NULL; | |
645 | } | |
646 | ||
647 | wxLogWindow::~wxLogWindow() | |
648 | { | |
dd85fc6b VZ |
649 | // may be NULL if log frame already auto destroyed itself |
650 | delete m_pLogFrame; | |
651 | } | |
652 | ||
f1df0927 VZ |
653 | // ---------------------------------------------------------------------------- |
654 | // wxLogDialog | |
655 | // ---------------------------------------------------------------------------- | |
656 | ||
657 | #if wxUSE_LOG_DIALOG | |
658 | ||
659 | static const size_t MARGIN = 10; | |
660 | ||
5f170f33 VZ |
661 | wxString wxLogDialog::ms_details; |
662 | ||
f1df0927 VZ |
663 | wxLogDialog::wxLogDialog(wxWindow *parent, |
664 | const wxArrayString& messages, | |
665 | const wxArrayInt& severity, | |
666 | const wxArrayLong& times, | |
667 | const wxString& caption, | |
668 | long style) | |
0b165ed6 VZ |
669 | : wxDialog(parent, -1, caption, |
670 | wxDefaultPosition, wxDefaultSize, | |
671 | wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER) | |
f1df0927 | 672 | { |
669f7a11 | 673 | if ( ms_details.IsEmpty() ) |
5f170f33 | 674 | { |
f6bcfd97 BP |
675 | // ensure that we won't loop here if wxGetTranslation() |
676 | // happens to pop up a Log message while translating this :-) | |
677 | ms_details = wxTRANSLATE("&Details"); | |
5f170f33 VZ |
678 | ms_details = wxGetTranslation(ms_details); |
679 | } | |
680 | ||
4aff28fc VZ |
681 | size_t count = messages.GetCount(); |
682 | m_messages.Alloc(count); | |
683 | m_severity.Alloc(count); | |
684 | m_times.Alloc(count); | |
685 | ||
686 | for ( size_t n = 0; n < count; n++ ) | |
687 | { | |
688 | wxString msg = messages[n]; | |
689 | do | |
690 | { | |
691 | m_messages.Add(msg.BeforeFirst(_T('\n'))); | |
692 | msg = msg.AfterFirst(_T('\n')); | |
693 | ||
694 | m_severity.Add(severity[n]); | |
695 | m_times.Add(times[n]); | |
696 | } | |
697 | while ( !!msg ); | |
698 | } | |
699 | ||
f1df0927 VZ |
700 | m_showingDetails = FALSE; // not initially |
701 | m_listctrl = (wxListCtrl *)NULL; | |
702 | ||
f6bcfd97 BP |
703 | #if wxUSE_STATLINE |
704 | m_statline = (wxStaticLine *)NULL; | |
705 | #endif // wxUSE_STATLINE | |
706 | ||
707 | #if wxUSE_FILE | |
708 | m_btnSave = (wxButton *)NULL; | |
709 | #endif // wxUSE_FILE | |
710 | ||
f1df0927 VZ |
711 | // create the controls which are always shown and layout them: we use |
712 | // sizers even though our window is not resizeable to calculate the size of | |
713 | // the dialog properly | |
714 | wxBoxSizer *sizerTop = new wxBoxSizer(wxVERTICAL); | |
715 | wxBoxSizer *sizerButtons = new wxBoxSizer(wxVERTICAL); | |
716 | wxBoxSizer *sizerAll = new wxBoxSizer(wxHORIZONTAL); | |
717 | ||
f6bcfd97 BP |
718 | // this "Ok" button has wxID_CANCEL id - not very logical, but this allows |
719 | // to close the log dialog with <Esc> which wouldn't work otherwise (as it | |
720 | // translates into click on cancel button) | |
721 | wxButton *btnOk = new wxButton(this, wxID_CANCEL, _("OK")); | |
0b165ed6 | 722 | sizerButtons->Add(btnOk, 0, wxCENTRE | wxBOTTOM, MARGIN/2); |
5f170f33 | 723 | m_btnDetails = new wxButton(this, wxID_MORE, ms_details + _T(" >>")); |
0b165ed6 | 724 | sizerButtons->Add(m_btnDetails, 0, wxCENTRE | wxTOP, MARGIN/2 - 1); |
f1df0927 | 725 | |
669f7a11 | 726 | #ifndef __WIN16__ |
06b466c7 | 727 | wxIcon icon = wxTheApp->GetStdIcon((int)(style & wxICON_MASK)); |
0b165ed6 | 728 | sizerAll->Add(new wxStaticBitmap(this, -1, icon), 0); |
f6bcfd97 | 729 | #endif // !Win16 |
669f7a11 | 730 | |
f1df0927 | 731 | const wxString& message = messages.Last(); |
0b165ed6 VZ |
732 | sizerAll->Add(CreateTextSizer(message), 1, |
733 | wxALIGN_CENTRE_VERTICAL | wxLEFT | wxRIGHT, MARGIN); | |
734 | sizerAll->Add(sizerButtons, 0, wxALIGN_RIGHT | wxLEFT, MARGIN); | |
f1df0927 | 735 | |
0b165ed6 | 736 | sizerTop->Add(sizerAll, 0, wxALL | wxEXPAND, MARGIN); |
f1df0927 VZ |
737 | |
738 | SetAutoLayout(TRUE); | |
739 | SetSizer(sizerTop); | |
740 | ||
741 | sizerTop->SetSizeHints(this); | |
742 | sizerTop->Fit(this); | |
743 | ||
744 | btnOk->SetFocus(); | |
745 | ||
23f681ec VZ |
746 | // this can't happen any more as we don't use this dialog in this case |
747 | #if 0 | |
4aff28fc | 748 | if ( count == 1 ) |
50af7fa9 VZ |
749 | { |
750 | // no details... it's easier to disable a button than to change the | |
751 | // dialog layout depending on whether we have details or not | |
752 | m_btnDetails->Disable(); | |
753 | } | |
23f681ec | 754 | #endif // 0 |
50af7fa9 | 755 | |
f1df0927 VZ |
756 | Centre(); |
757 | } | |
758 | ||
f6bcfd97 BP |
759 | void wxLogDialog::CreateDetailsControls() |
760 | { | |
761 | // create the save button and separator line if possible | |
762 | #if wxUSE_FILE | |
763 | m_btnSave = new wxButton(this, wxID_SAVE, _("&Save...")); | |
764 | #endif // wxUSE_FILE | |
765 | ||
766 | #if wxUSE_STATLINE | |
767 | m_statline = new wxStaticLine(this, -1); | |
768 | #endif // wxUSE_STATLINE | |
769 | ||
770 | // create the list ctrl now | |
771 | m_listctrl = new wxListCtrl(this, -1, | |
772 | wxDefaultPosition, wxDefaultSize, | |
773 | wxSUNKEN_BORDER | | |
774 | wxLC_REPORT | | |
775 | wxLC_NO_HEADER | | |
776 | wxLC_SINGLE_SEL); | |
777 | ||
778 | // no need to translate these strings as they're not shown to the | |
779 | // user anyhow (we use wxLC_NO_HEADER style) | |
780 | m_listctrl->InsertColumn(0, _T("Message")); | |
781 | m_listctrl->InsertColumn(1, _T("Time")); | |
782 | ||
783 | // prepare the imagelist | |
784 | static const int ICON_SIZE = 16; | |
785 | wxImageList *imageList = new wxImageList(ICON_SIZE, ICON_SIZE); | |
786 | ||
787 | // order should be the same as in the switch below! | |
788 | static const int icons[] = | |
789 | { | |
790 | wxICON_ERROR, | |
791 | wxICON_EXCLAMATION, | |
792 | wxICON_INFORMATION | |
793 | }; | |
794 | ||
795 | bool loadedIcons = TRUE; | |
796 | ||
797 | #ifndef __WIN16__ | |
798 | for ( size_t icon = 0; icon < WXSIZEOF(icons); icon++ ) | |
799 | { | |
800 | wxBitmap bmp = wxTheApp->GetStdIcon(icons[icon]); | |
801 | ||
802 | // This may very well fail if there are insufficient | |
803 | // colours available. Degrade gracefully. | |
804 | ||
805 | if (!bmp.Ok()) | |
806 | loadedIcons = FALSE; | |
807 | else | |
808 | imageList->Add(wxImage(bmp). | |
809 | Rescale(ICON_SIZE, ICON_SIZE). | |
810 | ConvertToBitmap()); | |
811 | } | |
812 | ||
813 | m_listctrl->SetImageList(imageList, wxIMAGE_LIST_SMALL); | |
814 | #endif // !Win16 | |
815 | ||
816 | // and fill it | |
817 | wxString fmt = wxLog::GetTimestamp(); | |
818 | if ( !fmt ) | |
819 | { | |
820 | // default format | |
821 | fmt = _T("%c"); | |
822 | } | |
823 | ||
824 | size_t count = m_messages.GetCount(); | |
825 | for ( size_t n = 0; n < count; n++ ) | |
826 | { | |
827 | int image = -1; | |
828 | #ifndef __WIN16__ | |
829 | switch ( m_severity[n] ) | |
830 | { | |
831 | case wxLOG_Error: | |
832 | image = 0; | |
833 | break; | |
834 | ||
835 | case wxLOG_Warning: | |
836 | image = 1; | |
837 | break; | |
838 | ||
839 | default: | |
840 | image = 2; | |
841 | } | |
842 | #endif // !Win16 | |
843 | ||
844 | if (!loadedIcons) | |
845 | image = -1; | |
846 | ||
847 | if (image > -1) | |
848 | m_listctrl->InsertItem(n, m_messages[n], image); | |
849 | else | |
850 | m_listctrl->InsertItem(n, m_messages[n]); | |
851 | ||
852 | m_listctrl->SetItem(n, 1, | |
f94dfb38 | 853 | TimeStamp(fmt, (time_t)m_times[n])); |
f6bcfd97 BP |
854 | } |
855 | ||
856 | // let the columns size themselves | |
857 | m_listctrl->SetColumnWidth(0, wxLIST_AUTOSIZE); | |
858 | m_listctrl->SetColumnWidth(1, wxLIST_AUTOSIZE); | |
859 | ||
860 | // get the approx height of the listctrl | |
861 | wxFont font = GetFont(); | |
862 | if ( !font.Ok() ) | |
863 | font = *wxSWISS_FONT; | |
864 | ||
865 | int y; | |
866 | GetTextExtent(_T("H"), (int*)NULL, &y, (int*)NULL, (int*)NULL, &font); | |
867 | int height = wxMax(y*(count + 3), 100); | |
4d509295 VZ |
868 | |
869 | // if the height as computed from list items exceeds, together with the | |
870 | // actual message & controls, the screen, make it smaller | |
871 | int heightMax = | |
872 | (3*wxSystemSettings::GetSystemMetric(wxSYS_SCREEN_Y))/5 - GetSize().y; | |
873 | ||
874 | m_listctrl->SetSize(-1, wxMin(height, heightMax)); | |
f6bcfd97 BP |
875 | } |
876 | ||
4aff28fc VZ |
877 | void wxLogDialog::OnListSelect(wxListEvent& event) |
878 | { | |
879 | // we can't just disable the control because this looks ugly under Windows | |
880 | // (wrong bg colour, no scrolling...), but we still want to disable | |
881 | // selecting items - it makes no sense here | |
225fe9d6 | 882 | m_listctrl->SetItemState(event.GetIndex(), 0, wxLIST_STATE_SELECTED); |
4aff28fc VZ |
883 | } |
884 | ||
f1df0927 VZ |
885 | void wxLogDialog::OnOk(wxCommandEvent& WXUNUSED(event)) |
886 | { | |
887 | EndModal(wxID_OK); | |
888 | } | |
889 | ||
f6bcfd97 BP |
890 | #if wxUSE_FILE |
891 | ||
892 | void wxLogDialog::OnSave(wxCommandEvent& WXUNUSED(event)) | |
893 | { | |
3e6e2754 | 894 | #if wxUSE_FILEDLG |
f6bcfd97 BP |
895 | wxFile file; |
896 | int rc = OpenLogFile(file); | |
897 | if ( rc == -1 ) | |
898 | { | |
899 | // cancelled | |
900 | return; | |
901 | } | |
902 | ||
903 | bool ok = rc != 0; | |
904 | ||
905 | wxString fmt = wxLog::GetTimestamp(); | |
906 | if ( !fmt ) | |
907 | { | |
908 | // default format | |
909 | fmt = _T("%c"); | |
910 | } | |
911 | ||
912 | size_t count = m_messages.GetCount(); | |
913 | for ( size_t n = 0; ok && (n < count); n++ ) | |
914 | { | |
915 | wxString line; | |
f94dfb38 | 916 | line << TimeStamp(fmt, (time_t)m_times[n]) |
f6bcfd97 BP |
917 | << _T(": ") |
918 | << m_messages[n] | |
919 | << wxTextFile::GetEOL(); | |
920 | ||
921 | ok = file.Write(line); | |
922 | } | |
923 | ||
924 | if ( ok ) | |
925 | ok = file.Close(); | |
926 | ||
927 | if ( !ok ) | |
928 | wxLogError(_("Can't save log contents to file.")); | |
3e6e2754 | 929 | #endif |
f6bcfd97 BP |
930 | } |
931 | ||
932 | #endif // wxUSE_FILE | |
933 | ||
f1df0927 VZ |
934 | void wxLogDialog::OnDetails(wxCommandEvent& WXUNUSED(event)) |
935 | { | |
936 | wxSizer *sizer = GetSizer(); | |
937 | ||
938 | if ( m_showingDetails ) | |
939 | { | |
5f170f33 | 940 | m_btnDetails->SetLabel(ms_details + _T(">>")); |
f1df0927 VZ |
941 | |
942 | sizer->Remove(m_listctrl); | |
f6bcfd97 BP |
943 | |
944 | #if wxUSE_STATLINE | |
945 | sizer->Remove(m_statline); | |
946 | #endif // wxUSE_STATLINE | |
947 | ||
948 | #if wxUSE_FILE | |
949 | sizer->Remove(m_btnSave); | |
950 | #endif // wxUSE_FILE | |
f1df0927 VZ |
951 | } |
952 | else // show details now | |
953 | { | |
5f170f33 | 954 | m_btnDetails->SetLabel(wxString(_T("<< ")) + ms_details); |
f1df0927 VZ |
955 | |
956 | if ( !m_listctrl ) | |
957 | { | |
f6bcfd97 BP |
958 | CreateDetailsControls(); |
959 | } | |
f1df0927 | 960 | |
f6bcfd97 BP |
961 | #if wxUSE_STATLINE |
962 | sizer->Add(m_statline, 0, wxEXPAND | (wxALL & ~wxTOP), MARGIN); | |
963 | #endif // wxUSE_STATLINE | |
f1df0927 | 964 | |
f6bcfd97 | 965 | sizer->Add(m_listctrl, 1, wxEXPAND | (wxALL & ~wxTOP), MARGIN); |
f1df0927 | 966 | |
f6bcfd97 BP |
967 | #if wxUSE_FILE |
968 | sizer->Add(m_btnSave, 0, wxALIGN_RIGHT | (wxALL & ~wxTOP), MARGIN); | |
969 | #endif // wxUSE_FILE | |
f1df0927 VZ |
970 | } |
971 | ||
972 | m_showingDetails = !m_showingDetails; | |
973 | ||
974 | // in any case, our size changed - update | |
ea451729 | 975 | sizer->SetSizeHints(this); |
f1df0927 | 976 | sizer->Fit(this); |
f6bcfd97 BP |
977 | |
978 | #ifdef __WXGTK__ | |
979 | // VS: this is neccessary in order to force frame redraw under | |
980 | // WindowMaker or fvwm2 (and probably other broken WMs). | |
981 | // Otherwise, detailed list wouldn't be displayed. | |
982 | Show(TRUE); | |
983 | #endif // wxGTK | |
f1df0927 VZ |
984 | } |
985 | ||
986 | wxLogDialog::~wxLogDialog() | |
987 | { | |
988 | if ( m_listctrl ) | |
989 | { | |
990 | delete m_listctrl->GetImageList(wxIMAGE_LIST_SMALL); | |
991 | } | |
992 | } | |
993 | ||
994 | #endif // wxUSE_LOG_DIALOG | |
f6bcfd97 | 995 | |
3e6e2754 | 996 | #if wxUSE_FILE && wxUSE_FILEDLG |
f6bcfd97 BP |
997 | |
998 | // pass an uninitialized file object, the function will ask the user for the | |
999 | // filename and try to open it, returns TRUE on success (file was opened), | |
1000 | // FALSE if file couldn't be opened/created and -1 if the file selection | |
1001 | // dialog was cancelled | |
1002 | static int OpenLogFile(wxFile& file, wxString *pFilename) | |
1003 | { | |
1004 | // get the file name | |
1005 | // ----------------- | |
1006 | wxString filename = wxSaveFileSelector(wxT("log"), wxT("txt"), wxT("log.txt")); | |
1007 | if ( !filename ) { | |
1008 | // cancelled | |
1009 | return -1; | |
1010 | } | |
1011 | ||
1012 | // open file | |
1013 | // --------- | |
1014 | bool bOk = FALSE; | |
1015 | if ( wxFile::Exists(filename) ) { | |
1016 | bool bAppend = FALSE; | |
1017 | wxString strMsg; | |
1018 | strMsg.Printf(_("Append log to file '%s' (choosing [No] will overwrite it)?"), | |
1019 | filename.c_str()); | |
1020 | switch ( wxMessageBox(strMsg, _("Question"), | |
1021 | wxICON_QUESTION | wxYES_NO | wxCANCEL) ) { | |
1022 | case wxYES: | |
1023 | bAppend = TRUE; | |
1024 | break; | |
1025 | ||
1026 | case wxNO: | |
1027 | bAppend = FALSE; | |
1028 | break; | |
1029 | ||
1030 | case wxCANCEL: | |
1031 | return -1; | |
1032 | ||
1033 | default: | |
1034 | wxFAIL_MSG(_("invalid message box return value")); | |
1035 | } | |
1036 | ||
1037 | if ( bAppend ) { | |
1038 | bOk = file.Open(filename, wxFile::write_append); | |
1039 | } | |
1040 | else { | |
1041 | bOk = file.Create(filename, TRUE /* overwrite */); | |
1042 | } | |
1043 | } | |
1044 | else { | |
1045 | bOk = file.Create(filename); | |
1046 | } | |
1047 | ||
1048 | if ( pFilename ) | |
1049 | *pFilename = filename; | |
1050 | ||
1051 | return bOk; | |
1052 | } | |
1053 | ||
1054 | #endif // wxUSE_FILE | |
1055 | ||
1e6feb95 VZ |
1056 | #endif // !(wxUSE_LOGGUI || wxUSE_LOGWINDOW) |
1057 | ||
1058 | #if wxUSE_TEXTCTRL | |
1059 | ||
1060 | // ---------------------------------------------------------------------------- | |
1061 | // wxLogTextCtrl implementation | |
1062 | // ---------------------------------------------------------------------------- | |
1063 | ||
1064 | wxLogTextCtrl::wxLogTextCtrl(wxTextCtrl *pTextCtrl) | |
1065 | { | |
1066 | m_pTextCtrl = pTextCtrl; | |
1067 | } | |
1068 | ||
1069 | void wxLogTextCtrl::DoLogString(const wxChar *szString, time_t WXUNUSED(t)) | |
1070 | { | |
1071 | wxString msg; | |
1072 | TimeStamp(&msg); | |
1073 | ||
61250080 | 1074 | #if defined(__WXMAC__) && !defined(__DARWIN__) |
1e6feb95 VZ |
1075 | // VZ: this is a bug in wxMac, it *must* accept '\n' as new line, the |
1076 | // translation must be done in wxTextCtrl, not here! (FIXME) | |
1077 | msg << szString << wxT('\r'); | |
1078 | #else | |
1079 | msg << szString << wxT('\n'); | |
1080 | #endif | |
1081 | ||
1082 | m_pTextCtrl->AppendText(msg); | |
1083 | } | |
1084 | ||
1085 | #endif // wxUSE_TEXTCTRL | |
1086 |