]>
git.saurik.com Git - wxWidgets.git/blob - src/generic/logg.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/generic/logg.cpp
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 licence
11 /////////////////////////////////////////////////////////////////////////////
13 // ============================================================================
15 // ============================================================================
17 // ----------------------------------------------------------------------------
19 // ----------------------------------------------------------------------------
21 // For compilers that support precompilation, includes "wx.h".
22 #include "wx/wxprec.h"
30 #include "wx/button.h"
35 #include "wx/filedlg.h"
36 #include "wx/msgdlg.h"
37 #include "wx/textctrl.h"
39 #include "wx/statbmp.h"
40 #include "wx/settings.h"
41 #include "wx/wxcrtvararg.h"
44 #if wxUSE_LOGGUI || wxUSE_LOGWINDOW
47 #include "wx/clipbrd.h"
48 #include "wx/dataobj.h"
49 #include "wx/textfile.h"
50 #include "wx/statline.h"
51 #include "wx/artprov.h"
52 #include "wx/collpane.h"
53 #include "wx/arrstr.h"
54 #include "wx/msgout.h"
57 // for OutputDebugString()
58 #include "wx/msw/private.h"
67 #include "wx/listctrl.h"
68 #include "wx/imaglist.h"
70 #endif // wxUSE_LOG_DIALOG/!wxUSE_LOG_DIALOG
72 #if defined(__MWERKS__) && wxUSE_UNICODE
76 #include "wx/datetime.h"
78 // the suffix we add to the button to show that the dialog can be expanded
79 #define EXPAND_SUFFIX wxT(" >>")
81 #define CAN_SAVE_FILES (wxUSE_FILE && wxUSE_FILEDLG)
83 // ----------------------------------------------------------------------------
85 // ----------------------------------------------------------------------------
89 // this function is a wrapper around strftime(3)
90 // allows to exclude the usage of wxDateTime
91 static wxString
TimeStamp(const wxString
& format
, time_t t
)
96 if ( !wxStrftime(buf
, WXSIZEOF(buf
), format
, wxLocaltime_r(&t
, &tm
)) )
98 // buffer is too small?
99 wxFAIL_MSG(wxT("strftime() failed"));
101 return wxString(buf
);
102 #else // !wxUSE_DATETIME
103 return wxEmptyString
;
104 #endif // wxUSE_DATETIME/!wxUSE_DATETIME
108 class wxLogDialog
: public wxDialog
111 wxLogDialog(wxWindow
*parent
,
112 const wxArrayString
& messages
,
113 const wxArrayInt
& severity
,
114 const wxArrayLong
& timess
,
115 const wxString
& caption
,
117 virtual ~wxLogDialog();
120 void OnOk(wxCommandEvent
& event
);
122 void OnCopy(wxCommandEvent
& event
);
123 #endif // wxUSE_CLIPBOARD
125 void OnSave(wxCommandEvent
& event
);
126 #endif // CAN_SAVE_FILES
127 void OnListItemActivated(wxListEvent
& event
);
130 // create controls needed for the details display
131 void CreateDetailsControls(wxWindow
*);
133 // if necessary truncates the given string and adds an ellipsis
134 wxString
EllipsizeString(const wxString
&text
)
136 if (ms_maxLength
> 0 &&
137 text
.length() > ms_maxLength
)
140 ret
.Truncate(ms_maxLength
);
148 #if CAN_SAVE_FILES || wxUSE_CLIPBOARD
149 // return the contents of the dialog as a multiline string
150 wxString
GetLogMessages() const;
151 #endif // CAN_SAVE_FILES || wxUSE_CLIPBOARD
154 // the data for the listctrl
155 wxArrayString m_messages
;
156 wxArrayInt m_severity
;
159 // the controls which are not shown initially (but only when details
160 // button is pressed)
161 wxListCtrl
*m_listctrl
;
163 // the translated "Details" string
164 static wxString ms_details
;
166 // the maximum length of the log message
167 static size_t ms_maxLength
;
169 DECLARE_EVENT_TABLE()
170 wxDECLARE_NO_COPY_CLASS(wxLogDialog
);
173 BEGIN_EVENT_TABLE(wxLogDialog
, wxDialog
)
174 EVT_BUTTON(wxID_OK
, wxLogDialog::OnOk
)
176 EVT_BUTTON(wxID_COPY
, wxLogDialog::OnCopy
)
177 #endif // wxUSE_CLIPBOARD
179 EVT_BUTTON(wxID_SAVE
, wxLogDialog::OnSave
)
180 #endif // CAN_SAVE_FILES
181 EVT_LIST_ITEM_ACTIVATED(wxID_ANY
, wxLogDialog::OnListItemActivated
)
184 #endif // wxUSE_LOG_DIALOG
186 // ----------------------------------------------------------------------------
188 // ----------------------------------------------------------------------------
192 // pass an uninitialized file object, the function will ask the user for the
193 // filename and try to open it, returns true on success (file was opened),
194 // false if file couldn't be opened/created and -1 if the file selection
195 // dialog was cancelled
196 static int OpenLogFile(wxFile
& file
, wxString
*filename
= NULL
, wxWindow
*parent
= NULL
);
198 #endif // CAN_SAVE_FILES
200 // ============================================================================
202 // ============================================================================
204 // ----------------------------------------------------------------------------
205 // wxLogGui implementation (FIXME MT-unsafe)
206 // ----------------------------------------------------------------------------
215 void wxLogGui::Clear()
219 m_bHasMessages
= false;
226 int wxLogGui::GetSeverityIcon() const
228 return m_bErrors
? wxICON_STOP
229 : m_bWarnings
? wxICON_EXCLAMATION
230 : wxICON_INFORMATION
;
233 wxString
wxLogGui::GetTitle() const
235 wxString titleFormat
;
236 switch ( GetSeverityIcon() )
239 titleFormat
= _("%s Error");
242 case wxICON_EXCLAMATION
:
243 titleFormat
= _("%s Warning");
247 wxFAIL_MSG( "unexpected icon severity" );
250 case wxICON_INFORMATION
:
251 titleFormat
= _("%s Information");
254 return wxString::Format(titleFormat
, wxTheApp
->GetAppDisplayName());
258 wxLogGui::DoShowSingleLogMessage(const wxString
& message
,
259 const wxString
& title
,
262 wxMessageBox(message
, title
, wxOK
| style
);
266 wxLogGui::DoShowMultipleLogMessages(const wxArrayString
& messages
,
267 const wxArrayInt
& severities
,
268 const wxArrayLong
& times
,
269 const wxString
& title
,
273 wxLogDialog
dlg(NULL
,
274 messages
, severities
, times
,
277 // clear the message list before showing the dialog because while it's
278 // shown some new messages may appear
281 (void)dlg
.ShowModal();
282 #else // !wxUSE_LOG_DIALOG
283 // start from the most recent message
285 const size_t nMsgCount
= messages
.size();
286 message
.reserve(nMsgCount
*100);
287 for ( size_t n
= nMsgCount
; n
> 0; n
-- ) {
288 message
<< m_aMessages
[n
- 1] << wxT("\n");
291 DoShowSingleLogMessage(message
, title
, style
);
292 #endif // wxUSE_LOG_DIALOG/!wxUSE_LOG_DIALOG
295 void wxLogGui::Flush()
299 if ( !m_bHasMessages
)
302 // do it right now to block any new calls to Flush() while we're here
303 m_bHasMessages
= false;
305 // note that this must be done before examining m_aMessages as it may log
306 // yet another message
307 const unsigned repeatCount
= LogLastRepeatIfNeeded();
309 const size_t nMsgCount
= m_aMessages
.size();
311 if ( repeatCount
> 0 )
313 m_aMessages
[nMsgCount
- 1] << " (" << m_aMessages
[nMsgCount
- 2] << ")";
316 const wxString title
= GetTitle();
317 const int style
= GetSeverityIcon();
319 // avoid showing other log dialogs until we're done with the dialog we're
320 // showing right now: nested modal dialogs make for really bad UI!
323 if ( nMsgCount
== 1 )
325 // make a copy before calling Clear()
326 const wxString
message(m_aMessages
[0]);
329 DoShowSingleLogMessage(message
, title
, style
);
331 else // more than one message
333 wxArrayString messages
;
334 wxArrayInt severities
;
337 messages
.swap(m_aMessages
);
338 severities
.swap(m_aSeverity
);
339 times
.swap(m_aTimes
);
343 DoShowMultipleLogMessages(messages
, severities
, times
, title
, style
);
346 // allow flushing the logs again
350 // log all kinds of messages
351 void wxLogGui::DoLogRecord(wxLogLevel level
,
353 const wxLogRecordInfo
& info
)
361 m_aMessages
.Add(msg
);
362 m_aSeverity
.Add(wxLOG_Message
);
363 m_aTimes
.Add((long)info
.timestamp
);
364 m_bHasMessages
= true;
371 wxFrame
*pFrame
= NULL
;
373 // check if the frame was passed to us explicitly
375 if ( info
.GetNumValue(wxLOG_KEY_FRAME
, &ptr
) )
377 pFrame
= static_cast<wxFrame
*>(wxUIntToPtr(ptr
));
380 // find the top window and set it's status text if it has any
381 if ( pFrame
== NULL
) {
382 wxWindow
*pWin
= wxTheApp
->GetTopWindow();
383 if ( pWin
!= NULL
&& pWin
->IsKindOf(CLASSINFO(wxFrame
)) ) {
384 pFrame
= (wxFrame
*)pWin
;
388 if ( pFrame
&& pFrame
->GetStatusBar() )
389 pFrame
->SetStatusText(msg
);
391 #endif // wxUSE_STATUSBAR
396 #if !wxUSE_LOG_DIALOG
397 // discard earlier informational messages if this is the 1st
398 // error because they might not make sense any more and showing
399 // them in a message box might be confusing
403 #endif // wxUSE_LOG_DIALOG
410 // for the warning we don't discard the info messages
414 m_aMessages
.Add(msg
);
415 m_aSeverity
.Add((int)level
);
416 m_aTimes
.Add((long)info
.timestamp
);
417 m_bHasMessages
= true;
421 // let the base class deal with debug/trace messages as well as any
423 wxLog::DoLogRecord(level
, msg
, info
);
427 #endif // wxUSE_LOGGUI
429 // ----------------------------------------------------------------------------
430 // wxLogWindow and wxLogFrame implementation
431 // ----------------------------------------------------------------------------
437 class wxLogFrame
: public wxFrame
441 wxLogFrame(wxWindow
*pParent
, wxLogWindow
*log
, const wxString
& szTitle
);
442 virtual ~wxLogFrame();
445 void OnClose(wxCommandEvent
& event
);
446 void OnCloseWindow(wxCloseEvent
& event
);
448 void OnSave(wxCommandEvent
& event
);
449 #endif // CAN_SAVE_FILES
450 void OnClear(wxCommandEvent
& event
);
452 // do show the message in the text control
453 void ShowLogMessage(const wxString
& message
)
455 m_pTextCtrl
->AppendText(message
+ wxS('\n'));
459 // use standard ids for our commands!
462 Menu_Close
= wxID_CLOSE
,
463 Menu_Save
= wxID_SAVE
,
464 Menu_Clear
= wxID_CLEAR
467 // common part of OnClose() and OnCloseWindow()
470 wxTextCtrl
*m_pTextCtrl
;
473 DECLARE_EVENT_TABLE()
474 wxDECLARE_NO_COPY_CLASS(wxLogFrame
);
477 BEGIN_EVENT_TABLE(wxLogFrame
, wxFrame
)
478 // wxLogWindow menu events
479 EVT_MENU(Menu_Close
, wxLogFrame::OnClose
)
481 EVT_MENU(Menu_Save
, wxLogFrame::OnSave
)
482 #endif // CAN_SAVE_FILES
483 EVT_MENU(Menu_Clear
, wxLogFrame::OnClear
)
485 EVT_CLOSE(wxLogFrame::OnCloseWindow
)
488 wxLogFrame::wxLogFrame(wxWindow
*pParent
, wxLogWindow
*log
, const wxString
& szTitle
)
489 : wxFrame(pParent
, wxID_ANY
, szTitle
)
493 m_pTextCtrl
= new wxTextCtrl(this, wxID_ANY
, wxEmptyString
, wxDefaultPosition
,
497 // needed for Win32 to avoid 65Kb limit but it doesn't work well
498 // when using RichEdit 2.0 which we always do in the Unicode build
501 #endif // !wxUSE_UNICODE
506 wxMenuBar
*pMenuBar
= new wxMenuBar
;
507 wxMenu
*pMenu
= new wxMenu
;
509 pMenu
->Append(Menu_Save
, _("&Save..."), _("Save log contents to file"));
510 #endif // CAN_SAVE_FILES
511 pMenu
->Append(Menu_Clear
, _("C&lear"), _("Clear the log contents"));
512 pMenu
->AppendSeparator();
513 pMenu
->Append(Menu_Close
, _("&Close"), _("Close this window"));
514 pMenuBar
->Append(pMenu
, _("&Log"));
515 SetMenuBar(pMenuBar
);
516 #endif // wxUSE_MENUS
519 // status bar for menu prompts
521 #endif // wxUSE_STATUSBAR
523 m_log
->OnFrameCreate(this);
526 void wxLogFrame::DoClose()
528 if ( m_log
->OnFrameClose(this) )
530 // instead of closing just hide the window to be able to Show() it
536 void wxLogFrame::OnClose(wxCommandEvent
& WXUNUSED(event
))
541 void wxLogFrame::OnCloseWindow(wxCloseEvent
& WXUNUSED(event
))
547 void wxLogFrame::OnSave(wxCommandEvent
& WXUNUSED(event
))
551 int rc
= OpenLogFile(file
, &filename
, this);
560 // retrieve text and save it
561 // -------------------------
562 int nLines
= m_pTextCtrl
->GetNumberOfLines();
563 for ( int nLine
= 0; bOk
&& nLine
< nLines
; nLine
++ ) {
564 bOk
= file
.Write(m_pTextCtrl
->GetLineText(nLine
) +
565 wxTextFile::GetEOL());
572 wxLogError(_("Can't save log contents to file."));
575 wxLogStatus((wxFrame
*)this, _("Log saved to the file '%s'."), filename
.c_str());
578 #endif // CAN_SAVE_FILES
580 void wxLogFrame::OnClear(wxCommandEvent
& WXUNUSED(event
))
582 m_pTextCtrl
->Clear();
585 wxLogFrame::~wxLogFrame()
587 m_log
->OnFrameDelete(this);
593 wxLogWindow::wxLogWindow(wxWindow
*pParent
,
594 const wxString
& szTitle
,
598 PassMessages(bDoPass
);
600 m_pLogFrame
= new wxLogFrame(pParent
, this, szTitle
);
606 void wxLogWindow::Show(bool bShow
)
608 m_pLogFrame
->Show(bShow
);
611 void wxLogWindow::DoLogTextAtLevel(wxLogLevel level
, const wxString
& msg
)
613 // first let the previous logger show it
614 wxLogPassThrough::DoLogTextAtLevel(level
, msg
);
619 // don't put trace messages in the text window for 2 reasons:
620 // 1) there are too many of them
621 // 2) they may provoke other trace messages (e.g. wxMSW code uses
622 // wxLogTrace to log Windows messages and adding text to the control
623 // sends more of them) thus sending a program into an infinite loop
624 if ( level
== wxLOG_Trace
)
627 m_pLogFrame
->ShowLogMessage(msg
);
630 wxFrame
*wxLogWindow::GetFrame() const
635 void wxLogWindow::OnFrameCreate(wxFrame
* WXUNUSED(frame
))
639 bool wxLogWindow::OnFrameClose(wxFrame
* WXUNUSED(frame
))
645 void wxLogWindow::OnFrameDelete(wxFrame
* WXUNUSED(frame
))
650 wxLogWindow::~wxLogWindow()
652 // may be NULL if log frame already auto destroyed itself
656 #endif // wxUSE_LOGWINDOW
658 // ----------------------------------------------------------------------------
660 // ----------------------------------------------------------------------------
664 wxString
wxLogDialog::ms_details
;
665 size_t wxLogDialog::ms_maxLength
= 0;
667 wxLogDialog::wxLogDialog(wxWindow
*parent
,
668 const wxArrayString
& messages
,
669 const wxArrayInt
& severity
,
670 const wxArrayLong
& times
,
671 const wxString
& caption
,
673 : wxDialog(parent
, wxID_ANY
, caption
,
674 wxDefaultPosition
, wxDefaultSize
,
675 wxDEFAULT_DIALOG_STYLE
| wxRESIZE_BORDER
)
677 // init the static variables:
679 if ( ms_details
.empty() )
681 // ensure that we won't loop here if wxGetTranslation()
682 // happens to pop up a Log message while translating this :-)
683 ms_details
= wxTRANSLATE("&Details");
684 ms_details
= wxGetTranslation(ms_details
);
685 #ifdef __SMARTPHONE__
686 ms_details
= wxStripMenuCodes(ms_details
);
690 if ( ms_maxLength
== 0 )
692 ms_maxLength
= (2 * wxGetDisplaySize().x
/3) / GetCharWidth();
695 size_t count
= messages
.GetCount();
696 m_messages
.Alloc(count
);
697 m_severity
.Alloc(count
);
698 m_times
.Alloc(count
);
700 for ( size_t n
= 0; n
< count
; n
++ )
702 m_messages
.Add(messages
[n
]);
703 m_severity
.Add(severity
[n
]);
704 m_times
.Add(times
[n
]);
709 bool isPda
= (wxSystemSettings::GetScreenType() <= wxSYS_SCREEN_PDA
);
711 // create the controls which are always shown and layout them: we use
712 // sizers even though our window is not resizeable to calculate the size of
713 // the dialog properly
714 wxBoxSizer
*sizerTop
= new wxBoxSizer(wxVERTICAL
);
715 wxBoxSizer
*sizerAll
= new wxBoxSizer(isPda
? wxVERTICAL
: wxHORIZONTAL
);
719 wxStaticBitmap
*icon
= new wxStaticBitmap
723 wxArtProvider::GetMessageBoxIcon(style
)
725 sizerAll
->Add(icon
, wxSizerFlags().Centre());
728 // create the text sizer with a minimal size so that we are sure it won't be too small
729 wxString message
= EllipsizeString(messages
.Last());
730 wxSizer
*szText
= CreateTextSizer(message
);
731 szText
->SetMinSize(wxMin(300, wxGetDisplaySize().x
/ 3), -1);
733 sizerAll
->Add(szText
, wxSizerFlags(1).Centre().Border(wxLEFT
| wxRIGHT
));
735 wxButton
*btnOk
= new wxButton(this, wxID_OK
);
736 sizerAll
->Add(btnOk
, wxSizerFlags().Centre());
738 sizerTop
->Add(sizerAll
, wxSizerFlags().Expand().Border());
741 // add the details pane
742 #ifndef __SMARTPHONE__
743 wxCollapsiblePane
* const
744 collpane
= new wxCollapsiblePane(this, wxID_ANY
, ms_details
);
745 sizerTop
->Add(collpane
, wxSizerFlags(1).Expand().Border());
747 wxWindow
*win
= collpane
->GetPane();
748 wxSizer
* const paneSz
= new wxBoxSizer(wxVERTICAL
);
750 CreateDetailsControls(win
);
752 paneSz
->Add(m_listctrl
, wxSizerFlags(1).Expand().Border(wxTOP
));
754 #if wxUSE_CLIPBOARD || CAN_SAVE_FILES
755 wxBoxSizer
* const btnSizer
= new wxBoxSizer(wxHORIZONTAL
);
757 wxSizerFlags flagsBtn
;
758 flagsBtn
.Border(wxLEFT
);
761 btnSizer
->Add(new wxButton(win
, wxID_COPY
), flagsBtn
);
762 #endif // wxUSE_CLIPBOARD
765 btnSizer
->Add(new wxButton(win
, wxID_SAVE
), flagsBtn
);
766 #endif // CAN_SAVE_FILES
768 paneSz
->Add(btnSizer
, wxSizerFlags().Right().Border(wxTOP
));
769 #endif // wxUSE_CLIPBOARD || CAN_SAVE_FILES
771 win
->SetSizer(paneSz
);
772 paneSz
->SetSizeHints(win
);
773 #else // __SMARTPHONE__
774 SetLeftMenu(wxID_OK
);
775 SetRightMenu(wxID_MORE
, ms_details
+ EXPAND_SUFFIX
);
776 #endif // __SMARTPHONE__/!__SMARTPHONE__
778 SetSizerAndFit(sizerTop
);
784 // Move up the screen so that when we expand the dialog,
785 // there's enough space.
786 Move(wxPoint(GetPosition().x
, GetPosition().y
/ 2));
790 void wxLogDialog::CreateDetailsControls(wxWindow
*parent
)
792 wxString fmt
= wxLog::GetTimestamp();
793 bool hasTimeStamp
= !fmt
.IsEmpty();
795 // create the list ctrl now
796 m_listctrl
= new wxListCtrl(parent
, wxID_ANY
,
797 wxDefaultPosition
, wxDefaultSize
,
803 // This makes a big aesthetic difference on WinCE but I
804 // don't want to risk problems on other platforms
808 // no need to translate these strings as they're not shown to the
809 // user anyhow (we use wxLC_NO_HEADER style)
810 m_listctrl
->InsertColumn(0, wxT("Message"));
813 m_listctrl
->InsertColumn(1, wxT("Time"));
815 // prepare the imagelist
816 static const int ICON_SIZE
= 16;
817 wxImageList
*imageList
= new wxImageList(ICON_SIZE
, ICON_SIZE
);
819 // order should be the same as in the switch below!
820 static const wxChar
* const icons
[] =
827 bool loadedIcons
= true;
829 for ( size_t icon
= 0; icon
< WXSIZEOF(icons
); icon
++ )
831 wxBitmap bmp
= wxArtProvider::GetBitmap(icons
[icon
], wxART_MESSAGE_BOX
,
832 wxSize(ICON_SIZE
, ICON_SIZE
));
834 // This may very well fail if there are insufficient colours available.
835 // Degrade gracefully.
846 m_listctrl
->SetImageList(imageList
, wxIMAGE_LIST_SMALL
);
849 size_t count
= m_messages
.GetCount();
850 for ( size_t n
= 0; n
< count
; n
++ )
856 switch ( m_severity
[n
] )
870 else // failed to load images
875 wxString msg
= m_messages
[n
];
876 msg
.Replace(wxT("\n"), wxT(" "));
877 msg
= EllipsizeString(msg
);
879 m_listctrl
->InsertItem(n
, msg
, image
);
882 m_listctrl
->SetItem(n
, 1, TimeStamp(fmt
, (time_t)m_times
[n
]));
885 // let the columns size themselves
886 m_listctrl
->SetColumnWidth(0, wxLIST_AUTOSIZE
);
888 m_listctrl
->SetColumnWidth(1, wxLIST_AUTOSIZE
);
890 // calculate an approximately nice height for the listctrl
891 int height
= GetCharHeight()*(count
+ 4);
893 // but check that the dialog won't fall fown from the screen
895 // we use GetMinHeight() to get the height of the dialog part without the
896 // details and we consider that the "Save" button below and the separator
897 // line (and the margins around it) take about as much, hence double it
898 int heightMax
= wxGetDisplaySize().y
- GetPosition().y
- 2*GetMinHeight();
900 // we should leave a margin
904 m_listctrl
->SetSize(wxDefaultCoord
, wxMin(height
, heightMax
));
907 void wxLogDialog::OnListItemActivated(wxListEvent
& event
)
909 // show the activated item in a message box
910 // This allow the user to correctly display the logs which are longer
911 // than the listctrl and thus gets truncated or those which contains
915 // wxString str = m_listctrl->GetItemText(event.GetIndex());
916 // as there's a 260 chars limit on the items inside a wxListCtrl in wxMSW.
917 wxString str
= m_messages
[event
.GetIndex()];
919 // wxMessageBox will nicely handle the '\n' in the string (if any)
920 // and supports long strings
921 wxMessageBox(str
, wxT("Log message"), wxOK
, this);
924 void wxLogDialog::OnOk(wxCommandEvent
& WXUNUSED(event
))
929 #if CAN_SAVE_FILES || wxUSE_CLIPBOARD
931 wxString
wxLogDialog::GetLogMessages() const
933 wxString fmt
= wxLog::GetTimestamp();
936 // use the default format
940 const size_t count
= m_messages
.GetCount();
943 text
.reserve(count
*m_messages
[0].length());
944 for ( size_t n
= 0; n
< count
; n
++ )
946 text
<< TimeStamp(fmt
, (time_t)m_times
[n
])
949 << wxTextFile::GetEOL();
955 #endif // CAN_SAVE_FILES || wxUSE_CLIPBOARD
959 void wxLogDialog::OnCopy(wxCommandEvent
& WXUNUSED(event
))
961 wxClipboardLocker clip
;
963 !wxTheClipboard
->AddData(new wxTextDataObject(GetLogMessages())) )
965 wxLogError(_("Failed to copy dialog contents to the clipboard."));
969 #endif // wxUSE_CLIPBOARD
973 void wxLogDialog::OnSave(wxCommandEvent
& WXUNUSED(event
))
976 int rc
= OpenLogFile(file
, NULL
, this);
983 if ( !rc
|| !file
.Write(GetLogMessages()) || !file
.Close() )
985 wxLogError(_("Can't save log contents to file."));
989 #endif // CAN_SAVE_FILES
991 wxLogDialog::~wxLogDialog()
995 delete m_listctrl
->GetImageList(wxIMAGE_LIST_SMALL
);
999 #endif // wxUSE_LOG_DIALOG
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
, wxWindow
*parent
)
1009 // get the file name
1010 // -----------------
1011 wxString filename
= wxSaveFileSelector(wxT("log"), wxT("txt"), wxT("log.txt"), parent
);
1019 bool bOk
= true; // suppress warning about it being possible uninitialized
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 // CAN_SAVE_FILES
1061 #endif // !(wxUSE_LOGGUI || wxUSE_LOGWINDOW)
1063 #if wxUSE_LOG && wxUSE_TEXTCTRL
1065 // ----------------------------------------------------------------------------
1066 // wxLogTextCtrl implementation
1067 // ----------------------------------------------------------------------------
1069 wxLogTextCtrl::wxLogTextCtrl(wxTextCtrl
*pTextCtrl
)
1071 m_pTextCtrl
= pTextCtrl
;
1074 void wxLogTextCtrl::DoLogText(const wxString
& msg
)
1076 m_pTextCtrl
->AppendText(msg
+ wxS('\n'));
1079 #endif // wxUSE_LOG && wxUSE_TEXTCTRL