]>
Commit | Line | Data |
---|---|---|
dd85fc6b | 1 | ///////////////////////////////////////////////////////////////////////////// |
8ff41136 | 2 | // Name: src/generic/logg.cpp |
dd85fc6b VZ |
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> | |
65571936 | 10 | // Licence: wxWindows licence |
dd85fc6b VZ |
11 | ///////////////////////////////////////////////////////////////////////////// |
12 | ||
13 | // ============================================================================ | |
14 | // declarations | |
15 | // ============================================================================ | |
16 | ||
17 | // ---------------------------------------------------------------------------- | |
18 | // headers | |
19 | // ---------------------------------------------------------------------------- | |
20 | ||
dd85fc6b VZ |
21 | // For compilers that support precompilation, includes "wx.h". |
22 | #include "wx/wxprec.h" | |
23 | ||
24 | #ifdef __BORLANDC__ | |
f1e01716 | 25 | #pragma hdrstop |
dd85fc6b VZ |
26 | #endif |
27 | ||
dd85fc6b VZ |
28 | #ifndef WX_PRECOMP |
29 | #include "wx/app.h" | |
f6bcfd97 | 30 | #include "wx/button.h" |
dd85fc6b VZ |
31 | #include "wx/intl.h" |
32 | #include "wx/log.h" | |
33 | #include "wx/menu.h" | |
34 | #include "wx/frame.h" | |
35 | #include "wx/filedlg.h" | |
8ca2f11c | 36 | #include "wx/msgdlg.h" |
dd85fc6b | 37 | #include "wx/textctrl.h" |
f1df0927 VZ |
38 | #include "wx/sizer.h" |
39 | #include "wx/statbmp.h" | |
a0145564 | 40 | #include "wx/settings.h" |
0cb7e05c | 41 | #include "wx/wxcrtvararg.h" |
dd85fc6b VZ |
42 | #endif // WX_PRECOMP |
43 | ||
1e6feb95 VZ |
44 | #if wxUSE_LOGGUI || wxUSE_LOGWINDOW |
45 | ||
dd85fc6b | 46 | #include "wx/file.h" |
b6d2b072 | 47 | #include "wx/clipbrd.h" |
a3608593 | 48 | #include "wx/dataobj.h" |
dd85fc6b | 49 | #include "wx/textfile.h" |
f6bcfd97 | 50 | #include "wx/statline.h" |
389d906b | 51 | #include "wx/artprov.h" |
a14670e2 | 52 | #include "wx/collpane.h" |
cd1ff792 | 53 | #include "wx/arrstr.h" |
711f12ef | 54 | #include "wx/msgout.h" |
cd1ff792 | 55 | |
39a7c7e1 | 56 | #ifdef __WXMSW__ |
f1e01716 WS |
57 | // for OutputDebugString() |
58 | #include "wx/msw/private.h" | |
39a7c7e1 VZ |
59 | #endif // Windows |
60 | ||
cd1ff792 | 61 | |
2eb96d03 | 62 | #ifdef __WXPM__ |
f1e01716 | 63 | #include <time.h> |
2eb96d03 DW |
64 | #endif |
65 | ||
f1df0927 | 66 | #if wxUSE_LOG_DIALOG |
f1df0927 | 67 | #include "wx/listctrl.h" |
de8e98f1 | 68 | #include "wx/imaglist.h" |
f1df0927 | 69 | #include "wx/image.h" |
f1df0927 VZ |
70 | #endif // wxUSE_LOG_DIALOG/!wxUSE_LOG_DIALOG |
71 | ||
2abc54ca | 72 | #include "wx/time.h" |
1aaf88d2 | 73 | |
8ff41136 | 74 | // the suffix we add to the button to show that the dialog can be expanded |
9a83f860 | 75 | #define EXPAND_SUFFIX wxT(" >>") |
8ff41136 | 76 | |
b6d2b072 VZ |
77 | #define CAN_SAVE_FILES (wxUSE_FILE && wxUSE_FILEDLG) |
78 | ||
f1df0927 VZ |
79 | // ---------------------------------------------------------------------------- |
80 | // private classes | |
81 | // ---------------------------------------------------------------------------- | |
82 | ||
83 | #if wxUSE_LOG_DIALOG | |
84 | ||
f94dfb38 VS |
85 | // this function is a wrapper around strftime(3) |
86 | // allows to exclude the usage of wxDateTime | |
5a20d2ce | 87 | static wxString TimeStamp(const wxString& format, time_t t) |
f94dfb38 VS |
88 | { |
89 | wxChar buf[4096]; | |
83e8b44c VZ |
90 | struct tm tm; |
91 | if ( !wxStrftime(buf, WXSIZEOF(buf), format, wxLocaltime_r(&t, &tm)) ) | |
f94dfb38 VS |
92 | { |
93 | // buffer is too small? | |
9a83f860 | 94 | wxFAIL_MSG(wxT("strftime() failed")); |
f94dfb38 VS |
95 | } |
96 | return wxString(buf); | |
97 | } | |
98 | ||
99 | ||
f1df0927 VZ |
100 | class wxLogDialog : public wxDialog |
101 | { | |
102 | public: | |
103 | wxLogDialog(wxWindow *parent, | |
104 | const wxArrayString& messages, | |
105 | const wxArrayInt& severity, | |
106 | const wxArrayLong& timess, | |
107 | const wxString& caption, | |
108 | long style); | |
109 | virtual ~wxLogDialog(); | |
110 | ||
111 | // event handlers | |
112 | void OnOk(wxCommandEvent& event); | |
b6d2b072 VZ |
113 | #if wxUSE_CLIPBOARD |
114 | void OnCopy(wxCommandEvent& event); | |
115 | #endif // wxUSE_CLIPBOARD | |
116 | #if CAN_SAVE_FILES | |
f6bcfd97 | 117 | void OnSave(wxCommandEvent& event); |
b6d2b072 | 118 | #endif // CAN_SAVE_FILES |
a14670e2 | 119 | void OnListItemActivated(wxListEvent& event); |
f1df0927 VZ |
120 | |
121 | private: | |
f6bcfd97 | 122 | // create controls needed for the details display |
a14670e2 VZ |
123 | void CreateDetailsControls(wxWindow *); |
124 | ||
125 | // if necessary truncates the given string and adds an ellipsis | |
126 | wxString EllipsizeString(const wxString &text) | |
127 | { | |
128 | if (ms_maxLength > 0 && | |
129 | text.length() > ms_maxLength) | |
130 | { | |
131 | wxString ret(text); | |
132 | ret.Truncate(ms_maxLength); | |
133 | ret << "..."; | |
134 | return ret; | |
135 | } | |
136 | ||
137 | return text; | |
138 | } | |
f6bcfd97 | 139 | |
b6d2b072 VZ |
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 | |
144 | ||
145 | ||
f1df0927 | 146 | // the data for the listctrl |
224ff7a5 VZ |
147 | wxArrayString m_messages; |
148 | wxArrayInt m_severity; | |
149 | wxArrayLong m_times; | |
f1df0927 | 150 | |
f6bcfd97 BP |
151 | // the controls which are not shown initially (but only when details |
152 | // button is pressed) | |
f1df0927 VZ |
153 | wxListCtrl *m_listctrl; |
154 | ||
5f170f33 VZ |
155 | // the translated "Details" string |
156 | static wxString ms_details; | |
157 | ||
a14670e2 VZ |
158 | // the maximum length of the log message |
159 | static size_t ms_maxLength; | |
160 | ||
f1df0927 | 161 | DECLARE_EVENT_TABLE() |
c0c133e1 | 162 | wxDECLARE_NO_COPY_CLASS(wxLogDialog); |
f1df0927 VZ |
163 | }; |
164 | ||
165 | BEGIN_EVENT_TABLE(wxLogDialog, wxDialog) | |
eb3e6de3 | 166 | EVT_BUTTON(wxID_OK, wxLogDialog::OnOk) |
b6d2b072 VZ |
167 | #if wxUSE_CLIPBOARD |
168 | EVT_BUTTON(wxID_COPY, wxLogDialog::OnCopy) | |
169 | #endif // wxUSE_CLIPBOARD | |
170 | #if CAN_SAVE_FILES | |
f6bcfd97 | 171 | EVT_BUTTON(wxID_SAVE, wxLogDialog::OnSave) |
b6d2b072 | 172 | #endif // CAN_SAVE_FILES |
a14670e2 | 173 | EVT_LIST_ITEM_ACTIVATED(wxID_ANY, wxLogDialog::OnListItemActivated) |
f1df0927 VZ |
174 | END_EVENT_TABLE() |
175 | ||
176 | #endif // wxUSE_LOG_DIALOG | |
177 | ||
f6bcfd97 BP |
178 | // ---------------------------------------------------------------------------- |
179 | // private functions | |
180 | // ---------------------------------------------------------------------------- | |
181 | ||
b6d2b072 | 182 | #if CAN_SAVE_FILES |
f6bcfd97 BP |
183 | |
184 | // pass an uninitialized file object, the function will ask the user for the | |
dabbc6a5 DS |
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 | |
f6bcfd97 | 187 | // dialog was cancelled |
73ff84ff | 188 | static int OpenLogFile(wxFile& file, wxString *filename = NULL, wxWindow *parent = NULL); |
f6bcfd97 | 189 | |
b6d2b072 | 190 | #endif // CAN_SAVE_FILES |
f6bcfd97 | 191 | |
dd85fc6b VZ |
192 | // ============================================================================ |
193 | // implementation | |
194 | // ============================================================================ | |
195 | ||
dd85fc6b VZ |
196 | // ---------------------------------------------------------------------------- |
197 | // wxLogGui implementation (FIXME MT-unsafe) | |
198 | // ---------------------------------------------------------------------------- | |
199 | ||
461dae94 VZ |
200 | #if wxUSE_LOGGUI |
201 | ||
dd85fc6b VZ |
202 | wxLogGui::wxLogGui() |
203 | { | |
204 | Clear(); | |
205 | } | |
206 | ||
207 | void wxLogGui::Clear() | |
208 | { | |
5f170f33 VZ |
209 | m_bErrors = |
210 | m_bWarnings = | |
dabbc6a5 | 211 | m_bHasMessages = false; |
5f170f33 | 212 | |
dd85fc6b | 213 | m_aMessages.Empty(); |
f1df0927 | 214 | m_aSeverity.Empty(); |
dd85fc6b VZ |
215 | m_aTimes.Empty(); |
216 | } | |
217 | ||
9ad2fe62 VZ |
218 | int wxLogGui::GetSeverityIcon() const |
219 | { | |
220 | return m_bErrors ? wxICON_STOP | |
221 | : m_bWarnings ? wxICON_EXCLAMATION | |
222 | : wxICON_INFORMATION; | |
223 | } | |
224 | ||
225 | wxString wxLogGui::GetTitle() const | |
226 | { | |
227 | wxString titleFormat; | |
228 | switch ( GetSeverityIcon() ) | |
229 | { | |
230 | case wxICON_STOP: | |
231 | titleFormat = _("%s Error"); | |
232 | break; | |
233 | ||
234 | case wxICON_EXCLAMATION: | |
235 | titleFormat = _("%s Warning"); | |
236 | break; | |
237 | ||
238 | default: | |
239 | wxFAIL_MSG( "unexpected icon severity" ); | |
240 | // fall through | |
241 | ||
242 | case wxICON_INFORMATION: | |
243 | titleFormat = _("%s Information"); | |
244 | } | |
245 | ||
246 | return wxString::Format(titleFormat, wxTheApp->GetAppDisplayName()); | |
247 | } | |
248 | ||
249 | void | |
250 | wxLogGui::DoShowSingleLogMessage(const wxString& message, | |
251 | const wxString& title, | |
252 | int style) | |
253 | { | |
254 | wxMessageBox(message, title, wxOK | style); | |
255 | } | |
256 | ||
257 | void | |
258 | wxLogGui::DoShowMultipleLogMessages(const wxArrayString& messages, | |
259 | const wxArrayInt& severities, | |
260 | const wxArrayLong& times, | |
261 | const wxString& title, | |
262 | int style) | |
263 | { | |
264 | #if wxUSE_LOG_DIALOG | |
265 | wxLogDialog dlg(NULL, | |
266 | messages, severities, times, | |
267 | title, style); | |
268 | ||
269 | // clear the message list before showing the dialog because while it's | |
270 | // shown some new messages may appear | |
271 | Clear(); | |
272 | ||
273 | (void)dlg.ShowModal(); | |
274 | #else // !wxUSE_LOG_DIALOG | |
275 | // start from the most recent message | |
276 | wxString message; | |
f946f8bb | 277 | const size_t nMsgCount = messages.size(); |
14fd5e96 | 278 | message.reserve(nMsgCount*100); |
9ad2fe62 VZ |
279 | for ( size_t n = nMsgCount; n > 0; n-- ) { |
280 | message << m_aMessages[n - 1] << wxT("\n"); | |
281 | } | |
282 | ||
283 | DoShowSingleLogMessage(message, title, style); | |
284 | #endif // wxUSE_LOG_DIALOG/!wxUSE_LOG_DIALOG | |
285 | } | |
286 | ||
dd85fc6b VZ |
287 | void wxLogGui::Flush() |
288 | { | |
232addd1 VZ |
289 | wxLog::Flush(); |
290 | ||
dd85fc6b VZ |
291 | if ( !m_bHasMessages ) |
292 | return; | |
293 | ||
294 | // do it right now to block any new calls to Flush() while we're here | |
dabbc6a5 | 295 | m_bHasMessages = false; |
dd85fc6b | 296 | |
9ad2fe62 VZ |
297 | // note that this must be done before examining m_aMessages as it may log |
298 | // yet another message | |
dbaa16de | 299 | const unsigned repeatCount = LogLastRepeatIfNeeded(); |
f9837791 | 300 | |
9ad2fe62 | 301 | const size_t nMsgCount = m_aMessages.size(); |
f1df0927 | 302 | |
9ad2fe62 VZ |
303 | if ( repeatCount > 0 ) |
304 | { | |
305 | m_aMessages[nMsgCount - 1] << " (" << m_aMessages[nMsgCount - 2] << ")"; | |
f1df0927 | 306 | } |
1e6feb95 | 307 | |
9ad2fe62 VZ |
308 | const wxString title = GetTitle(); |
309 | const int style = GetSeverityIcon(); | |
224ff7a5 | 310 | |
69c916e9 VZ |
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! | |
313 | Suspend(); | |
314 | ||
23f681ec VZ |
315 | if ( nMsgCount == 1 ) |
316 | { | |
9ad2fe62 VZ |
317 | // make a copy before calling Clear() |
318 | const wxString message(m_aMessages[0]); | |
319 | Clear(); | |
320 | ||
321 | DoShowSingleLogMessage(message, title, style); | |
23f681ec VZ |
322 | } |
323 | else // more than one message | |
324 | { | |
9ad2fe62 VZ |
325 | wxArrayString messages; |
326 | wxArrayInt severities; | |
327 | wxArrayLong times; | |
0250efd6 | 328 | |
9ad2fe62 VZ |
329 | messages.swap(m_aMessages); |
330 | severities.swap(m_aSeverity); | |
331 | times.swap(m_aTimes); | |
f1df0927 | 332 | |
23f681ec VZ |
333 | Clear(); |
334 | ||
9ad2fe62 | 335 | DoShowMultipleLogMessages(messages, severities, times, title, style); |
23f681ec | 336 | } |
69c916e9 VZ |
337 | |
338 | // allow flushing the logs again | |
339 | Resume(); | |
dd85fc6b VZ |
340 | } |
341 | ||
23f681ec | 342 | // log all kinds of messages |
bc73d5ae VZ |
343 | void wxLogGui::DoLogRecord(wxLogLevel level, |
344 | const wxString& msg, | |
345 | const wxLogRecordInfo& info) | |
dd85fc6b | 346 | { |
bc73d5ae VZ |
347 | switch ( level ) |
348 | { | |
dd85fc6b VZ |
349 | case wxLOG_Info: |
350 | if ( GetVerbose() ) | |
351 | case wxLOG_Message: | |
f1df0927 | 352 | { |
bc73d5ae | 353 | m_aMessages.Add(msg); |
a250392c | 354 | m_aSeverity.Add(wxLOG_Message); |
bc73d5ae | 355 | m_aTimes.Add((long)info.timestamp); |
dabbc6a5 | 356 | m_bHasMessages = true; |
f1df0927 VZ |
357 | } |
358 | break; | |
dd85fc6b VZ |
359 | |
360 | case wxLOG_Status: | |
361 | #if wxUSE_STATUSBAR | |
f1df0927 | 362 | { |
af588446 VZ |
363 | wxFrame *pFrame = NULL; |
364 | ||
365 | // check if the frame was passed to us explicitly | |
958f8790 | 366 | wxUIntPtr ptr = 0; |
af588446 VZ |
367 | if ( info.GetNumValue(wxLOG_KEY_FRAME, &ptr) ) |
368 | { | |
369 | pFrame = static_cast<wxFrame *>(wxUIntToPtr(ptr)); | |
370 | } | |
371 | ||
f1df0927 | 372 | // find the top window and set it's status text if it has any |
f1df0927 VZ |
373 | if ( pFrame == NULL ) { |
374 | wxWindow *pWin = wxTheApp->GetTopWindow(); | |
375 | if ( pWin != NULL && pWin->IsKindOf(CLASSINFO(wxFrame)) ) { | |
376 | pFrame = (wxFrame *)pWin; | |
dd85fc6b | 377 | } |
dd85fc6b | 378 | } |
f1df0927 VZ |
379 | |
380 | if ( pFrame && pFrame->GetStatusBar() ) | |
bc73d5ae | 381 | pFrame->SetStatusText(msg); |
f1df0927 | 382 | } |
dd85fc6b | 383 | #endif // wxUSE_STATUSBAR |
f1df0927 | 384 | break; |
dd85fc6b | 385 | |
dd85fc6b | 386 | case wxLOG_Error: |
f1df0927 VZ |
387 | if ( !m_bErrors ) { |
388 | #if !wxUSE_LOG_DIALOG | |
dd85fc6b | 389 | // discard earlier informational messages if this is the 1st |
f1df0927 VZ |
390 | // error because they might not make sense any more and showing |
391 | // them in a message box might be confusing | |
392 | m_aMessages.Empty(); | |
393 | m_aSeverity.Empty(); | |
394 | m_aTimes.Empty(); | |
395 | #endif // wxUSE_LOG_DIALOG | |
dabbc6a5 | 396 | m_bErrors = true; |
f1df0927 VZ |
397 | } |
398 | // fall through | |
dd85fc6b VZ |
399 | |
400 | case wxLOG_Warning: | |
f1df0927 VZ |
401 | if ( !m_bErrors ) { |
402 | // for the warning we don't discard the info messages | |
dabbc6a5 | 403 | m_bWarnings = true; |
f1df0927 VZ |
404 | } |
405 | ||
bc73d5ae | 406 | m_aMessages.Add(msg); |
06b466c7 | 407 | m_aSeverity.Add((int)level); |
bc73d5ae | 408 | m_aTimes.Add((long)info.timestamp); |
dabbc6a5 | 409 | m_bHasMessages = true; |
f1df0927 | 410 | break; |
711f12ef | 411 | |
6900a897 VZ |
412 | case wxLOG_Debug: |
413 | case wxLOG_Trace: | |
414 | // let the base class deal with debug/trace messages | |
bc73d5ae | 415 | wxLog::DoLogRecord(level, msg, info); |
6900a897 VZ |
416 | break; |
417 | ||
418 | case wxLOG_FatalError: | |
419 | case wxLOG_Max: | |
420 | // fatal errors are shown immediately and terminate the program so | |
421 | // we should never see them here | |
422 | wxFAIL_MSG("unexpected log level"); | |
423 | break; | |
424 | ||
425 | case wxLOG_Progress: | |
426 | case wxLOG_User: | |
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 | |
430 | break; | |
dd85fc6b VZ |
431 | } |
432 | } | |
433 | ||
461dae94 VZ |
434 | #endif // wxUSE_LOGGUI |
435 | ||
dd85fc6b VZ |
436 | // ---------------------------------------------------------------------------- |
437 | // wxLogWindow and wxLogFrame implementation | |
438 | // ---------------------------------------------------------------------------- | |
439 | ||
c54a8b64 VZ |
440 | #if wxUSE_LOGWINDOW |
441 | ||
dd85fc6b VZ |
442 | // log frame class |
443 | // --------------- | |
444 | class wxLogFrame : public wxFrame | |
445 | { | |
446 | public: | |
447 | // ctor & dtor | |
46ff9bd5 | 448 | wxLogFrame(wxWindow *pParent, wxLogWindow *log, const wxString& szTitle); |
dd85fc6b VZ |
449 | virtual ~wxLogFrame(); |
450 | ||
451 | // menu callbacks | |
452 | void OnClose(wxCommandEvent& event); | |
453 | void OnCloseWindow(wxCloseEvent& event); | |
b6d2b072 VZ |
454 | #if CAN_SAVE_FILES |
455 | void OnSave(wxCommandEvent& event); | |
456 | #endif // CAN_SAVE_FILES | |
dd85fc6b VZ |
457 | void OnClear(wxCommandEvent& event); |
458 | ||
232addd1 VZ |
459 | // do show the message in the text control |
460 | void ShowLogMessage(const wxString& message) | |
461 | { | |
462 | m_pTextCtrl->AppendText(message + wxS('\n')); | |
463 | } | |
dd85fc6b VZ |
464 | |
465 | private: | |
857eb081 | 466 | // use standard ids for our commands! |
dd85fc6b VZ |
467 | enum |
468 | { | |
857eb081 VZ |
469 | Menu_Close = wxID_CLOSE, |
470 | Menu_Save = wxID_SAVE, | |
471 | Menu_Clear = wxID_CLEAR | |
dd85fc6b VZ |
472 | }; |
473 | ||
f6bcfd97 BP |
474 | // common part of OnClose() and OnCloseWindow() |
475 | void DoClose(); | |
dd85fc6b VZ |
476 | |
477 | wxTextCtrl *m_pTextCtrl; | |
478 | wxLogWindow *m_log; | |
479 | ||
480 | DECLARE_EVENT_TABLE() | |
c0c133e1 | 481 | wxDECLARE_NO_COPY_CLASS(wxLogFrame); |
dd85fc6b VZ |
482 | }; |
483 | ||
484 | BEGIN_EVENT_TABLE(wxLogFrame, wxFrame) | |
485 | // wxLogWindow menu events | |
486 | EVT_MENU(Menu_Close, wxLogFrame::OnClose) | |
b6d2b072 | 487 | #if CAN_SAVE_FILES |
dd85fc6b | 488 | EVT_MENU(Menu_Save, wxLogFrame::OnSave) |
b6d2b072 | 489 | #endif // CAN_SAVE_FILES |
dd85fc6b VZ |
490 | EVT_MENU(Menu_Clear, wxLogFrame::OnClear) |
491 | ||
492 | EVT_CLOSE(wxLogFrame::OnCloseWindow) | |
493 | END_EVENT_TABLE() | |
494 | ||
46ff9bd5 | 495 | wxLogFrame::wxLogFrame(wxWindow *pParent, wxLogWindow *log, const wxString& szTitle) |
dabbc6a5 | 496 | : wxFrame(pParent, wxID_ANY, szTitle) |
dd85fc6b VZ |
497 | { |
498 | m_log = log; | |
499 | ||
dabbc6a5 | 500 | m_pTextCtrl = new wxTextCtrl(this, wxID_ANY, wxEmptyString, wxDefaultPosition, |
dd85fc6b VZ |
501 | wxDefaultSize, |
502 | wxTE_MULTILINE | | |
503 | wxHSCROLL | | |
46d52925 VZ |
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 | |
506 | #if !wxUSE_UNICODE | |
507 | wxTE_RICH | | |
508 | #endif // !wxUSE_UNICODE | |
dd85fc6b VZ |
509 | wxTE_READONLY); |
510 | ||
3a8c693a | 511 | #if wxUSE_MENUS |
dd85fc6b VZ |
512 | // create menu |
513 | wxMenuBar *pMenuBar = new wxMenuBar; | |
514 | wxMenu *pMenu = new wxMenu; | |
b6d2b072 | 515 | #if CAN_SAVE_FILES |
b82f92a8 | 516 | pMenu->Append(Menu_Save, _("Save &As..."), _("Save log contents to file")); |
b6d2b072 | 517 | #endif // CAN_SAVE_FILES |
dd85fc6b VZ |
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); | |
3a8c693a | 523 | #endif // wxUSE_MENUS |
dd85fc6b VZ |
524 | |
525 | #if wxUSE_STATUSBAR | |
526 | // status bar for menu prompts | |
527 | CreateStatusBar(); | |
528 | #endif // wxUSE_STATUSBAR | |
529 | ||
530 | m_log->OnFrameCreate(this); | |
531 | } | |
532 | ||
f6bcfd97 BP |
533 | void wxLogFrame::DoClose() |
534 | { | |
535 | if ( m_log->OnFrameClose(this) ) | |
536 | { | |
537 | // instead of closing just hide the window to be able to Show() it | |
538 | // later | |
dabbc6a5 | 539 | Show(false); |
f6bcfd97 BP |
540 | } |
541 | } | |
542 | ||
dd85fc6b VZ |
543 | void wxLogFrame::OnClose(wxCommandEvent& WXUNUSED(event)) |
544 | { | |
545 | DoClose(); | |
546 | } | |
547 | ||
548 | void wxLogFrame::OnCloseWindow(wxCloseEvent& WXUNUSED(event)) | |
549 | { | |
550 | DoClose(); | |
551 | } | |
552 | ||
b6d2b072 | 553 | #if CAN_SAVE_FILES |
dd85fc6b VZ |
554 | void wxLogFrame::OnSave(wxCommandEvent& WXUNUSED(event)) |
555 | { | |
f6bcfd97 BP |
556 | wxString filename; |
557 | wxFile file; | |
73ff84ff | 558 | int rc = OpenLogFile(file, &filename, this); |
f6bcfd97 BP |
559 | if ( rc == -1 ) |
560 | { | |
dd85fc6b VZ |
561 | // cancelled |
562 | return; | |
563 | } | |
564 | ||
f6bcfd97 | 565 | bool bOk = rc != 0; |
dd85fc6b VZ |
566 | |
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) + | |
f6bcfd97 | 572 | wxTextFile::GetEOL()); |
dd85fc6b VZ |
573 | } |
574 | ||
575 | if ( bOk ) | |
576 | bOk = file.Close(); | |
577 | ||
578 | if ( !bOk ) { | |
579 | wxLogError(_("Can't save log contents to file.")); | |
580 | } | |
581 | else { | |
2523e9b7 | 582 | wxLogStatus((wxFrame*)this, _("Log saved to the file '%s'."), filename.c_str()); |
dd85fc6b VZ |
583 | } |
584 | } | |
b6d2b072 | 585 | #endif // CAN_SAVE_FILES |
dd85fc6b VZ |
586 | |
587 | void wxLogFrame::OnClear(wxCommandEvent& WXUNUSED(event)) | |
588 | { | |
589 | m_pTextCtrl->Clear(); | |
590 | } | |
591 | ||
592 | wxLogFrame::~wxLogFrame() | |
593 | { | |
594 | m_log->OnFrameDelete(this); | |
595 | } | |
596 | ||
597 | // wxLogWindow | |
598 | // ----------- | |
03147cd0 | 599 | |
55c9a186 | 600 | wxLogWindow::wxLogWindow(wxWindow *pParent, |
46ff9bd5 | 601 | const wxString& szTitle, |
dd85fc6b VZ |
602 | bool bShow, |
603 | bool bDoPass) | |
604 | { | |
0538419f VZ |
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). | |
608 | m_pLogFrame = NULL; | |
609 | ||
03147cd0 | 610 | PassMessages(bDoPass); |
dd85fc6b VZ |
611 | |
612 | m_pLogFrame = new wxLogFrame(pParent, this, szTitle); | |
dd85fc6b VZ |
613 | |
614 | if ( bShow ) | |
dabbc6a5 | 615 | m_pLogFrame->Show(); |
dd85fc6b VZ |
616 | } |
617 | ||
618 | void wxLogWindow::Show(bool bShow) | |
619 | { | |
620 | m_pLogFrame->Show(bShow); | |
621 | } | |
622 | ||
bc73d5ae | 623 | void wxLogWindow::DoLogTextAtLevel(wxLogLevel level, const wxString& msg) |
dd85fc6b | 624 | { |
bc73d5ae VZ |
625 | if ( !m_pLogFrame ) |
626 | return; | |
cd1ff792 | 627 | |
bc73d5ae VZ |
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 ) | |
634 | return; | |
dd85fc6b | 635 | |
232addd1 | 636 | m_pLogFrame->ShowLogMessage(msg); |
dd85fc6b VZ |
637 | } |
638 | ||
639 | wxFrame *wxLogWindow::GetFrame() const | |
640 | { | |
641 | return m_pLogFrame; | |
642 | } | |
643 | ||
644 | void wxLogWindow::OnFrameCreate(wxFrame * WXUNUSED(frame)) | |
645 | { | |
646 | } | |
647 | ||
f6bcfd97 BP |
648 | bool wxLogWindow::OnFrameClose(wxFrame * WXUNUSED(frame)) |
649 | { | |
650 | // allow to close | |
dabbc6a5 | 651 | return true; |
f6bcfd97 BP |
652 | } |
653 | ||
dd85fc6b VZ |
654 | void wxLogWindow::OnFrameDelete(wxFrame * WXUNUSED(frame)) |
655 | { | |
d3b9f782 | 656 | m_pLogFrame = NULL; |
dd85fc6b VZ |
657 | } |
658 | ||
659 | wxLogWindow::~wxLogWindow() | |
660 | { | |
dd85fc6b VZ |
661 | // may be NULL if log frame already auto destroyed itself |
662 | delete m_pLogFrame; | |
663 | } | |
664 | ||
c54a8b64 VZ |
665 | #endif // wxUSE_LOGWINDOW |
666 | ||
f1df0927 VZ |
667 | // ---------------------------------------------------------------------------- |
668 | // wxLogDialog | |
669 | // ---------------------------------------------------------------------------- | |
670 | ||
671 | #if wxUSE_LOG_DIALOG | |
672 | ||
5f170f33 | 673 | wxString wxLogDialog::ms_details; |
a14670e2 | 674 | size_t wxLogDialog::ms_maxLength = 0; |
5f170f33 | 675 | |
f1df0927 VZ |
676 | wxLogDialog::wxLogDialog(wxWindow *parent, |
677 | const wxArrayString& messages, | |
678 | const wxArrayInt& severity, | |
679 | const wxArrayLong& times, | |
680 | const wxString& caption, | |
681 | long style) | |
dabbc6a5 | 682 | : wxDialog(parent, wxID_ANY, caption, |
0b165ed6 VZ |
683 | wxDefaultPosition, wxDefaultSize, |
684 | wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER) | |
f1df0927 | 685 | { |
a14670e2 VZ |
686 | // init the static variables: |
687 | ||
32b13913 | 688 | if ( ms_details.empty() ) |
5f170f33 | 689 | { |
f6bcfd97 BP |
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"); | |
5f170f33 | 693 | ms_details = wxGetTranslation(ms_details); |
5e63b67d WS |
694 | #ifdef __SMARTPHONE__ |
695 | ms_details = wxStripMenuCodes(ms_details); | |
696 | #endif | |
5f170f33 VZ |
697 | } |
698 | ||
a14670e2 VZ |
699 | if ( ms_maxLength == 0 ) |
700 | { | |
701 | ms_maxLength = (2 * wxGetDisplaySize().x/3) / GetCharWidth(); | |
702 | } | |
703 | ||
4aff28fc VZ |
704 | size_t count = messages.GetCount(); |
705 | m_messages.Alloc(count); | |
706 | m_severity.Alloc(count); | |
707 | m_times.Alloc(count); | |
708 | ||
709 | for ( size_t n = 0; n < count; n++ ) | |
710 | { | |
a14670e2 | 711 | m_messages.Add(messages[n]); |
786c4e23 VZ |
712 | m_severity.Add(severity[n]); |
713 | m_times.Add(times[n]); | |
4aff28fc VZ |
714 | } |
715 | ||
b6d2b072 | 716 | m_listctrl = NULL; |
5e63b67d | 717 | |
94f53923 | 718 | bool isPda = (wxSystemSettings::GetScreenType() <= wxSYS_SCREEN_PDA); |
5e63b67d | 719 | |
f1df0927 | 720 | // create the controls which are always shown and layout them: we use |
d13b34d3 | 721 | // sizers even though our window is not resizable to calculate the size of |
f1df0927 VZ |
722 | // the dialog properly |
723 | wxBoxSizer *sizerTop = new wxBoxSizer(wxVERTICAL); | |
94f53923 | 724 | wxBoxSizer *sizerAll = new wxBoxSizer(isPda ? wxVERTICAL : wxHORIZONTAL); |
f1df0927 | 725 | |
1970409e | 726 | if (!isPda) |
389d906b | 727 | { |
1970409e VZ |
728 | wxStaticBitmap *icon = new wxStaticBitmap |
729 | ( | |
730 | this, | |
731 | wxID_ANY, | |
732 | wxArtProvider::GetMessageBoxIcon(style) | |
733 | ); | |
b6d2b072 | 734 | sizerAll->Add(icon, wxSizerFlags().Centre()); |
389d906b | 735 | } |
5e63b67d | 736 | |
a14670e2 VZ |
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); | |
741 | ||
b6d2b072 | 742 | sizerAll->Add(szText, wxSizerFlags(1).Centre().Border(wxLEFT | wxRIGHT)); |
a14670e2 VZ |
743 | |
744 | wxButton *btnOk = new wxButton(this, wxID_OK); | |
b6d2b072 | 745 | sizerAll->Add(btnOk, wxSizerFlags().Centre()); |
f1df0927 | 746 | |
b6d2b072 | 747 | sizerTop->Add(sizerAll, wxSizerFlags().Expand().Border()); |
f1df0927 | 748 | |
f1df0927 | 749 | |
a14670e2 | 750 | // add the details pane |
5e63b67d | 751 | #ifndef __SMARTPHONE__ |
abe0903c JS |
752 | |
753 | #if wxUSE_COLLPANE | |
b6d2b072 VZ |
754 | wxCollapsiblePane * const |
755 | collpane = new wxCollapsiblePane(this, wxID_ANY, ms_details); | |
756 | sizerTop->Add(collpane, wxSizerFlags(1).Expand().Border()); | |
a14670e2 VZ |
757 | |
758 | wxWindow *win = collpane->GetPane(); | |
abe0903c JS |
759 | #else |
760 | wxPanel* win = new wxPanel(this, wxID_ANY, wxDefaultPosition, wxDefaultSize, | |
761 | wxBORDER_NONE); | |
762 | #endif | |
b6d2b072 | 763 | wxSizer * const paneSz = new wxBoxSizer(wxVERTICAL); |
a14670e2 VZ |
764 | |
765 | CreateDetailsControls(win); | |
766 | ||
b6d2b072 VZ |
767 | paneSz->Add(m_listctrl, wxSizerFlags(1).Expand().Border(wxTOP)); |
768 | ||
769 | #if wxUSE_CLIPBOARD || CAN_SAVE_FILES | |
770 | wxBoxSizer * const btnSizer = new wxBoxSizer(wxHORIZONTAL); | |
771 | ||
772 | wxSizerFlags flagsBtn; | |
773 | flagsBtn.Border(wxLEFT); | |
774 | ||
775 | #if wxUSE_CLIPBOARD | |
776 | btnSizer->Add(new wxButton(win, wxID_COPY), flagsBtn); | |
777 | #endif // wxUSE_CLIPBOARD | |
a14670e2 | 778 | |
b6d2b072 VZ |
779 | #if CAN_SAVE_FILES |
780 | btnSizer->Add(new wxButton(win, wxID_SAVE), flagsBtn); | |
781 | #endif // CAN_SAVE_FILES | |
782 | ||
783 | paneSz->Add(btnSizer, wxSizerFlags().Right().Border(wxTOP)); | |
784 | #endif // wxUSE_CLIPBOARD || CAN_SAVE_FILES | |
a14670e2 VZ |
785 | |
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__ | |
792 | ||
793 | SetSizerAndFit(sizerTop); | |
f1df0927 VZ |
794 | |
795 | Centre(); | |
5e63b67d | 796 | |
94f53923 JS |
797 | if (isPda) |
798 | { | |
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)); | |
802 | } | |
f1df0927 VZ |
803 | } |
804 | ||
a14670e2 | 805 | void wxLogDialog::CreateDetailsControls(wxWindow *parent) |
f6bcfd97 | 806 | { |
4ccc2a07 FM |
807 | wxString fmt = wxLog::GetTimestamp(); |
808 | bool hasTimeStamp = !fmt.IsEmpty(); | |
809 | ||
f6bcfd97 | 810 | // create the list ctrl now |
a14670e2 | 811 | m_listctrl = new wxListCtrl(parent, wxID_ANY, |
f6bcfd97 | 812 | wxDefaultPosition, wxDefaultSize, |
3d35ec88 | 813 | wxBORDER_SIMPLE | |
f6bcfd97 BP |
814 | wxLC_REPORT | |
815 | wxLC_NO_HEADER | | |
816 | wxLC_SINGLE_SEL); | |
94f53923 | 817 | #ifdef __WXWINCE__ |
a14670e2 | 818 | // This makes a big aesthetic difference on WinCE but I |
94f53923 JS |
819 | // don't want to risk problems on other platforms |
820 | m_listctrl->Hide(); | |
5e63b67d | 821 | #endif |
f6bcfd97 BP |
822 | |
823 | // no need to translate these strings as they're not shown to the | |
824 | // user anyhow (we use wxLC_NO_HEADER style) | |
9a83f860 | 825 | m_listctrl->InsertColumn(0, wxT("Message")); |
4ccc2a07 FM |
826 | |
827 | if (hasTimeStamp) | |
9a83f860 | 828 | m_listctrl->InsertColumn(1, wxT("Time")); |
f6bcfd97 BP |
829 | |
830 | // prepare the imagelist | |
831 | static const int ICON_SIZE = 16; | |
832 | wxImageList *imageList = new wxImageList(ICON_SIZE, ICON_SIZE); | |
833 | ||
834 | // order should be the same as in the switch below! | |
19be42b7 | 835 | static const char* const icons[] = |
f6bcfd97 | 836 | { |
389d906b VS |
837 | wxART_ERROR, |
838 | wxART_WARNING, | |
839 | wxART_INFORMATION | |
f6bcfd97 BP |
840 | }; |
841 | ||
dabbc6a5 | 842 | bool loadedIcons = true; |
f6bcfd97 | 843 | |
f6bcfd97 BP |
844 | for ( size_t icon = 0; icon < WXSIZEOF(icons); icon++ ) |
845 | { | |
389d906b VS |
846 | wxBitmap bmp = wxArtProvider::GetBitmap(icons[icon], wxART_MESSAGE_BOX, |
847 | wxSize(ICON_SIZE, ICON_SIZE)); | |
f6bcfd97 | 848 | |
9f14a818 VZ |
849 | // This may very well fail if there are insufficient colours available. |
850 | // Degrade gracefully. | |
a1b806b9 | 851 | if ( !bmp.IsOk() ) |
9f14a818 | 852 | { |
dabbc6a5 | 853 | loadedIcons = false; |
9f14a818 VZ |
854 | |
855 | break; | |
856 | } | |
857 | ||
389d906b | 858 | imageList->Add(bmp); |
f6bcfd97 BP |
859 | } |
860 | ||
861 | m_listctrl->SetImageList(imageList, wxIMAGE_LIST_SMALL); | |
f6bcfd97 | 862 | |
4ccc2a07 | 863 | // fill the listctrl |
f6bcfd97 BP |
864 | size_t count = m_messages.GetCount(); |
865 | for ( size_t n = 0; n < count; n++ ) | |
866 | { | |
9f14a818 VZ |
867 | int image; |
868 | ||
9f14a818 | 869 | if ( loadedIcons ) |
f6bcfd97 | 870 | { |
9f14a818 VZ |
871 | switch ( m_severity[n] ) |
872 | { | |
873 | case wxLOG_Error: | |
874 | image = 0; | |
875 | break; | |
f6bcfd97 | 876 | |
9f14a818 VZ |
877 | case wxLOG_Warning: |
878 | image = 1; | |
879 | break; | |
f6bcfd97 | 880 | |
9f14a818 VZ |
881 | default: |
882 | image = 2; | |
883 | } | |
f6bcfd97 | 884 | } |
9f14a818 | 885 | else // failed to load images |
9f14a818 | 886 | { |
f6bcfd97 | 887 | image = -1; |
9f14a818 | 888 | } |
f6bcfd97 | 889 | |
a14670e2 VZ |
890 | wxString msg = m_messages[n]; |
891 | msg.Replace(wxT("\n"), wxT(" ")); | |
892 | msg = EllipsizeString(msg); | |
893 | ||
894 | m_listctrl->InsertItem(n, msg, image); | |
4ccc2a07 FM |
895 | |
896 | if (hasTimeStamp) | |
897 | m_listctrl->SetItem(n, 1, TimeStamp(fmt, (time_t)m_times[n])); | |
f6bcfd97 BP |
898 | } |
899 | ||
900 | // let the columns size themselves | |
901 | m_listctrl->SetColumnWidth(0, wxLIST_AUTOSIZE); | |
4ccc2a07 FM |
902 | if (hasTimeStamp) |
903 | m_listctrl->SetColumnWidth(1, wxLIST_AUTOSIZE); | |
f6bcfd97 | 904 | |
9f14a818 | 905 | // calculate an approximately nice height for the listctrl |
7b82d782 | 906 | int height = GetCharHeight()*(count + 4); |
f6bcfd97 | 907 | |
9f14a818 VZ |
908 | // but check that the dialog won't fall fown from the screen |
909 | // | |
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(); | |
4d509295 | 914 | |
9f14a818 VZ |
915 | // we should leave a margin |
916 | heightMax *= 9; | |
917 | heightMax /= 10; | |
4d509295 | 918 | |
422d0ff0 | 919 | m_listctrl->SetSize(wxDefaultCoord, wxMin(height, heightMax)); |
f6bcfd97 BP |
920 | } |
921 | ||
a14670e2 VZ |
922 | void wxLogDialog::OnListItemActivated(wxListEvent& event) |
923 | { | |
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 | |
927 | // newlines. | |
928 | ||
929 | // NB: don't do: | |
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()]; | |
933 | ||
cd1ff792 | 934 | // wxMessageBox will nicely handle the '\n' in the string (if any) |
a14670e2 VZ |
935 | // and supports long strings |
936 | wxMessageBox(str, wxT("Log message"), wxOK, this); | |
937 | } | |
938 | ||
f1df0927 VZ |
939 | void wxLogDialog::OnOk(wxCommandEvent& WXUNUSED(event)) |
940 | { | |
941 | EndModal(wxID_OK); | |
942 | } | |
943 | ||
b6d2b072 | 944 | #if CAN_SAVE_FILES || wxUSE_CLIPBOARD |
f6bcfd97 | 945 | |
b6d2b072 | 946 | wxString wxLogDialog::GetLogMessages() const |
f6bcfd97 | 947 | { |
f6bcfd97 | 948 | wxString fmt = wxLog::GetTimestamp(); |
b6d2b072 | 949 | if ( fmt.empty() ) |
f6bcfd97 | 950 | { |
b6d2b072 VZ |
951 | // use the default format |
952 | fmt = "%c"; | |
f6bcfd97 BP |
953 | } |
954 | ||
b6d2b072 VZ |
955 | const size_t count = m_messages.GetCount(); |
956 | ||
957 | wxString text; | |
958 | text.reserve(count*m_messages[0].length()); | |
959 | for ( size_t n = 0; n < count; n++ ) | |
f6bcfd97 | 960 | { |
b6d2b072 VZ |
961 | text << TimeStamp(fmt, (time_t)m_times[n]) |
962 | << ": " | |
f6bcfd97 BP |
963 | << m_messages[n] |
964 | << wxTextFile::GetEOL(); | |
b6d2b072 VZ |
965 | } |
966 | ||
967 | return text; | |
968 | } | |
969 | ||
970 | #endif // CAN_SAVE_FILES || wxUSE_CLIPBOARD | |
f6bcfd97 | 971 | |
b6d2b072 VZ |
972 | #if wxUSE_CLIPBOARD |
973 | ||
974 | void wxLogDialog::OnCopy(wxCommandEvent& WXUNUSED(event)) | |
975 | { | |
976 | wxClipboardLocker clip; | |
977 | if ( !clip || | |
978 | !wxTheClipboard->AddData(new wxTextDataObject(GetLogMessages())) ) | |
979 | { | |
980 | wxLogError(_("Failed to copy dialog contents to the clipboard.")); | |
f6bcfd97 | 981 | } |
b6d2b072 | 982 | } |
f6bcfd97 | 983 | |
b6d2b072 VZ |
984 | #endif // wxUSE_CLIPBOARD |
985 | ||
986 | #if CAN_SAVE_FILES | |
987 | ||
988 | void wxLogDialog::OnSave(wxCommandEvent& WXUNUSED(event)) | |
989 | { | |
990 | wxFile file; | |
991 | int rc = OpenLogFile(file, NULL, this); | |
992 | if ( rc == -1 ) | |
993 | { | |
994 | // cancelled | |
995 | return; | |
996 | } | |
f6bcfd97 | 997 | |
b6d2b072 | 998 | if ( !rc || !file.Write(GetLogMessages()) || !file.Close() ) |
af588446 | 999 | { |
f6bcfd97 | 1000 | wxLogError(_("Can't save log contents to file.")); |
af588446 | 1001 | } |
f6bcfd97 BP |
1002 | } |
1003 | ||
b6d2b072 | 1004 | #endif // CAN_SAVE_FILES |
f6bcfd97 | 1005 | |
f1df0927 VZ |
1006 | wxLogDialog::~wxLogDialog() |
1007 | { | |
1008 | if ( m_listctrl ) | |
1009 | { | |
1010 | delete m_listctrl->GetImageList(wxIMAGE_LIST_SMALL); | |
1011 | } | |
1012 | } | |
1013 | ||
1014 | #endif // wxUSE_LOG_DIALOG | |
f6bcfd97 | 1015 | |
b6d2b072 | 1016 | #if CAN_SAVE_FILES |
f6bcfd97 BP |
1017 | |
1018 | // pass an uninitialized file object, the function will ask the user for the | |
dabbc6a5 DS |
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 | |
f6bcfd97 | 1021 | // dialog was cancelled |
73ff84ff | 1022 | static int OpenLogFile(wxFile& file, wxString *pFilename, wxWindow *parent) |
f6bcfd97 BP |
1023 | { |
1024 | // get the file name | |
1025 | // ----------------- | |
73ff84ff | 1026 | wxString filename = wxSaveFileSelector(wxT("log"), wxT("txt"), wxT("log.txt"), parent); |
f6bcfd97 BP |
1027 | if ( !filename ) { |
1028 | // cancelled | |
1029 | return -1; | |
1030 | } | |
1031 | ||
1032 | // open file | |
1033 | // --------- | |
c2f7cc71 | 1034 | bool bOk = true; // suppress warning about it being possible uninitialized |
f6bcfd97 | 1035 | if ( wxFile::Exists(filename) ) { |
dabbc6a5 | 1036 | bool bAppend = false; |
f6bcfd97 BP |
1037 | wxString strMsg; |
1038 | strMsg.Printf(_("Append log to file '%s' (choosing [No] will overwrite it)?"), | |
1039 | filename.c_str()); | |
1040 | switch ( wxMessageBox(strMsg, _("Question"), | |
1041 | wxICON_QUESTION | wxYES_NO | wxCANCEL) ) { | |
1042 | case wxYES: | |
dabbc6a5 | 1043 | bAppend = true; |
f6bcfd97 BP |
1044 | break; |
1045 | ||
1046 | case wxNO: | |
dabbc6a5 | 1047 | bAppend = false; |
f6bcfd97 BP |
1048 | break; |
1049 | ||
1050 | case wxCANCEL: | |
1051 | return -1; | |
1052 | ||
1053 | default: | |
1054 | wxFAIL_MSG(_("invalid message box return value")); | |
1055 | } | |
1056 | ||
1057 | if ( bAppend ) { | |
1058 | bOk = file.Open(filename, wxFile::write_append); | |
1059 | } | |
1060 | else { | |
dabbc6a5 | 1061 | bOk = file.Create(filename, true /* overwrite */); |
f6bcfd97 BP |
1062 | } |
1063 | } | |
1064 | else { | |
1065 | bOk = file.Create(filename); | |
1066 | } | |
1067 | ||
1068 | if ( pFilename ) | |
1069 | *pFilename = filename; | |
1070 | ||
1071 | return bOk; | |
1072 | } | |
1073 | ||
b6d2b072 | 1074 | #endif // CAN_SAVE_FILES |
f6bcfd97 | 1075 | |
1e6feb95 VZ |
1076 | #endif // !(wxUSE_LOGGUI || wxUSE_LOGWINDOW) |
1077 | ||
f561a4e0 | 1078 | #if wxUSE_LOG && wxUSE_TEXTCTRL |
1e6feb95 VZ |
1079 | |
1080 | // ---------------------------------------------------------------------------- | |
1081 | // wxLogTextCtrl implementation | |
1082 | // ---------------------------------------------------------------------------- | |
1083 | ||
1084 | wxLogTextCtrl::wxLogTextCtrl(wxTextCtrl *pTextCtrl) | |
1085 | { | |
1086 | m_pTextCtrl = pTextCtrl; | |
1087 | } | |
1088 | ||
bc73d5ae | 1089 | void wxLogTextCtrl::DoLogText(const wxString& msg) |
1e6feb95 | 1090 | { |
bc73d5ae | 1091 | m_pTextCtrl->AppendText(msg + wxS('\n')); |
1e6feb95 VZ |
1092 | } |
1093 | ||
f561a4e0 | 1094 | #endif // wxUSE_LOG && wxUSE_TEXTCTRL |