]>
git.saurik.com Git - wxWidgets.git/blob - src/generic/logg.cpp
097c5945f09540dd9de2a968b8c8f106b6535122
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"
49 #if wxUSE_LOGGUI || wxUSE_LOGWINDOW
52 #include "wx/textfile.h"
53 #include "wx/statline.h"
56 // for OutputDebugString()
57 #include "wx/msw/private.h"
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
65 #include "wx/listctrl.h"
66 #include "wx/imaglist.h"
68 #else // !wxUSE_TEXTFILE
69 #include "wx/msgdlg.h"
70 #endif // wxUSE_LOG_DIALOG/!wxUSE_LOG_DIALOG
72 // ----------------------------------------------------------------------------
74 // ----------------------------------------------------------------------------
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
)
83 if ( !wxStrftime(buf
, WXSIZEOF(buf
), format
, localtime(&t
)) )
85 // buffer is too small?
86 wxFAIL_MSG(_T("strftime() failed"));
92 class wxLogDialog
: public wxDialog
95 wxLogDialog(wxWindow
*parent
,
96 const wxArrayString
& messages
,
97 const wxArrayInt
& severity
,
98 const wxArrayLong
& timess
,
99 const wxString
& caption
,
101 virtual ~wxLogDialog();
104 void OnOk(wxCommandEvent
& event
);
105 void OnDetails(wxCommandEvent
& event
);
107 void OnSave(wxCommandEvent
& event
);
109 void OnListSelect(wxListEvent
& event
);
112 // create controls needed for the details display
113 void CreateDetailsControls();
115 // the data for the listctrl
116 wxArrayString m_messages
;
117 wxArrayInt m_severity
;
120 // the "toggle" button and its state
121 wxButton
*m_btnDetails
;
122 bool m_showingDetails
;
124 // the controls which are not shown initially (but only when details
125 // button is pressed)
126 wxListCtrl
*m_listctrl
;
128 wxStaticLine
*m_statline
;
129 #endif // wxUSE_STATLINE
134 // the translated "Details" string
135 static wxString ms_details
;
137 DECLARE_EVENT_TABLE()
140 BEGIN_EVENT_TABLE(wxLogDialog
, wxDialog
)
141 EVT_BUTTON(wxID_CANCEL
, wxLogDialog::OnOk
)
142 EVT_BUTTON(wxID_MORE
, wxLogDialog::OnDetails
)
144 EVT_BUTTON(wxID_SAVE
, wxLogDialog::OnSave
)
146 EVT_LIST_ITEM_SELECTED(-1, wxLogDialog::OnListSelect
)
149 #endif // wxUSE_LOG_DIALOG
151 // ----------------------------------------------------------------------------
153 // ----------------------------------------------------------------------------
155 #if wxUSE_FILE && wxUSE_FILEDLG
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
);
165 // ----------------------------------------------------------------------------
167 // ----------------------------------------------------------------------------
169 // we use a global variable to store the frame pointer for wxLogStatus - bad,
170 // but it's the easiest way
171 static wxFrame
*gs_pFrame
; // FIXME MT-unsafe
173 // ============================================================================
175 // ============================================================================
177 // ----------------------------------------------------------------------------
179 // ----------------------------------------------------------------------------
181 // accepts an additional argument which tells to which frame the output should
183 void wxLogStatus(wxFrame
*pFrame
, const wxChar
*szFormat
, ...)
187 wxLog
*pLog
= wxLog::GetActiveTarget();
188 if ( pLog
!= NULL
) {
190 va_start(argptr
, szFormat
);
191 msg
.PrintfV(szFormat
, argptr
);
194 wxASSERT( gs_pFrame
== NULL
); // should be reset!
196 wxLog::OnLog(wxLOG_Status
, msg
, time(NULL
));
197 gs_pFrame
= (wxFrame
*) NULL
;
201 // ----------------------------------------------------------------------------
202 // wxLogGui implementation (FIXME MT-unsafe)
203 // ----------------------------------------------------------------------------
210 void wxLogGui::Clear()
214 m_bHasMessages
= FALSE
;
221 void wxLogGui::Flush()
223 if ( !m_bHasMessages
)
226 // do it right now to block any new calls to Flush() while we're here
227 m_bHasMessages
= FALSE
;
229 wxString appName
= wxTheApp
->GetAppName();
231 appName
[0u] = wxToupper(appName
[0u]);
234 wxString titleFormat
;
236 titleFormat
= _("%s Error");
239 else if ( m_bWarnings
) {
240 titleFormat
= _("%s Warning");
241 style
= wxICON_EXCLAMATION
;
244 titleFormat
= _("%s Information");
245 style
= wxICON_INFORMATION
;
249 title
.Printf(titleFormat
, appName
.c_str());
251 // this is the best we can do here
252 wxWindow
*parent
= wxTheApp
->GetTopWindow();
254 size_t nMsgCount
= m_aMessages
.Count();
257 if ( nMsgCount
== 1 )
259 str
= m_aMessages
[0];
261 else // more than one message
265 wxLogDialog
dlg(parent
,
266 m_aMessages
, m_aSeverity
, m_aTimes
,
269 // clear the message list before showing the dialog because while it's
270 // shown some new messages may appear
273 (void)dlg
.ShowModal();
274 #else // !wxUSE_LOG_DIALOG
275 // concatenate all strings (but not too many to not overfill the msg box)
278 // start from the most recent message
279 for ( size_t n
= nMsgCount
; n
> 0; n
-- ) {
280 // for Windows strings longer than this value are wrapped (NT 4.0)
281 const size_t nMsgLineWidth
= 156;
283 nLines
+= (m_aMessages
[n
- 1].Len() + nMsgLineWidth
- 1) / nMsgLineWidth
;
285 if ( nLines
> 25 ) // don't put too many lines in message box
288 str
<< m_aMessages
[n
- 1] << wxT("\n");
290 #endif // wxUSE_LOG_DIALOG/!wxUSE_LOG_DIALOG
293 // this catches both cases of 1 message with wxUSE_LOG_DIALOG and any
294 // situation without it
297 wxMessageBox(str
, title
, wxOK
| style
, parent
);
299 // no undisplayed messages whatsoever
304 // log all kinds of messages
305 void wxLogGui::DoLog(wxLogLevel level
, const wxChar
*szString
, time_t t
)
313 m_aMessages
.Add(szString
);
314 m_aSeverity
.Add(wxLOG_Message
);
315 m_aTimes
.Add((long)t
);
316 m_bHasMessages
= TRUE
;
324 // find the top window and set it's status text if it has any
325 wxFrame
*pFrame
= gs_pFrame
;
326 if ( pFrame
== NULL
) {
327 wxWindow
*pWin
= wxTheApp
->GetTopWindow();
328 if ( pWin
!= NULL
&& pWin
->IsKindOf(CLASSINFO(wxFrame
)) ) {
329 pFrame
= (wxFrame
*)pWin
;
333 if ( pFrame
&& pFrame
->GetStatusBar() )
334 pFrame
->SetStatusText(szString
);
336 #endif // wxUSE_STATUSBAR
344 // don't prepend debug/trace here: it goes to the
345 // debug window anyhow, but do put a timestamp
348 str
<< szString
<< wxT("\r\n");
349 OutputDebugString(str
);
351 // send them to stderr
352 wxFprintf(stderr
, wxT("%s: %s\n"),
353 level
== wxLOG_Trace
? wxT("Trace")
359 #endif // __WXDEBUG__
363 case wxLOG_FatalError
:
364 // show this one immediately
365 wxMessageBox(szString
, _("Fatal error"), wxICON_HAND
);
371 #if !wxUSE_LOG_DIALOG
372 // discard earlier informational messages if this is the 1st
373 // error because they might not make sense any more and showing
374 // them in a message box might be confusing
378 #endif // wxUSE_LOG_DIALOG
385 // for the warning we don't discard the info messages
389 m_aMessages
.Add(szString
);
390 m_aSeverity
.Add((int)level
);
391 m_aTimes
.Add((long)t
);
392 m_bHasMessages
= TRUE
;
397 // ----------------------------------------------------------------------------
398 // wxLogWindow and wxLogFrame implementation
399 // ----------------------------------------------------------------------------
403 class wxLogFrame
: public wxFrame
407 wxLogFrame(wxFrame
*pParent
, wxLogWindow
*log
, const wxChar
*szTitle
);
408 virtual ~wxLogFrame();
411 void OnClose(wxCommandEvent
& event
);
412 void OnCloseWindow(wxCloseEvent
& event
);
414 void OnSave (wxCommandEvent
& event
);
416 void OnClear(wxCommandEvent
& event
);
418 void OnIdle(wxIdleEvent
&);
421 wxTextCtrl
*TextCtrl() const { return m_pTextCtrl
; }
424 // use standard ids for our commands!
427 Menu_Close
= wxID_CLOSE
,
428 Menu_Save
= wxID_SAVE
,
429 Menu_Clear
= wxID_CLEAR
432 // common part of OnClose() and OnCloseWindow()
435 wxTextCtrl
*m_pTextCtrl
;
438 DECLARE_EVENT_TABLE()
441 BEGIN_EVENT_TABLE(wxLogFrame
, wxFrame
)
442 // wxLogWindow menu events
443 EVT_MENU(Menu_Close
, wxLogFrame::OnClose
)
445 EVT_MENU(Menu_Save
, wxLogFrame::OnSave
)
447 EVT_MENU(Menu_Clear
, wxLogFrame::OnClear
)
449 EVT_CLOSE(wxLogFrame::OnCloseWindow
)
452 wxLogFrame::wxLogFrame(wxFrame
*pParent
, wxLogWindow
*log
, const wxChar
*szTitle
)
453 : wxFrame(pParent
, -1, szTitle
)
457 m_pTextCtrl
= new wxTextCtrl(this, -1, wxEmptyString
, wxDefaultPosition
,
465 wxMenuBar
*pMenuBar
= new wxMenuBar
;
466 wxMenu
*pMenu
= new wxMenu
;
468 pMenu
->Append(Menu_Save
, _("&Save..."), _("Save log contents to file"));
470 pMenu
->Append(Menu_Clear
, _("C&lear"), _("Clear the log contents"));
471 pMenu
->AppendSeparator();
472 pMenu
->Append(Menu_Close
, _("&Close"), _("Close this window"));
473 pMenuBar
->Append(pMenu
, _("&Log"));
474 SetMenuBar(pMenuBar
);
475 #endif // wxUSE_MENUS
478 // status bar for menu prompts
480 #endif // wxUSE_STATUSBAR
482 m_log
->OnFrameCreate(this);
485 void wxLogFrame::DoClose()
487 if ( m_log
->OnFrameClose(this) )
489 // instead of closing just hide the window to be able to Show() it
495 void wxLogFrame::OnClose(wxCommandEvent
& WXUNUSED(event
))
500 void wxLogFrame::OnCloseWindow(wxCloseEvent
& WXUNUSED(event
))
506 void wxLogFrame::OnSave(wxCommandEvent
& WXUNUSED(event
))
511 int rc
= OpenLogFile(file
, &filename
);
520 // retrieve text and save it
521 // -------------------------
522 int nLines
= m_pTextCtrl
->GetNumberOfLines();
523 for ( int nLine
= 0; bOk
&& nLine
< nLines
; nLine
++ ) {
524 bOk
= file
.Write(m_pTextCtrl
->GetLineText(nLine
) +
525 wxTextFile::GetEOL());
532 wxLogError(_("Can't save log contents to file."));
535 wxLogStatus(this, _("Log saved to the file '%s'."), filename
.c_str());
541 void wxLogFrame::OnClear(wxCommandEvent
& WXUNUSED(event
))
543 m_pTextCtrl
->Clear();
546 wxLogFrame::~wxLogFrame()
548 m_log
->OnFrameDelete(this);
553 wxLogWindow::wxLogWindow(wxFrame
*pParent
,
554 const wxChar
*szTitle
,
558 m_bPassMessages
= bDoPass
;
560 m_pLogFrame
= new wxLogFrame(pParent
, this, szTitle
);
561 m_pOldLog
= wxLog::SetActiveTarget(this);
564 m_pLogFrame
->Show(TRUE
);
567 void wxLogWindow::Show(bool bShow
)
569 m_pLogFrame
->Show(bShow
);
572 void wxLogWindow::Flush()
574 if ( m_pOldLog
!= NULL
)
577 m_bHasMessages
= FALSE
;
580 void wxLogWindow::DoLog(wxLogLevel level
, const wxChar
*szString
, time_t t
)
582 // first let the previous logger show it
583 if ( m_pOldLog
!= NULL
&& m_bPassMessages
) {
584 // bogus cast just to access protected DoLog
585 ((wxLogWindow
*)m_pOldLog
)->DoLog(level
, szString
, t
);
591 // by default, these messages are ignored by wxLog, so process
593 if ( !wxIsEmpty(szString
) )
596 str
<< _("Status: ") << szString
;
601 // don't put trace messages in the text window for 2 reasons:
602 // 1) there are too many of them
603 // 2) they may provoke other trace messages thus sending a program
604 // into an infinite loop
609 // and this will format it nicely and call our DoLogString()
610 wxLog::DoLog(level
, szString
, t
);
614 m_bHasMessages
= TRUE
;
617 void wxLogWindow::DoLogString(const wxChar
*szString
, time_t WXUNUSED(t
))
619 // put the text into our window
620 wxTextCtrl
*pText
= m_pLogFrame
->TextCtrl();
622 // remove selection (WriteText is in fact ReplaceSelection)
624 long nLen
= pText
->GetLastPosition();
625 pText
->SetSelection(nLen
, nLen
);
630 msg
<< szString
<< wxT('\n');
632 pText
->AppendText(msg
);
634 // TODO ensure that the line can be seen
637 wxFrame
*wxLogWindow::GetFrame() const
642 void wxLogWindow::OnFrameCreate(wxFrame
* WXUNUSED(frame
))
646 bool wxLogWindow::OnFrameClose(wxFrame
* WXUNUSED(frame
))
652 void wxLogWindow::OnFrameDelete(wxFrame
* WXUNUSED(frame
))
654 m_pLogFrame
= (wxLogFrame
*)NULL
;
657 wxLogWindow::~wxLogWindow()
661 // may be NULL if log frame already auto destroyed itself
665 // ----------------------------------------------------------------------------
667 // ----------------------------------------------------------------------------
671 static const size_t MARGIN
= 10;
673 wxString
wxLogDialog::ms_details
;
675 wxLogDialog::wxLogDialog(wxWindow
*parent
,
676 const wxArrayString
& messages
,
677 const wxArrayInt
& severity
,
678 const wxArrayLong
& times
,
679 const wxString
& caption
,
681 : wxDialog(parent
, -1, caption
)
683 if ( ms_details
.IsEmpty() )
685 // ensure that we won't loop here if wxGetTranslation()
686 // happens to pop up a Log message while translating this :-)
687 ms_details
= wxTRANSLATE("&Details");
688 ms_details
= wxGetTranslation(ms_details
);
691 size_t count
= messages
.GetCount();
692 m_messages
.Alloc(count
);
693 m_severity
.Alloc(count
);
694 m_times
.Alloc(count
);
696 for ( size_t n
= 0; n
< count
; n
++ )
698 wxString msg
= messages
[n
];
701 m_messages
.Add(msg
.BeforeFirst(_T('\n')));
702 msg
= msg
.AfterFirst(_T('\n'));
704 m_severity
.Add(severity
[n
]);
705 m_times
.Add(times
[n
]);
710 m_showingDetails
= FALSE
; // not initially
711 m_listctrl
= (wxListCtrl
*)NULL
;
714 m_statline
= (wxStaticLine
*)NULL
;
715 #endif // wxUSE_STATLINE
718 m_btnSave
= (wxButton
*)NULL
;
721 // create the controls which are always shown and layout them: we use
722 // sizers even though our window is not resizeable to calculate the size of
723 // the dialog properly
724 wxBoxSizer
*sizerTop
= new wxBoxSizer(wxVERTICAL
);
725 wxBoxSizer
*sizerButtons
= new wxBoxSizer(wxVERTICAL
);
726 wxBoxSizer
*sizerAll
= new wxBoxSizer(wxHORIZONTAL
);
728 // this "Ok" button has wxID_CANCEL id - not very logical, but this allows
729 // to close the log dialog with <Esc> which wouldn't work otherwise (as it
730 // translates into click on cancel button)
731 wxButton
*btnOk
= new wxButton(this, wxID_CANCEL
, _("OK"));
732 sizerButtons
->Add(btnOk
, 0, wxCENTRE
|wxBOTTOM
, MARGIN
/2);
733 m_btnDetails
= new wxButton(this, wxID_MORE
, ms_details
+ _T(" >>"));
734 sizerButtons
->Add(m_btnDetails
, 0, wxCENTRE
|wxTOP
, MARGIN
/2 - 1);
737 wxIcon icon
= wxTheApp
->GetStdIcon((int)(style
& wxICON_MASK
));
738 sizerAll
->Add(new wxStaticBitmap(this, -1, icon
), 0, wxCENTRE
);
741 const wxString
& message
= messages
.Last();
742 sizerAll
->Add(CreateTextSizer(message
), 0, wxCENTRE
|wxLEFT
|wxRIGHT
, MARGIN
);
743 sizerAll
->Add(sizerButtons
, 0, wxALIGN_RIGHT
|wxLEFT
, MARGIN
);
745 sizerTop
->Add(sizerAll
, 0, wxCENTRE
|wxALL
, MARGIN
);
750 sizerTop
->SetSizeHints(this);
755 // this can't happen any more as we don't use this dialog in this case
759 // no details... it's easier to disable a button than to change the
760 // dialog layout depending on whether we have details or not
761 m_btnDetails
->Disable();
768 void wxLogDialog::CreateDetailsControls()
770 // create the save button and separator line if possible
772 m_btnSave
= new wxButton(this, wxID_SAVE
, _("&Save..."));
776 m_statline
= new wxStaticLine(this, -1);
777 #endif // wxUSE_STATLINE
779 // create the list ctrl now
780 m_listctrl
= new wxListCtrl(this, -1,
781 wxDefaultPosition
, wxDefaultSize
,
787 // no need to translate these strings as they're not shown to the
788 // user anyhow (we use wxLC_NO_HEADER style)
789 m_listctrl
->InsertColumn(0, _T("Message"));
790 m_listctrl
->InsertColumn(1, _T("Time"));
792 // prepare the imagelist
793 static const int ICON_SIZE
= 16;
794 wxImageList
*imageList
= new wxImageList(ICON_SIZE
, ICON_SIZE
);
796 // order should be the same as in the switch below!
797 static const int icons
[] =
804 bool loadedIcons
= TRUE
;
807 for ( size_t icon
= 0; icon
< WXSIZEOF(icons
); icon
++ )
809 wxBitmap bmp
= wxTheApp
->GetStdIcon(icons
[icon
]);
811 // This may very well fail if there are insufficient
812 // colours available. Degrade gracefully.
817 imageList
->Add(wxImage(bmp
).
818 Rescale(ICON_SIZE
, ICON_SIZE
).
822 m_listctrl
->SetImageList(imageList
, wxIMAGE_LIST_SMALL
);
826 wxString fmt
= wxLog::GetTimestamp();
833 size_t count
= m_messages
.GetCount();
834 for ( size_t n
= 0; n
< count
; n
++ )
838 switch ( m_severity
[n
] )
857 m_listctrl
->InsertItem(n
, m_messages
[n
], image
);
859 m_listctrl
->InsertItem(n
, m_messages
[n
]);
861 m_listctrl
->SetItem(n
, 1,
862 TimeStamp(fmt
, (time_t)m_times
[n
]));
865 // let the columns size themselves
866 m_listctrl
->SetColumnWidth(0, wxLIST_AUTOSIZE
);
867 m_listctrl
->SetColumnWidth(1, wxLIST_AUTOSIZE
);
869 // get the approx height of the listctrl
870 wxFont font
= GetFont();
872 font
= *wxSWISS_FONT
;
875 GetTextExtent(_T("H"), (int*)NULL
, &y
, (int*)NULL
, (int*)NULL
, &font
);
876 int height
= wxMax(y
*(count
+ 3), 100);
877 m_listctrl
->SetSize(-1, height
);
880 void wxLogDialog::OnListSelect(wxListEvent
& event
)
882 // we can't just disable the control because this looks ugly under Windows
883 // (wrong bg colour, no scrolling...), but we still want to disable
884 // selecting items - it makes no sense here
885 m_listctrl
->SetItemState(event
.GetIndex(), 0, wxLIST_STATE_SELECTED
);
888 void wxLogDialog::OnOk(wxCommandEvent
& WXUNUSED(event
))
895 void wxLogDialog::OnSave(wxCommandEvent
& WXUNUSED(event
))
899 int rc
= OpenLogFile(file
);
908 wxString fmt
= wxLog::GetTimestamp();
915 size_t count
= m_messages
.GetCount();
916 for ( size_t n
= 0; ok
&& (n
< count
); n
++ )
919 line
<< TimeStamp(fmt
, (time_t)m_times
[n
])
922 << wxTextFile::GetEOL();
924 ok
= file
.Write(line
);
931 wxLogError(_("Can't save log contents to file."));
937 void wxLogDialog::OnDetails(wxCommandEvent
& WXUNUSED(event
))
939 wxSizer
*sizer
= GetSizer();
941 if ( m_showingDetails
)
943 m_btnDetails
->SetLabel(ms_details
+ _T(">>"));
945 sizer
->Remove(m_listctrl
);
948 sizer
->Remove(m_statline
);
949 #endif // wxUSE_STATLINE
952 sizer
->Remove(m_btnSave
);
955 else // show details now
957 m_btnDetails
->SetLabel(wxString(_T("<< ")) + ms_details
);
961 CreateDetailsControls();
965 sizer
->Add(m_statline
, 0, wxEXPAND
| (wxALL
& ~wxTOP
), MARGIN
);
966 #endif // wxUSE_STATLINE
968 sizer
->Add(m_listctrl
, 1, wxEXPAND
| (wxALL
& ~wxTOP
), MARGIN
);
971 sizer
->Add(m_btnSave
, 0, wxALIGN_RIGHT
| (wxALL
& ~wxTOP
), MARGIN
);
975 m_showingDetails
= !m_showingDetails
;
977 // in any case, our size changed - update
978 sizer
->SetSizeHints(this);
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.
989 wxLogDialog::~wxLogDialog()
993 delete m_listctrl
->GetImageList(wxIMAGE_LIST_SMALL
);
997 #endif // wxUSE_LOG_DIALOG
999 #if wxUSE_FILE && wxUSE_FILEDLG
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
1005 static int OpenLogFile(wxFile
& file
, wxString
*pFilename
)
1007 // get the file name
1008 // -----------------
1009 wxString filename
= wxSaveFileSelector(wxT("log"), wxT("txt"), wxT("log.txt"));
1018 if ( wxFile::Exists(filename
) ) {
1019 bool bAppend
= FALSE
;
1021 strMsg
.Printf(_("Append log to file '%s' (choosing [No] will overwrite it)?"),
1023 switch ( wxMessageBox(strMsg
, _("Question"),
1024 wxICON_QUESTION
| wxYES_NO
| wxCANCEL
) ) {
1037 wxFAIL_MSG(_("invalid message box return value"));
1041 bOk
= file
.Open(filename
, wxFile::write_append
);
1044 bOk
= file
.Create(filename
, TRUE
/* overwrite */);
1048 bOk
= file
.Create(filename
);
1052 *pFilename
= filename
;
1057 #endif // wxUSE_FILE
1059 #endif // !(wxUSE_LOGGUI || wxUSE_LOGWINDOW)
1063 // ----------------------------------------------------------------------------
1064 // wxLogTextCtrl implementation
1065 // ----------------------------------------------------------------------------
1067 wxLogTextCtrl::wxLogTextCtrl(wxTextCtrl
*pTextCtrl
)
1069 m_pTextCtrl
= pTextCtrl
;
1072 void wxLogTextCtrl::DoLogString(const wxChar
*szString
, time_t WXUNUSED(t
))
1078 // VZ: this is a bug in wxMac, it *must* accept '\n' as new line, the
1079 // translation must be done in wxTextCtrl, not here! (FIXME)
1080 msg
<< szString
<< wxT('\r');
1082 msg
<< szString
<< wxT('\n');
1085 m_pTextCtrl
->AppendText(msg
);
1088 #endif // wxUSE_TEXTCTRL