]>
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
74 // the suffix we add to the button to show that the dialog can be expanded
75 #define EXPAND_SUFFIX wxT(" >>")
77 #define CAN_SAVE_FILES (wxUSE_FILE && wxUSE_FILEDLG)
79 // ----------------------------------------------------------------------------
81 // ----------------------------------------------------------------------------
85 // this function is a wrapper around strftime(3)
86 // allows to exclude the usage of wxDateTime
87 static wxString
TimeStamp(const wxString
& format
, time_t t
)
91 if ( !wxStrftime(buf
, WXSIZEOF(buf
), format
, wxLocaltime_r(&t
, &tm
)) )
93 // buffer is too small?
94 wxFAIL_MSG(wxT("strftime() failed"));
100 class wxLogDialog
: public wxDialog
103 wxLogDialog(wxWindow
*parent
,
104 const wxArrayString
& messages
,
105 const wxArrayInt
& severity
,
106 const wxArrayLong
& timess
,
107 const wxString
& caption
,
109 virtual ~wxLogDialog();
112 void OnOk(wxCommandEvent
& event
);
114 void OnCopy(wxCommandEvent
& event
);
115 #endif // wxUSE_CLIPBOARD
117 void OnSave(wxCommandEvent
& event
);
118 #endif // CAN_SAVE_FILES
119 void OnListItemActivated(wxListEvent
& event
);
122 // create controls needed for the details display
123 void CreateDetailsControls(wxWindow
*);
125 // if necessary truncates the given string and adds an ellipsis
126 wxString
EllipsizeString(const wxString
&text
)
128 if (ms_maxLength
> 0 &&
129 text
.length() > ms_maxLength
)
132 ret
.Truncate(ms_maxLength
);
140 #if CAN_SAVE_FILES || wxUSE_CLIPBOARD
141 // return the contents of the dialog as a multiline string
142 wxString
GetLogMessages() const;
143 #endif // CAN_SAVE_FILES || wxUSE_CLIPBOARD
146 // the data for the listctrl
147 wxArrayString m_messages
;
148 wxArrayInt m_severity
;
151 // the controls which are not shown initially (but only when details
152 // button is pressed)
153 wxListCtrl
*m_listctrl
;
155 // the translated "Details" string
156 static wxString ms_details
;
158 // the maximum length of the log message
159 static size_t ms_maxLength
;
161 DECLARE_EVENT_TABLE()
162 wxDECLARE_NO_COPY_CLASS(wxLogDialog
);
165 BEGIN_EVENT_TABLE(wxLogDialog
, wxDialog
)
166 EVT_BUTTON(wxID_OK
, wxLogDialog::OnOk
)
168 EVT_BUTTON(wxID_COPY
, wxLogDialog::OnCopy
)
169 #endif // wxUSE_CLIPBOARD
171 EVT_BUTTON(wxID_SAVE
, wxLogDialog::OnSave
)
172 #endif // CAN_SAVE_FILES
173 EVT_LIST_ITEM_ACTIVATED(wxID_ANY
, wxLogDialog::OnListItemActivated
)
176 #endif // wxUSE_LOG_DIALOG
178 // ----------------------------------------------------------------------------
180 // ----------------------------------------------------------------------------
184 // pass an uninitialized file object, the function will ask the user for the
185 // filename and try to open it, returns true on success (file was opened),
186 // false if file couldn't be opened/created and -1 if the file selection
187 // dialog was cancelled
188 static int OpenLogFile(wxFile
& file
, wxString
*filename
= NULL
, wxWindow
*parent
= NULL
);
190 #endif // CAN_SAVE_FILES
192 // ============================================================================
194 // ============================================================================
196 // ----------------------------------------------------------------------------
197 // wxLogGui implementation (FIXME MT-unsafe)
198 // ----------------------------------------------------------------------------
207 void wxLogGui::Clear()
211 m_bHasMessages
= false;
218 int wxLogGui::GetSeverityIcon() const
220 return m_bErrors
? wxICON_STOP
221 : m_bWarnings
? wxICON_EXCLAMATION
222 : wxICON_INFORMATION
;
225 wxString
wxLogGui::GetTitle() const
227 wxString titleFormat
;
228 switch ( GetSeverityIcon() )
231 titleFormat
= _("%s Error");
234 case wxICON_EXCLAMATION
:
235 titleFormat
= _("%s Warning");
239 wxFAIL_MSG( "unexpected icon severity" );
242 case wxICON_INFORMATION
:
243 titleFormat
= _("%s Information");
246 return wxString::Format(titleFormat
, wxTheApp
->GetAppDisplayName());
250 wxLogGui::DoShowSingleLogMessage(const wxString
& message
,
251 const wxString
& title
,
254 wxMessageBox(message
, title
, wxOK
| style
);
258 wxLogGui::DoShowMultipleLogMessages(const wxArrayString
& messages
,
259 const wxArrayInt
& severities
,
260 const wxArrayLong
& times
,
261 const wxString
& title
,
265 wxLogDialog
dlg(NULL
,
266 messages
, severities
, times
,
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 // start from the most recent message
277 const size_t nMsgCount
= messages
.size();
278 message
.reserve(nMsgCount
*100);
279 for ( size_t n
= nMsgCount
; n
> 0; n
-- ) {
280 message
<< m_aMessages
[n
- 1] << wxT("\n");
283 DoShowSingleLogMessage(message
, title
, style
);
284 #endif // wxUSE_LOG_DIALOG/!wxUSE_LOG_DIALOG
287 void wxLogGui::Flush()
291 if ( !m_bHasMessages
)
294 // do it right now to block any new calls to Flush() while we're here
295 m_bHasMessages
= false;
297 // note that this must be done before examining m_aMessages as it may log
298 // yet another message
299 const unsigned repeatCount
= LogLastRepeatIfNeeded();
301 const size_t nMsgCount
= m_aMessages
.size();
303 if ( repeatCount
> 0 )
305 m_aMessages
[nMsgCount
- 1] << " (" << m_aMessages
[nMsgCount
- 2] << ")";
308 const wxString title
= GetTitle();
309 const int style
= GetSeverityIcon();
311 // avoid showing other log dialogs until we're done with the dialog we're
312 // showing right now: nested modal dialogs make for really bad UI!
315 if ( nMsgCount
== 1 )
317 // make a copy before calling Clear()
318 const wxString
message(m_aMessages
[0]);
321 DoShowSingleLogMessage(message
, title
, style
);
323 else // more than one message
325 wxArrayString messages
;
326 wxArrayInt severities
;
329 messages
.swap(m_aMessages
);
330 severities
.swap(m_aSeverity
);
331 times
.swap(m_aTimes
);
335 DoShowMultipleLogMessages(messages
, severities
, times
, title
, style
);
338 // allow flushing the logs again
342 // log all kinds of messages
343 void wxLogGui::DoLogRecord(wxLogLevel level
,
345 const wxLogRecordInfo
& info
)
353 m_aMessages
.Add(msg
);
354 m_aSeverity
.Add(wxLOG_Message
);
355 m_aTimes
.Add((long)info
.timestamp
);
356 m_bHasMessages
= true;
363 wxFrame
*pFrame
= NULL
;
365 // check if the frame was passed to us explicitly
367 if ( info
.GetNumValue(wxLOG_KEY_FRAME
, &ptr
) )
369 pFrame
= static_cast<wxFrame
*>(wxUIntToPtr(ptr
));
372 // find the top window and set it's status text if it has any
373 if ( pFrame
== NULL
) {
374 wxWindow
*pWin
= wxTheApp
->GetTopWindow();
375 if ( wxDynamicCast(pWin
, wxFrame
) ) {
376 pFrame
= (wxFrame
*)pWin
;
380 if ( pFrame
&& pFrame
->GetStatusBar() )
381 pFrame
->SetStatusText(msg
);
383 #endif // wxUSE_STATUSBAR
388 #if !wxUSE_LOG_DIALOG
389 // discard earlier informational messages if this is the 1st
390 // error because they might not make sense any more and showing
391 // them in a message box might be confusing
395 #endif // wxUSE_LOG_DIALOG
402 // for the warning we don't discard the info messages
406 m_aMessages
.Add(msg
);
407 m_aSeverity
.Add((int)level
);
408 m_aTimes
.Add((long)info
.timestamp
);
409 m_bHasMessages
= true;
414 // let the base class deal with debug/trace messages
415 wxLog::DoLogRecord(level
, msg
, info
);
418 case wxLOG_FatalError
:
420 // fatal errors are shown immediately and terminate the program so
421 // we should never see them here
422 wxFAIL_MSG("unexpected log level");
427 // just ignore those: passing them to the base class would result
428 // in asserts from DoLogText() because DoLogTextAtLevel() would
429 // call it as it doesn't know how to handle these levels otherwise
434 #endif // wxUSE_LOGGUI
436 // ----------------------------------------------------------------------------
437 // wxLogWindow and wxLogFrame implementation
438 // ----------------------------------------------------------------------------
444 class wxLogFrame
: public wxFrame
448 wxLogFrame(wxWindow
*pParent
, wxLogWindow
*log
, const wxString
& szTitle
);
449 virtual ~wxLogFrame();
452 void OnClose(wxCommandEvent
& event
);
453 void OnCloseWindow(wxCloseEvent
& event
);
455 void OnSave(wxCommandEvent
& event
);
456 #endif // CAN_SAVE_FILES
457 void OnClear(wxCommandEvent
& event
);
459 // do show the message in the text control
460 void ShowLogMessage(const wxString
& message
)
462 m_pTextCtrl
->AppendText(message
+ wxS('\n'));
466 // use standard ids for our commands!
469 Menu_Close
= wxID_CLOSE
,
470 Menu_Save
= wxID_SAVE
,
471 Menu_Clear
= wxID_CLEAR
474 // common part of OnClose() and OnCloseWindow()
477 wxTextCtrl
*m_pTextCtrl
;
480 DECLARE_EVENT_TABLE()
481 wxDECLARE_NO_COPY_CLASS(wxLogFrame
);
484 BEGIN_EVENT_TABLE(wxLogFrame
, wxFrame
)
485 // wxLogWindow menu events
486 EVT_MENU(Menu_Close
, wxLogFrame::OnClose
)
488 EVT_MENU(Menu_Save
, wxLogFrame::OnSave
)
489 #endif // CAN_SAVE_FILES
490 EVT_MENU(Menu_Clear
, wxLogFrame::OnClear
)
492 EVT_CLOSE(wxLogFrame::OnCloseWindow
)
495 wxLogFrame::wxLogFrame(wxWindow
*pParent
, wxLogWindow
*log
, const wxString
& szTitle
)
496 : wxFrame(pParent
, wxID_ANY
, szTitle
)
500 m_pTextCtrl
= new wxTextCtrl(this, wxID_ANY
, wxEmptyString
, wxDefaultPosition
,
504 // needed for Win32 to avoid 65Kb limit but it doesn't work well
505 // when using RichEdit 2.0 which we always do in the Unicode build
508 #endif // !wxUSE_UNICODE
513 wxMenuBar
*pMenuBar
= new wxMenuBar
;
514 wxMenu
*pMenu
= new wxMenu
;
516 pMenu
->Append(Menu_Save
, _("Save &As..."), _("Save log contents to file"));
517 #endif // CAN_SAVE_FILES
518 pMenu
->Append(Menu_Clear
, _("C&lear"), _("Clear the log contents"));
519 pMenu
->AppendSeparator();
520 pMenu
->Append(Menu_Close
, _("&Close"), _("Close this window"));
521 pMenuBar
->Append(pMenu
, _("&Log"));
522 SetMenuBar(pMenuBar
);
523 #endif // wxUSE_MENUS
526 // status bar for menu prompts
528 #endif // wxUSE_STATUSBAR
530 m_log
->OnFrameCreate(this);
533 void wxLogFrame::DoClose()
535 if ( m_log
->OnFrameClose(this) )
537 // instead of closing just hide the window to be able to Show() it
543 void wxLogFrame::OnClose(wxCommandEvent
& WXUNUSED(event
))
548 void wxLogFrame::OnCloseWindow(wxCloseEvent
& WXUNUSED(event
))
554 void wxLogFrame::OnSave(wxCommandEvent
& WXUNUSED(event
))
558 int rc
= OpenLogFile(file
, &filename
, this);
567 // retrieve text and save it
568 // -------------------------
569 int nLines
= m_pTextCtrl
->GetNumberOfLines();
570 for ( int nLine
= 0; bOk
&& nLine
< nLines
; nLine
++ ) {
571 bOk
= file
.Write(m_pTextCtrl
->GetLineText(nLine
) +
572 wxTextFile::GetEOL());
579 wxLogError(_("Can't save log contents to file."));
582 wxLogStatus((wxFrame
*)this, _("Log saved to the file '%s'."), filename
.c_str());
585 #endif // CAN_SAVE_FILES
587 void wxLogFrame::OnClear(wxCommandEvent
& WXUNUSED(event
))
589 m_pTextCtrl
->Clear();
592 wxLogFrame::~wxLogFrame()
594 m_log
->OnFrameDelete(this);
600 wxLogWindow::wxLogWindow(wxWindow
*pParent
,
601 const wxString
& szTitle
,
605 // Initialize it to NULL to ensure that we don't crash if any log messages
606 // are generated before the frame is fully created (while this doesn't
607 // happen normally, it might, in principle).
610 PassMessages(bDoPass
);
612 m_pLogFrame
= new wxLogFrame(pParent
, this, szTitle
);
618 void wxLogWindow::Show(bool bShow
)
620 m_pLogFrame
->Show(bShow
);
623 void wxLogWindow::DoLogTextAtLevel(wxLogLevel level
, const wxString
& msg
)
628 // don't put trace messages in the text window for 2 reasons:
629 // 1) there are too many of them
630 // 2) they may provoke other trace messages (e.g. wxMSW code uses
631 // wxLogTrace to log Windows messages and adding text to the control
632 // sends more of them) thus sending a program into an infinite loop
633 if ( level
== wxLOG_Trace
)
636 m_pLogFrame
->ShowLogMessage(msg
);
639 wxFrame
*wxLogWindow::GetFrame() const
644 void wxLogWindow::OnFrameCreate(wxFrame
* WXUNUSED(frame
))
648 bool wxLogWindow::OnFrameClose(wxFrame
* WXUNUSED(frame
))
654 void wxLogWindow::OnFrameDelete(wxFrame
* WXUNUSED(frame
))
659 wxLogWindow::~wxLogWindow()
661 // may be NULL if log frame already auto destroyed itself
665 #endif // wxUSE_LOGWINDOW
667 // ----------------------------------------------------------------------------
669 // ----------------------------------------------------------------------------
673 wxString
wxLogDialog::ms_details
;
674 size_t wxLogDialog::ms_maxLength
= 0;
676 wxLogDialog::wxLogDialog(wxWindow
*parent
,
677 const wxArrayString
& messages
,
678 const wxArrayInt
& severity
,
679 const wxArrayLong
& times
,
680 const wxString
& caption
,
682 : wxDialog(parent
, wxID_ANY
, caption
,
683 wxDefaultPosition
, wxDefaultSize
,
684 wxDEFAULT_DIALOG_STYLE
| wxRESIZE_BORDER
)
686 // init the static variables:
688 if ( ms_details
.empty() )
690 // ensure that we won't loop here if wxGetTranslation()
691 // happens to pop up a Log message while translating this :-)
692 ms_details
= wxTRANSLATE("&Details");
693 ms_details
= wxGetTranslation(ms_details
);
694 #ifdef __SMARTPHONE__
695 ms_details
= wxStripMenuCodes(ms_details
);
699 if ( ms_maxLength
== 0 )
701 ms_maxLength
= (2 * wxGetDisplaySize().x
/3) / GetCharWidth();
704 size_t count
= messages
.GetCount();
705 m_messages
.Alloc(count
);
706 m_severity
.Alloc(count
);
707 m_times
.Alloc(count
);
709 for ( size_t n
= 0; n
< count
; n
++ )
711 m_messages
.Add(messages
[n
]);
712 m_severity
.Add(severity
[n
]);
713 m_times
.Add(times
[n
]);
718 bool isPda
= (wxSystemSettings::GetScreenType() <= wxSYS_SCREEN_PDA
);
720 // create the controls which are always shown and layout them: we use
721 // sizers even though our window is not resizable to calculate the size of
722 // the dialog properly
723 wxBoxSizer
*sizerTop
= new wxBoxSizer(wxVERTICAL
);
724 wxBoxSizer
*sizerAll
= new wxBoxSizer(isPda
? wxVERTICAL
: wxHORIZONTAL
);
728 wxStaticBitmap
*icon
= new wxStaticBitmap
732 wxArtProvider::GetMessageBoxIcon(style
)
734 sizerAll
->Add(icon
, wxSizerFlags().Centre());
737 // create the text sizer with a minimal size so that we are sure it won't be too small
738 wxString message
= EllipsizeString(messages
.Last());
739 wxSizer
*szText
= CreateTextSizer(message
);
740 szText
->SetMinSize(wxMin(300, wxGetDisplaySize().x
/ 3), -1);
742 sizerAll
->Add(szText
, wxSizerFlags(1).Centre().Border(wxLEFT
| wxRIGHT
));
744 wxButton
*btnOk
= new wxButton(this, wxID_OK
);
745 sizerAll
->Add(btnOk
, wxSizerFlags().Centre());
747 sizerTop
->Add(sizerAll
, wxSizerFlags().Expand().Border());
750 // add the details pane
751 #ifndef __SMARTPHONE__
754 wxCollapsiblePane
* const
755 collpane
= new wxCollapsiblePane(this, wxID_ANY
, ms_details
);
756 sizerTop
->Add(collpane
, wxSizerFlags(1).Expand().Border());
758 wxWindow
*win
= collpane
->GetPane();
760 wxPanel
* win
= new wxPanel(this, wxID_ANY
, wxDefaultPosition
, wxDefaultSize
,
763 wxSizer
* const paneSz
= new wxBoxSizer(wxVERTICAL
);
765 CreateDetailsControls(win
);
767 paneSz
->Add(m_listctrl
, wxSizerFlags(1).Expand().Border(wxTOP
));
769 #if wxUSE_CLIPBOARD || CAN_SAVE_FILES
770 wxBoxSizer
* const btnSizer
= new wxBoxSizer(wxHORIZONTAL
);
772 wxSizerFlags flagsBtn
;
773 flagsBtn
.Border(wxLEFT
);
776 btnSizer
->Add(new wxButton(win
, wxID_COPY
), flagsBtn
);
777 #endif // wxUSE_CLIPBOARD
780 btnSizer
->Add(new wxButton(win
, wxID_SAVE
), flagsBtn
);
781 #endif // CAN_SAVE_FILES
783 paneSz
->Add(btnSizer
, wxSizerFlags().Right().Border(wxTOP
|wxBOTTOM
));
784 #endif // wxUSE_CLIPBOARD || CAN_SAVE_FILES
786 win
->SetSizer(paneSz
);
787 paneSz
->SetSizeHints(win
);
788 #else // __SMARTPHONE__
789 SetLeftMenu(wxID_OK
);
790 SetRightMenu(wxID_MORE
, ms_details
+ EXPAND_SUFFIX
);
791 #endif // __SMARTPHONE__/!__SMARTPHONE__
793 SetSizerAndFit(sizerTop
);
799 // Move up the screen so that when we expand the dialog,
800 // there's enough space.
801 Move(wxPoint(GetPosition().x
, GetPosition().y
/ 2));
805 void wxLogDialog::CreateDetailsControls(wxWindow
*parent
)
807 wxString fmt
= wxLog::GetTimestamp();
808 bool hasTimeStamp
= !fmt
.IsEmpty();
810 // create the list ctrl now
811 m_listctrl
= new wxListCtrl(parent
, wxID_ANY
,
812 wxDefaultPosition
, wxDefaultSize
,
818 // This makes a big aesthetic difference on WinCE but I
819 // don't want to risk problems on other platforms
823 // no need to translate these strings as they're not shown to the
824 // user anyhow (we use wxLC_NO_HEADER style)
825 m_listctrl
->InsertColumn(0, wxT("Message"));
828 m_listctrl
->InsertColumn(1, wxT("Time"));
830 // prepare the imagelist
831 static const int ICON_SIZE
= 16;
832 wxImageList
*imageList
= new wxImageList(ICON_SIZE
, ICON_SIZE
);
834 // order should be the same as in the switch below!
835 static const char* const icons
[] =
842 bool loadedIcons
= true;
844 for ( size_t icon
= 0; icon
< WXSIZEOF(icons
); icon
++ )
846 wxBitmap bmp
= wxArtProvider::GetBitmap(icons
[icon
], wxART_MESSAGE_BOX
,
847 wxSize(ICON_SIZE
, ICON_SIZE
));
849 // This may very well fail if there are insufficient colours available.
850 // Degrade gracefully.
861 m_listctrl
->SetImageList(imageList
, wxIMAGE_LIST_SMALL
);
864 size_t count
= m_messages
.GetCount();
865 for ( size_t n
= 0; n
< count
; n
++ )
871 switch ( m_severity
[n
] )
885 else // failed to load images
890 wxString msg
= m_messages
[n
];
891 msg
.Replace(wxT("\n"), wxT(" "));
892 msg
= EllipsizeString(msg
);
894 m_listctrl
->InsertItem(n
, msg
, image
);
897 m_listctrl
->SetItem(n
, 1, TimeStamp(fmt
, (time_t)m_times
[n
]));
900 // let the columns size themselves
901 m_listctrl
->SetColumnWidth(0, wxLIST_AUTOSIZE
);
903 m_listctrl
->SetColumnWidth(1, wxLIST_AUTOSIZE
);
905 // calculate an approximately nice height for the listctrl
906 int height
= GetCharHeight()*(count
+ 4);
908 // but check that the dialog won't fall fown from the screen
910 // we use GetMinHeight() to get the height of the dialog part without the
911 // details and we consider that the "Save" button below and the separator
912 // line (and the margins around it) take about as much, hence double it
913 int heightMax
= wxGetDisplaySize().y
- GetPosition().y
- 2*GetMinHeight();
915 // we should leave a margin
919 m_listctrl
->SetSize(wxDefaultCoord
, wxMin(height
, heightMax
));
922 void wxLogDialog::OnListItemActivated(wxListEvent
& event
)
924 // show the activated item in a message box
925 // This allow the user to correctly display the logs which are longer
926 // than the listctrl and thus gets truncated or those which contains
930 // wxString str = m_listctrl->GetItemText(event.GetIndex());
931 // as there's a 260 chars limit on the items inside a wxListCtrl in wxMSW.
932 wxString str
= m_messages
[event
.GetIndex()];
934 // wxMessageBox will nicely handle the '\n' in the string (if any)
935 // and supports long strings
936 wxMessageBox(str
, wxT("Log message"), wxOK
, this);
939 void wxLogDialog::OnOk(wxCommandEvent
& WXUNUSED(event
))
944 #if CAN_SAVE_FILES || wxUSE_CLIPBOARD
946 wxString
wxLogDialog::GetLogMessages() const
948 wxString fmt
= wxLog::GetTimestamp();
951 // use the default format
955 const size_t count
= m_messages
.GetCount();
958 text
.reserve(count
*m_messages
[0].length());
959 for ( size_t n
= 0; n
< count
; n
++ )
961 text
<< TimeStamp(fmt
, (time_t)m_times
[n
])
964 << wxTextFile::GetEOL();
970 #endif // CAN_SAVE_FILES || wxUSE_CLIPBOARD
974 void wxLogDialog::OnCopy(wxCommandEvent
& WXUNUSED(event
))
976 wxClipboardLocker clip
;
978 !wxTheClipboard
->AddData(new wxTextDataObject(GetLogMessages())) )
980 wxLogError(_("Failed to copy dialog contents to the clipboard."));
984 #endif // wxUSE_CLIPBOARD
988 void wxLogDialog::OnSave(wxCommandEvent
& WXUNUSED(event
))
991 int rc
= OpenLogFile(file
, NULL
, this);
998 if ( !rc
|| !file
.Write(GetLogMessages()) || !file
.Close() )
1000 wxLogError(_("Can't save log contents to file."));
1004 #endif // CAN_SAVE_FILES
1006 wxLogDialog::~wxLogDialog()
1010 delete m_listctrl
->GetImageList(wxIMAGE_LIST_SMALL
);
1014 #endif // wxUSE_LOG_DIALOG
1018 // pass an uninitialized file object, the function will ask the user for the
1019 // filename and try to open it, returns true on success (file was opened),
1020 // false if file couldn't be opened/created and -1 if the file selection
1021 // dialog was cancelled
1022 static int OpenLogFile(wxFile
& file
, wxString
*pFilename
, wxWindow
*parent
)
1024 // get the file name
1025 // -----------------
1026 wxString filename
= wxSaveFileSelector(wxT("log"), wxT("txt"), wxT("log.txt"), parent
);
1034 bool bOk
= true; // suppress warning about it being possible uninitialized
1035 if ( wxFile::Exists(filename
) ) {
1036 bool bAppend
= false;
1038 strMsg
.Printf(_("Append log to file '%s' (choosing [No] will overwrite it)?"),
1040 switch ( wxMessageBox(strMsg
, _("Question"),
1041 wxICON_QUESTION
| wxYES_NO
| wxCANCEL
) ) {
1054 wxFAIL_MSG(_("invalid message box return value"));
1058 bOk
= file
.Open(filename
, wxFile::write_append
);
1061 bOk
= file
.Create(filename
, true /* overwrite */);
1065 bOk
= file
.Create(filename
);
1069 *pFilename
= filename
;
1074 #endif // CAN_SAVE_FILES
1076 #endif // !(wxUSE_LOGGUI || wxUSE_LOGWINDOW)
1078 #if wxUSE_LOG && wxUSE_TEXTCTRL
1080 // ----------------------------------------------------------------------------
1081 // wxLogTextCtrl implementation
1082 // ----------------------------------------------------------------------------
1084 wxLogTextCtrl::wxLogTextCtrl(wxTextCtrl
*pTextCtrl
)
1086 m_pTextCtrl
= pTextCtrl
;
1089 void wxLogTextCtrl::DoLogText(const wxString
& msg
)
1091 m_pTextCtrl
->AppendText(msg
+ wxS('\n'));
1094 #endif // wxUSE_LOG && wxUSE_TEXTCTRL