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