]>
git.saurik.com Git - wxWidgets.git/blob - src/generic/logg.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxLog-derived classes which need GUI support (the rest is in
5 // Author: Vadim Zeitlin
7 // Created: 20.09.99 (extracted from src/common/log.cpp)
9 // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
10 // Licence: wxWindows license
11 /////////////////////////////////////////////////////////////////////////////
13 // ============================================================================
15 // ============================================================================
17 // ----------------------------------------------------------------------------
19 // ----------------------------------------------------------------------------
21 // no #pragma implementation "log.h" because it's already in src/common/log.cpp
23 // For compilers that support precompilation, includes "wx.h".
24 #include "wx/wxprec.h"
31 #error "This file can't be compiled without GUI!"
36 #include "wx/button.h"
41 #include "wx/filedlg.h"
42 #include "wx/msgdlg.h"
43 #include "wx/textctrl.h"
45 #include "wx/statbmp.h"
46 #include "wx/button.h"
47 #include "wx/settings.h"
50 #if wxUSE_LOGGUI || wxUSE_LOGWINDOW
53 #include "wx/textfile.h"
54 #include "wx/statline.h"
57 // for OutputDebugString()
58 #include "wx/msw/private.h"
62 #include "wx/listctrl.h"
63 #include "wx/imaglist.h"
65 #else // !wxUSE_LOG_DIALOG
66 #include "wx/msgdlg.h"
67 #endif // wxUSE_LOG_DIALOG/!wxUSE_LOG_DIALOG
69 // ----------------------------------------------------------------------------
71 // ----------------------------------------------------------------------------
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
)
80 if ( !wxStrftime(buf
, WXSIZEOF(buf
), format
, localtime(&t
)) )
82 // buffer is too small?
83 wxFAIL_MSG(_T("strftime() failed"));
89 class wxLogDialog
: public wxDialog
92 wxLogDialog(wxWindow
*parent
,
93 const wxArrayString
& messages
,
94 const wxArrayInt
& severity
,
95 const wxArrayLong
& timess
,
96 const wxString
& caption
,
98 virtual ~wxLogDialog();
101 void OnOk(wxCommandEvent
& event
);
102 void OnDetails(wxCommandEvent
& event
);
104 void OnSave(wxCommandEvent
& event
);
106 void OnListSelect(wxListEvent
& event
);
109 // create controls needed for the details display
110 void CreateDetailsControls();
112 // the data for the listctrl
113 wxArrayString m_messages
;
114 wxArrayInt m_severity
;
117 // the "toggle" button and its state
118 wxButton
*m_btnDetails
;
119 bool m_showingDetails
;
121 // the controls which are not shown initially (but only when details
122 // button is pressed)
123 wxListCtrl
*m_listctrl
;
125 wxStaticLine
*m_statline
;
126 #endif // wxUSE_STATLINE
131 // the translated "Details" string
132 static wxString ms_details
;
134 DECLARE_EVENT_TABLE()
137 BEGIN_EVENT_TABLE(wxLogDialog
, wxDialog
)
138 EVT_BUTTON(wxID_CANCEL
, wxLogDialog::OnOk
)
139 EVT_BUTTON(wxID_MORE
, wxLogDialog::OnDetails
)
141 EVT_BUTTON(wxID_SAVE
, wxLogDialog::OnSave
)
143 EVT_LIST_ITEM_SELECTED(-1, wxLogDialog::OnListSelect
)
146 #endif // wxUSE_LOG_DIALOG
148 // ----------------------------------------------------------------------------
150 // ----------------------------------------------------------------------------
152 #if wxUSE_FILE && wxUSE_FILEDLG
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
);
162 // ----------------------------------------------------------------------------
164 // ----------------------------------------------------------------------------
166 // we use a global variable to store the frame pointer for wxLogStatus - bad,
167 // but it's the easiest way
168 static wxFrame
*gs_pFrame
= NULL
; // FIXME MT-unsafe
170 // ============================================================================
172 // ============================================================================
174 // ----------------------------------------------------------------------------
176 // ----------------------------------------------------------------------------
178 // accepts an additional argument which tells to which frame the output should
180 void wxLogStatus(wxFrame
*pFrame
, const wxChar
*szFormat
, ...)
184 wxLog
*pLog
= wxLog::GetActiveTarget();
185 if ( pLog
!= NULL
) {
187 va_start(argptr
, szFormat
);
188 msg
.PrintfV(szFormat
, argptr
);
191 wxASSERT( gs_pFrame
== NULL
); // should be reset!
193 wxLog::OnLog(wxLOG_Status
, msg
, time(NULL
));
194 gs_pFrame
= (wxFrame
*) NULL
;
198 // ----------------------------------------------------------------------------
199 // wxLogGui implementation (FIXME MT-unsafe)
200 // ----------------------------------------------------------------------------
207 void wxLogGui::Clear()
211 m_bHasMessages
= FALSE
;
218 void wxLogGui::Flush()
220 if ( !m_bHasMessages
)
223 // do it right now to block any new calls to Flush() while we're here
224 m_bHasMessages
= FALSE
;
226 wxString appName
= wxTheApp
->GetAppName();
228 appName
[0u] = wxToupper(appName
[0u]);
231 wxString titleFormat
;
233 titleFormat
= _("%s Error");
236 else if ( m_bWarnings
) {
237 titleFormat
= _("%s Warning");
238 style
= wxICON_EXCLAMATION
;
241 titleFormat
= _("%s Information");
242 style
= wxICON_INFORMATION
;
246 title
.Printf(titleFormat
, appName
.c_str());
248 // this is the best we can do here
249 wxWindow
*parent
= wxTheApp
->GetTopWindow();
251 size_t nMsgCount
= m_aMessages
.Count();
253 // avoid showing other log dialogs until we're done with the dialog we're
254 // showing right now: nested modal dialogs make for really bad UI!
258 if ( nMsgCount
== 1 )
260 str
= m_aMessages
[0];
262 else // more than one message
266 wxLogDialog
dlg(parent
,
267 m_aMessages
, m_aSeverity
, m_aTimes
,
270 // clear the message list before showing the dialog because while it's
271 // shown some new messages may appear
274 (void)dlg
.ShowModal();
275 #else // !wxUSE_LOG_DIALOG
276 // concatenate all strings (but not too many to not overfill the msg box)
279 // start from the most recent message
280 for ( size_t n
= nMsgCount
; n
> 0; n
-- ) {
281 // for Windows strings longer than this value are wrapped (NT 4.0)
282 const size_t nMsgLineWidth
= 156;
284 nLines
+= (m_aMessages
[n
- 1].Len() + nMsgLineWidth
- 1) / nMsgLineWidth
;
286 if ( nLines
> 25 ) // don't put too many lines in message box
289 str
<< m_aMessages
[n
- 1] << wxT("\n");
291 #endif // wxUSE_LOG_DIALOG/!wxUSE_LOG_DIALOG
294 // this catches both cases of 1 message with wxUSE_LOG_DIALOG and any
295 // situation without it
298 wxMessageBox(str
, title
, wxOK
| style
, parent
);
300 // no undisplayed messages whatsoever
304 // allow flushing the logs again
308 // log all kinds of messages
309 void wxLogGui::DoLog(wxLogLevel level
, const wxChar
*szString
, time_t t
)
317 m_aMessages
.Add(szString
);
318 m_aSeverity
.Add(wxLOG_Message
);
319 m_aTimes
.Add((long)t
);
320 m_bHasMessages
= TRUE
;
328 // find the top window and set it's status text if it has any
329 wxFrame
*pFrame
= gs_pFrame
;
330 if ( pFrame
== NULL
) {
331 wxWindow
*pWin
= wxTheApp
->GetTopWindow();
332 if ( pWin
!= NULL
&& pWin
->IsKindOf(CLASSINFO(wxFrame
)) ) {
333 pFrame
= (wxFrame
*)pWin
;
337 if ( pFrame
&& pFrame
->GetStatusBar() )
338 pFrame
->SetStatusText(szString
);
340 #endif // wxUSE_STATUSBAR
351 #if defined(__WXMSW__) && !defined(__WXMICROWIN__)
352 // don't prepend debug/trace here: it goes to the
353 // debug window anyhow
355 OutputDebugString(str
);
357 // send them to stderr
358 wxFprintf(stderr
, wxT("[%s] %s\n"),
359 level
== wxLOG_Trace
? wxT("Trace")
365 #endif // __WXDEBUG__
369 case wxLOG_FatalError
:
370 // show this one immediately
371 wxMessageBox(szString
, _("Fatal error"), wxICON_HAND
);
377 #if !wxUSE_LOG_DIALOG
378 // discard earlier informational messages if this is the 1st
379 // error because they might not make sense any more and showing
380 // them in a message box might be confusing
384 #endif // wxUSE_LOG_DIALOG
391 // for the warning we don't discard the info messages
395 m_aMessages
.Add(szString
);
396 m_aSeverity
.Add((int)level
);
397 m_aTimes
.Add((long)t
);
398 m_bHasMessages
= TRUE
;
403 // ----------------------------------------------------------------------------
404 // wxLogWindow and wxLogFrame implementation
405 // ----------------------------------------------------------------------------
409 class wxLogFrame
: public wxFrame
413 wxLogFrame(wxFrame
*pParent
, wxLogWindow
*log
, const wxChar
*szTitle
);
414 virtual ~wxLogFrame();
417 void OnClose(wxCommandEvent
& event
);
418 void OnCloseWindow(wxCloseEvent
& event
);
420 void OnSave (wxCommandEvent
& event
);
422 void OnClear(wxCommandEvent
& event
);
424 void OnIdle(wxIdleEvent
&);
427 wxTextCtrl
*TextCtrl() const { return m_pTextCtrl
; }
430 // use standard ids for our commands!
433 Menu_Close
= wxID_CLOSE
,
434 Menu_Save
= wxID_SAVE
,
435 Menu_Clear
= wxID_CLEAR
438 // common part of OnClose() and OnCloseWindow()
441 wxTextCtrl
*m_pTextCtrl
;
444 DECLARE_EVENT_TABLE()
447 BEGIN_EVENT_TABLE(wxLogFrame
, wxFrame
)
448 // wxLogWindow menu events
449 EVT_MENU(Menu_Close
, wxLogFrame::OnClose
)
451 EVT_MENU(Menu_Save
, wxLogFrame::OnSave
)
453 EVT_MENU(Menu_Clear
, wxLogFrame::OnClear
)
455 EVT_CLOSE(wxLogFrame::OnCloseWindow
)
458 wxLogFrame::wxLogFrame(wxFrame
*pParent
, wxLogWindow
*log
, const wxChar
*szTitle
)
459 : wxFrame(pParent
, -1, szTitle
)
463 m_pTextCtrl
= new wxTextCtrl(this, -1, wxEmptyString
, wxDefaultPosition
,
471 wxMenuBar
*pMenuBar
= new wxMenuBar
;
472 wxMenu
*pMenu
= new wxMenu
;
474 pMenu
->Append(Menu_Save
, _("&Save..."), _("Save log contents to file"));
476 pMenu
->Append(Menu_Clear
, _("C&lear"), _("Clear the log contents"));
477 pMenu
->AppendSeparator();
478 pMenu
->Append(Menu_Close
, _("&Close"), _("Close this window"));
479 pMenuBar
->Append(pMenu
, _("&Log"));
480 SetMenuBar(pMenuBar
);
481 #endif // wxUSE_MENUS
484 // status bar for menu prompts
486 #endif // wxUSE_STATUSBAR
488 m_log
->OnFrameCreate(this);
491 void wxLogFrame::DoClose()
493 if ( m_log
->OnFrameClose(this) )
495 // instead of closing just hide the window to be able to Show() it
501 void wxLogFrame::OnClose(wxCommandEvent
& WXUNUSED(event
))
506 void wxLogFrame::OnCloseWindow(wxCloseEvent
& WXUNUSED(event
))
512 void wxLogFrame::OnSave(wxCommandEvent
& WXUNUSED(event
))
517 int rc
= OpenLogFile(file
, &filename
);
526 // retrieve text and save it
527 // -------------------------
528 int nLines
= m_pTextCtrl
->GetNumberOfLines();
529 for ( int nLine
= 0; bOk
&& nLine
< nLines
; nLine
++ ) {
530 bOk
= file
.Write(m_pTextCtrl
->GetLineText(nLine
) +
531 wxTextFile::GetEOL());
538 wxLogError(_("Can't save log contents to file."));
541 wxLogStatus(this, _("Log saved to the file '%s'."), filename
.c_str());
547 void wxLogFrame::OnClear(wxCommandEvent
& WXUNUSED(event
))
549 m_pTextCtrl
->Clear();
552 wxLogFrame::~wxLogFrame()
554 m_log
->OnFrameDelete(this);
560 wxLogWindow::wxLogWindow(wxFrame
*pParent
,
561 const wxChar
*szTitle
,
565 PassMessages(bDoPass
);
567 m_pLogFrame
= new wxLogFrame(pParent
, this, szTitle
);
570 m_pLogFrame
->Show(TRUE
);
573 void wxLogWindow::Show(bool bShow
)
575 m_pLogFrame
->Show(bShow
);
578 void wxLogWindow::DoLog(wxLogLevel level
, const wxChar
*szString
, time_t t
)
580 // first let the previous logger show it
581 wxLogPassThrough::DoLog(level
, szString
, t
);
586 // by default, these messages are ignored by wxLog, so process
588 if ( !wxIsEmpty(szString
) )
591 str
<< _("Status: ") << szString
;
596 // don't put trace messages in the text window for 2 reasons:
597 // 1) there are too many of them
598 // 2) they may provoke other trace messages thus sending a program
599 // into an infinite loop
604 // and this will format it nicely and call our DoLogString()
605 wxLog::DoLog(level
, szString
, t
);
609 m_bHasMessages
= TRUE
;
612 void wxLogWindow::DoLogString(const wxChar
*szString
, time_t WXUNUSED(t
))
614 // put the text into our window
615 wxTextCtrl
*pText
= m_pLogFrame
->TextCtrl();
617 // remove selection (WriteText is in fact ReplaceSelection)
619 long nLen
= pText
->GetLastPosition();
620 pText
->SetSelection(nLen
, nLen
);
625 msg
<< szString
<< wxT('\n');
627 pText
->AppendText(msg
);
629 // TODO ensure that the line can be seen
632 wxFrame
*wxLogWindow::GetFrame() const
637 void wxLogWindow::OnFrameCreate(wxFrame
* WXUNUSED(frame
))
641 bool wxLogWindow::OnFrameClose(wxFrame
* WXUNUSED(frame
))
647 void wxLogWindow::OnFrameDelete(wxFrame
* WXUNUSED(frame
))
649 m_pLogFrame
= (wxLogFrame
*)NULL
;
652 wxLogWindow::~wxLogWindow()
654 // may be NULL if log frame already auto destroyed itself
658 // ----------------------------------------------------------------------------
660 // ----------------------------------------------------------------------------
664 static const size_t MARGIN
= 10;
666 wxString
wxLogDialog::ms_details
;
668 wxLogDialog::wxLogDialog(wxWindow
*parent
,
669 const wxArrayString
& messages
,
670 const wxArrayInt
& severity
,
671 const wxArrayLong
& times
,
672 const wxString
& caption
,
674 : wxDialog(parent
, -1, caption
,
675 wxDefaultPosition
, wxDefaultSize
,
676 wxDEFAULT_DIALOG_STYLE
| wxRESIZE_BORDER
)
678 if ( ms_details
.IsEmpty() )
680 // ensure that we won't loop here if wxGetTranslation()
681 // happens to pop up a Log message while translating this :-)
682 ms_details
= wxTRANSLATE("&Details");
683 ms_details
= wxGetTranslation(ms_details
);
686 size_t count
= messages
.GetCount();
687 m_messages
.Alloc(count
);
688 m_severity
.Alloc(count
);
689 m_times
.Alloc(count
);
691 for ( size_t n
= 0; n
< count
; n
++ )
693 wxString msg
= messages
[n
];
696 m_messages
.Add(msg
.BeforeFirst(_T('\n')));
697 msg
= msg
.AfterFirst(_T('\n'));
699 m_severity
.Add(severity
[n
]);
700 m_times
.Add(times
[n
]);
705 m_showingDetails
= FALSE
; // not initially
706 m_listctrl
= (wxListCtrl
*)NULL
;
709 m_statline
= (wxStaticLine
*)NULL
;
710 #endif // wxUSE_STATLINE
713 m_btnSave
= (wxButton
*)NULL
;
716 // create the controls which are always shown and layout them: we use
717 // sizers even though our window is not resizeable to calculate the size of
718 // the dialog properly
719 wxBoxSizer
*sizerTop
= new wxBoxSizer(wxVERTICAL
);
720 wxBoxSizer
*sizerButtons
= new wxBoxSizer(wxVERTICAL
);
721 wxBoxSizer
*sizerAll
= new wxBoxSizer(wxHORIZONTAL
);
723 // this "Ok" button has wxID_CANCEL id - not very logical, but this allows
724 // to close the log dialog with <Esc> which wouldn't work otherwise (as it
725 // translates into click on cancel button)
726 wxButton
*btnOk
= new wxButton(this, wxID_CANCEL
, _("OK"));
727 sizerButtons
->Add(btnOk
, 0, wxCENTRE
| wxBOTTOM
, MARGIN
/2);
728 m_btnDetails
= new wxButton(this, wxID_MORE
, ms_details
+ _T(" >>"));
729 sizerButtons
->Add(m_btnDetails
, 0, wxCENTRE
| wxTOP
, MARGIN
/2 - 1);
732 wxIcon icon
= wxTheApp
->GetStdIcon((int)(style
& wxICON_MASK
));
733 sizerAll
->Add(new wxStaticBitmap(this, -1, icon
), 0);
736 const wxString
& message
= messages
.Last();
737 sizerAll
->Add(CreateTextSizer(message
), 1,
738 wxALIGN_CENTRE_VERTICAL
| wxLEFT
| wxRIGHT
, MARGIN
);
739 sizerAll
->Add(sizerButtons
, 0, wxALIGN_RIGHT
| wxLEFT
, MARGIN
);
741 sizerTop
->Add(sizerAll
, 0, wxALL
| wxEXPAND
, MARGIN
);
746 sizerTop
->SetSizeHints(this);
751 // this can't happen any more as we don't use this dialog in this case
755 // no details... it's easier to disable a button than to change the
756 // dialog layout depending on whether we have details or not
757 m_btnDetails
->Disable();
764 void wxLogDialog::CreateDetailsControls()
766 // create the save button and separator line if possible
768 m_btnSave
= new wxButton(this, wxID_SAVE
, _("&Save..."));
772 m_statline
= new wxStaticLine(this, -1);
773 #endif // wxUSE_STATLINE
775 // create the list ctrl now
776 m_listctrl
= new wxListCtrl(this, -1,
777 wxDefaultPosition
, wxDefaultSize
,
783 // no need to translate these strings as they're not shown to the
784 // user anyhow (we use wxLC_NO_HEADER style)
785 m_listctrl
->InsertColumn(0, _T("Message"));
786 m_listctrl
->InsertColumn(1, _T("Time"));
788 // prepare the imagelist
789 static const int ICON_SIZE
= 16;
790 wxImageList
*imageList
= new wxImageList(ICON_SIZE
, ICON_SIZE
);
792 // order should be the same as in the switch below!
793 static const int icons
[] =
800 bool loadedIcons
= TRUE
;
803 for ( size_t icon
= 0; icon
< WXSIZEOF(icons
); icon
++ )
805 wxBitmap bmp
= wxTheApp
->GetStdIcon(icons
[icon
]);
807 // This may very well fail if there are insufficient
808 // colours available. Degrade gracefully.
813 imageList
->Add(wxImage(bmp
).
814 Rescale(ICON_SIZE
, ICON_SIZE
).
818 m_listctrl
->SetImageList(imageList
, wxIMAGE_LIST_SMALL
);
822 wxString fmt
= wxLog::GetTimestamp();
829 size_t count
= m_messages
.GetCount();
830 for ( size_t n
= 0; n
< count
; n
++ )
834 switch ( m_severity
[n
] )
853 m_listctrl
->InsertItem(n
, m_messages
[n
], image
);
855 m_listctrl
->InsertItem(n
, m_messages
[n
]);
857 m_listctrl
->SetItem(n
, 1,
858 TimeStamp(fmt
, (time_t)m_times
[n
]));
861 // let the columns size themselves
862 m_listctrl
->SetColumnWidth(0, wxLIST_AUTOSIZE
);
863 m_listctrl
->SetColumnWidth(1, wxLIST_AUTOSIZE
);
865 // get the approx height of the listctrl
866 wxFont font
= GetFont();
868 font
= *wxSWISS_FONT
;
871 GetTextExtent(_T("H"), (int*)NULL
, &y
, (int*)NULL
, (int*)NULL
, &font
);
872 int height
= wxMax(y
*(count
+ 3), 100);
874 // if the height as computed from list items exceeds, together with the
875 // actual message & controls, the screen, make it smaller
877 (3*wxSystemSettings::GetSystemMetric(wxSYS_SCREEN_Y
))/5 - GetSize().y
;
879 m_listctrl
->SetSize(-1, wxMin(height
, heightMax
));
882 void wxLogDialog::OnListSelect(wxListEvent
& event
)
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
887 m_listctrl
->SetItemState(event
.GetIndex(), 0, wxLIST_STATE_SELECTED
);
890 void wxLogDialog::OnOk(wxCommandEvent
& WXUNUSED(event
))
897 void wxLogDialog::OnSave(wxCommandEvent
& WXUNUSED(event
))
901 int rc
= OpenLogFile(file
);
910 wxString fmt
= wxLog::GetTimestamp();
917 size_t count
= m_messages
.GetCount();
918 for ( size_t n
= 0; ok
&& (n
< count
); n
++ )
921 line
<< TimeStamp(fmt
, (time_t)m_times
[n
])
924 << wxTextFile::GetEOL();
926 ok
= file
.Write(line
);
933 wxLogError(_("Can't save log contents to file."));
939 void wxLogDialog::OnDetails(wxCommandEvent
& WXUNUSED(event
))
941 wxSizer
*sizer
= GetSizer();
943 if ( m_showingDetails
)
945 m_btnDetails
->SetLabel(ms_details
+ _T(">>"));
947 sizer
->Remove(m_listctrl
);
950 sizer
->Remove(m_statline
);
951 #endif // wxUSE_STATLINE
954 sizer
->Remove(m_btnSave
);
957 else // show details now
959 m_btnDetails
->SetLabel(wxString(_T("<< ")) + ms_details
);
963 CreateDetailsControls();
967 sizer
->Add(m_statline
, 0, wxEXPAND
| (wxALL
& ~wxTOP
), MARGIN
);
968 #endif // wxUSE_STATLINE
970 sizer
->Add(m_listctrl
, 1, wxEXPAND
| (wxALL
& ~wxTOP
), MARGIN
);
973 sizer
->Add(m_btnSave
, 0, wxALIGN_RIGHT
| (wxALL
& ~wxTOP
), MARGIN
);
977 m_showingDetails
= !m_showingDetails
;
979 // in any case, our size changed - update
980 sizer
->SetSizeHints(this);
984 // VS: this is neccessary in order to force frame redraw under
985 // WindowMaker or fvwm2 (and probably other broken WMs).
986 // Otherwise, detailed list wouldn't be displayed.
991 wxLogDialog::~wxLogDialog()
995 delete m_listctrl
->GetImageList(wxIMAGE_LIST_SMALL
);
999 #endif // wxUSE_LOG_DIALOG
1001 #if wxUSE_FILE && wxUSE_FILEDLG
1003 // pass an uninitialized file object, the function will ask the user for the
1004 // filename and try to open it, returns TRUE on success (file was opened),
1005 // FALSE if file couldn't be opened/created and -1 if the file selection
1006 // dialog was cancelled
1007 static int OpenLogFile(wxFile
& file
, wxString
*pFilename
)
1009 // get the file name
1010 // -----------------
1011 wxString filename
= wxSaveFileSelector(wxT("log"), wxT("txt"), wxT("log.txt"));
1020 if ( wxFile::Exists(filename
) ) {
1021 bool bAppend
= FALSE
;
1023 strMsg
.Printf(_("Append log to file '%s' (choosing [No] will overwrite it)?"),
1025 switch ( wxMessageBox(strMsg
, _("Question"),
1026 wxICON_QUESTION
| wxYES_NO
| wxCANCEL
) ) {
1039 wxFAIL_MSG(_("invalid message box return value"));
1043 bOk
= file
.Open(filename
, wxFile::write_append
);
1046 bOk
= file
.Create(filename
, TRUE
/* overwrite */);
1050 bOk
= file
.Create(filename
);
1054 *pFilename
= filename
;
1059 #endif // wxUSE_FILE
1061 #endif // !(wxUSE_LOGGUI || wxUSE_LOGWINDOW)
1065 // ----------------------------------------------------------------------------
1066 // wxLogTextCtrl implementation
1067 // ----------------------------------------------------------------------------
1069 wxLogTextCtrl::wxLogTextCtrl(wxTextCtrl
*pTextCtrl
)
1071 m_pTextCtrl
= pTextCtrl
;
1074 void wxLogTextCtrl::DoLogString(const wxChar
*szString
, time_t WXUNUSED(t
))
1079 #if defined(__WXMAC__) && !defined(__DARWIN__)
1080 // VZ: this is a bug in wxMac, it *must* accept '\n' as new line, the
1081 // translation must be done in wxTextCtrl, not here! (FIXME)
1082 msg
<< szString
<< wxT('\r');
1084 msg
<< szString
<< wxT('\n');
1087 m_pTextCtrl
->AppendText(msg
);
1090 #endif // wxUSE_TEXTCTRL