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