]> git.saurik.com Git - wxWidgets.git/blob - docs/latex/wx/log.tex
clarified global and local config files behavior
[wxWidgets.git] / docs / latex / wx / log.tex
1 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2 %% Name: log.tex
3 %% Purpose: wxLog and related classes documentation
4 %% Author: Vadim Zeitlin
5 %% Modified by:
6 %% Created: some time ago
7 %% RCS-ID: $Id$
8 %% Copyright: (c) 1997-2001 Vadim Zeitlin
9 %% License: wxWindows license
10 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11
12 \section{\class{wxLog}}\label{wxlog}
13
14 wxLog class defines the interface for the {\it log targets} used by wxWidgets
15 logging functions as explained in the \helpref{wxLog overview}{wxlogoverview}.
16 The only situations when you need to directly use this class is when you want
17 to derive your own log target because the existing ones don't satisfy your
18 needs. Another case is if you wish to customize the behaviour of the standard
19 logging classes (all of which respect the wxLog settings): for example, set
20 which trace messages are logged and which are not or change (or even remove
21 completely) the timestamp on the messages.
22
23 Otherwise, it is completely hidden behind the {\it wxLogXXX()} functions and
24 you may not even know about its existence.
25
26 See \helpref{log overview}{wxlogoverview} for the descriptions of wxWidgets
27 logging facilities.
28
29 \wxheading{Derived from}
30
31 No base class
32
33 \wxheading{Include files}
34
35 <wx/log.h>
36
37 \latexignore{\rtfignore{\wxheading{Function groups}}}
38
39 \membersection{Global functions}
40
41 The functions in this section work with and manipulate the active log target.
42 The \helpref{OnLog()}{wxlogonlog} is called by the {\it wxLogXXX()} functions
43 and invokes the \helpref{DoLog()}{wxlogdolog} of the active log target if any.
44 Get/Set methods are used to install/query the current active target and,
45 finally, \helpref{DontCreateOnDemand()}{wxlogdontcreateondemand} disables the
46 automatic creation of a standard log target if none actually exists. It is
47 only useful when the application is terminating and shouldn't be used in other
48 situations because it may easily lead to a loss of messages.
49
50 \helpref{OnLog}{wxlogonlog}\\
51 \helpref{GetActiveTarget}{wxloggetactivetarget}\\
52 \helpref{SetActiveTarget}{wxlogsetactivetarget}\\
53 \helpref{DontCreateOnDemand}{wxlogdontcreateondemand}\\
54 \helpref{Suspend}{wxlogsuspend}\\
55 \helpref{Resume}{wxlogresume}
56
57 \membersection{Logging functions}\label{loggingfunctions}
58
59 There are two functions which must be implemented by any derived class to
60 actually process the log messages: \helpref{DoLog}{wxlogdolog} and
61 \helpref{DoLogString}{wxlogdologstring}. The second function receives a string
62 which just has to be output in some way and the easiest way to write a new log
63 target is to override just this function in the derived class. If more control
64 over the output format is needed, then the first function must be overridden
65 which allows to construct custom messages depending on the log level or even
66 do completely different things depending on the message severity (for example,
67 throw away all messages except warnings and errors, show warnings on the
68 screen and forward the error messages to the user's (or programmer's) cell
69 phone - maybe depending on whether the timestamp tells us if it is day or
70 night in the current time zone).
71
72 There also functions to support message buffering. Why are they needed?
73 Some of wxLog implementations, most notably the standard wxLogGui class,
74 buffer the messages (for example, to avoid showing the user a zillion of modal
75 message boxes one after another -- which would be really annoying).
76 \helpref{Flush()}{wxlogflush} shows them all and clears the buffer contents.
77 This function doesn't do anything if the buffer is already empty.
78
79 \helpref{Flush}{wxlogflush}\\
80 \helpref{FlushActive}{wxlogflushactive}
81
82 \membersection{Customization}\label{wxlogcustomization}
83
84 The functions below allow some limited customization of wxLog behaviour
85 without writing a new log target class (which, aside of being a matter of
86 several minutes, allows you to do anything you want).
87
88 The verbose messages are the trace messages which are not disabled in the
89 release mode and are generated by \helpref{wxLogVerbose}{wxlogverbose}. They
90 are not normally shown to the user because they present little interest, but
91 may be activated, for example, in order to help the user find some program
92 problem.
93
94 As for the (real) trace messages, their handling depends on the settings of
95 the (application global) {\it trace mask}. There are two ways to specify it:
96 either by using \helpref{SetTraceMask}{wxlogsettracemask} and
97 \helpref{GetTraceMask}{wxloggettracemask} and using
98 \helpref{wxLogTrace}{wxlogtrace} which takes an integer mask or by using
99 \helpref{AddTraceMask}{wxlogaddtracemask} for string trace masks.
100
101 The difference between bit-wise and string trace masks is that a message using
102 integer trace mask will only be logged if all bits of the mask are set in the
103 current mask while a message using string mask will be logged simply if the
104 mask had been added before to the list of allowed ones.
105
106 For example,
107
108 \begin{verbatim}
109 // wxTraceOleCalls is one of standard bit masks
110 wxLogTrace(wxTraceRefCount | wxTraceOleCalls, "Active object ref count: %d", nRef);
111 \end{verbatim}
112 will do something only if the current trace mask contains both
113 {\tt wxTraceRefCount} and {\tt wxTraceOle}, but
114
115 \begin{verbatim}
116 // wxTRACE_OleCalls is one of standard string masks
117 wxLogTrace(wxTRACE_OleCalls, "IFoo::Bar() called");
118 \end{verbatim}
119
120 will log the message if it was preceded by
121
122 \begin{verbatim}
123 wxLog::AddTraceMask(wxTRACE_OleCalls);
124 \end{verbatim}
125
126 Using string masks is simpler and allows to easily add custom ones, so this is
127 the preferred way of working with trace messages. The integer trace mask is
128 kept for compatibility and for additional (but very rarely needed) flexibility
129 only.
130
131 The standard trace masks are given in \helpref{wxLogTrace}{wxlogtrace}
132 documentation.
133
134 Finally, the {\it wxLog::DoLog()} function automatically prepends a time stamp
135 to all the messages. The format of the time stamp may be changed: it can be
136 any string with \% specifications fully described in the documentation of the
137 standard {\it strftime()} function. For example, the default format is
138 "[\%d/\%b/\%y \%H:\%M:\%S] " which gives something like "[17/Sep/98 22:10:16] "
139 (without quotes) for the current date. Setting an empty string as the time
140 format disables timestamping of the messages completely.
141
142 {\bf NB:} Timestamping is disabled for Visual C++ users in debug builds by
143 default because otherwise it would be impossible to directly go to the line
144 from which the log message was generated by simply clicking in the debugger
145 window on the corresponding error message. If you wish to enable it, please use
146 \helpref{SetTimestamp}{wxlogsettimestamp} explicitly.
147
148 \helpref{AddTraceMask}{wxlogaddtracemask}\\
149 \helpref{RemoveTraceMask}{wxlogremovetracemask}\\
150 \helpref{ClearTraceMasks}{wxlogcleartracemasks}\\
151 \helpref{GetTraceMasks}{wxloggettracemasks}\\
152 \helpref{IsAllowedTraceMask}{wxlogisallowedtracemask}\\
153 \helpref{SetVerbose}{wxlogsetverbose}\\
154 \helpref{GetVerbose}{wxloggetverbose}\\
155 \helpref{SetTimestamp}{wxlogsettimestamp}\\
156 \helpref{GetTimestamp}{wxloggettimestamp}\\
157 \helpref{SetTraceMask}{wxlogsettracemask}\\
158 \helpref{GetTraceMask}{wxloggettracemask}\\
159 \helpref{SetRepetitionCounting}{wxlogsetrepetitioncounting}\\
160 \helpref{GetRepetitionCounting}{wxloggetrepetitioncounting}
161
162 %%%%% MEMBERS HERE %%%%%
163 \helponly{\insertatlevel{2}{
164
165 \wxheading{Members}
166
167 }}
168
169 \membersection{wxLog::AddTraceMask}\label{wxlogaddtracemask}
170
171 \func{static void}{AddTraceMask}{\param{const wxString\& }{mask}}
172
173 Add the {\it mask} to the list of allowed masks for
174 \helpref{wxLogTrace}{wxlogtrace}.
175
176 \wxheading{See also}
177
178 \helpref{RemoveTraceMask}{wxlogremovetracemask}
179 \helpref{GetTraceMasks}{wxloggettracemasks}
180
181 \membersection{wxLog::ClearTraceMasks}\label{wxlogcleartracemasks}
182
183 \func{static void}{ClearTraceMasks}{\void}
184
185 Removes all trace masks previously set with
186 \helpref{AddTraceMask}{wxlogaddtracemask}.
187
188 \wxheading{See also}
189
190 \helpref{RemoveTraceMask}{wxlogremovetracemask}
191
192 \membersection{wxLog::GetTraceMasks}\label{wxloggettracemasks}
193
194 \func{static const wxArrayString \&}{GetTraceMasks}{\void}
195
196 Returns the currently allowed list of string trace masks.
197
198 \wxheading{See also}
199
200 \helpref{AddTraceMask}{wxlogaddtracemask}.
201
202 \membersection{wxLog::OnLog}\label{wxlogonlog}
203
204 \func{static void}{OnLog}{\param{wxLogLevel }{ level}, \param{const wxString\& }{ message}}
205
206 Forwards the message at specified level to the {\it DoLog()} function of the
207 active log target if there is any, does nothing otherwise.
208
209 \membersection{wxLog::GetActiveTarget}\label{wxloggetactivetarget}
210
211 \func{static wxLog *}{GetActiveTarget}{\void}
212
213 Returns the pointer to the active log target (may be NULL).
214
215 \membersection{wxLog::SetActiveTarget}\label{wxlogsetactivetarget}
216
217 \func{static wxLog *}{SetActiveTarget}{\param{wxLog * }{ logtarget}}
218
219 Sets the specified log target as the active one. Returns the pointer to the
220 previous active log target (may be NULL). To suppress logging use a new
221 instance of wxLogNull not NULL. If the active log target is set to NULL a
222 new default log target will be created when logging occurs.
223
224 \membersection{wxLog::Suspend}\label{wxlogsuspend}
225
226 \func{static void}{Suspend}{\void}
227
228 Suspends the logging until \helpref{Resume}{wxlogresume} is called. Note that
229 the latter must be called the same number of times as the former to undo it,
230 i.e. if you call Suspend() twice you must call Resume() twice as well.
231
232 Note that suspending the logging means that the log sink won't be be flushed
233 periodically, it doesn't have any effect if the current log target does the
234 logging immediately without waiting for \helpref{Flush}{wxlogflush} to be
235 called (the standard GUI log target only shows the log dialog when it is
236 flushed, so Suspend() works as expected with it).
237
238 \wxheading{See also}
239
240 \helpref{Resume}{wxlogresume},\\
241 \helpref{wxLogNull}{wxlogoverview}
242
243 \membersection{wxLog::Resume}\label{wxlogresume}
244
245 \func{static void}{Resume}{\void}
246
247 Resumes logging previously suspended by a call to
248 \helpref{Suspend}{wxlogsuspend}. All messages logged in the meanwhile will be
249 flushed soon.
250
251 \membersection{wxLog::DoLog}\label{wxlogdolog}
252
253 \func{virtual void}{DoLog}{\param{wxLogLevel }{level}, \param{const wxString\& }{msg}, \param{time\_t }{timestamp}}
254
255 Called to process the message of the specified severity. {\it msg} is the text
256 of the message as specified in the call of {\it wxLogXXX()} function which
257 generated it and {\it timestamp} is the moment when the message was generated.
258
259 The base class version prepends the timestamp to the message, adds a prefix
260 corresponding to the log level and then calls
261 \helpref{DoLogString}{wxlogdologstring} with the resulting string.
262
263 \membersection{wxLog::DoLogString}\label{wxlogdologstring}
264
265 \func{virtual void}{DoLogString}{\param{const wxString\& }{msg}, \param{time\_t }{timestamp}}
266
267 Called to log the specified string. The timestamp is already included in the
268 string but still passed to this function.
269
270 A simple implementation may just send the string to {\tt stdout} or, better,
271 {\tt stderr}.
272
273 \membersection{wxLog::DontCreateOnDemand}\label{wxlogdontcreateondemand}
274
275 \func{static void}{DontCreateOnDemand}{\void}
276
277 Instructs wxLog to not create new log targets on the fly if there is none
278 currently. (Almost) for internal use only: it is supposed to be called by the
279 application shutdown code.
280
281 Note that this function also calls
282 \helpref{ClearTraceMasks}{wxlogcleartracemasks}.
283
284 \membersection{wxLog::Flush}\label{wxlogflush}
285
286 \func{virtual void}{Flush}{\void}
287
288 Shows all the messages currently in buffer and clears it. If the buffer
289 is already empty, nothing happens.
290
291 \membersection{wxLog::FlushActive}\label{wxlogflushactive}
292
293 \func{static void}{FlushActive}{\void}
294
295 Flushes the current log target if any, does nothing if there is none.
296
297 \wxheading{See also}
298
299 \helpref{Flush}{wxlogflush}
300
301 \membersection{wxLog::SetVerbose}\label{wxlogsetverbose}
302
303 \func{static void}{SetVerbose}{\param{bool }{ verbose = true}}
304
305 Activates or deactivates verbose mode in which the verbose messages are
306 logged as the normal ones instead of being silently dropped.
307
308 \membersection{wxLog::GetVerbose}\label{wxloggetverbose}
309
310 \func{static bool}{GetVerbose}{\void}
311
312 Returns whether the verbose mode is currently active.
313
314 \membersection{wxLog::SetLogLevel}\label{wxlogsetloglevel}
315
316 \func{static void}{SetLogLevel}{\param{wxLogLevel }{ logLevel}}
317
318 Specifies that log messages with $level > logLevel$ should be ignored
319 and not sent to the active log target.
320
321 \membersection{wxLog::GetLogLevel}\label{wxloggetloglevel}
322
323 \func{static wxLogLevel}{GetLogLevel}{\void}
324
325 Returns the current log level limit.
326
327 \membersection{wxLog::SetRepetitionCounting}\label{wxlogsetrepetitioncounting}
328
329 \func{static void}{SetRepetitionCounting}{\param{bool }{ repetCounting = true}}
330
331 Enables logging mode in which a log message is logged once, and in case exactly
332 the same message successively repeats one or more times, only the number of
333 repetitions is logged.
334
335 \membersection{wxLog::GetRepetitionCounting}\label{wxloggetrepetitioncounting}
336
337 \func{static bool}{GetRepetitionCounting}{\void}
338
339 Returns whether the repetition counting mode is enabled.
340
341
342 \membersection{wxLog::SetTimestamp}\label{wxlogsettimestamp}
343
344 \func{void}{SetTimestamp}{\param{const wxStrgin\&}{ format}}
345
346 Sets the timestamp format prepended by the default log targets to all
347 messages. The string may contain any normal characters as well as \%
348 prefixed format specificators, see {\it strftime()} manual for details.
349 Passing a NULL value (not empty string) to this function disables message timestamping.
350
351 \membersection{wxLog::GetTimestamp}\label{wxloggettimestamp}
352
353 \constfunc{const wxString\&}{GetTimestamp}{\void}
354
355 Returns the current timestamp format string.
356
357 \membersection{wxLog::SetTraceMask}\label{wxlogsettracemask}
358
359 \func{static void}{SetTraceMask}{\param{wxTraceMask }{ mask}}
360
361 Sets the trace mask, see \helpref{Customization}{wxlogcustomization}
362 section for details.
363
364 \membersection{wxLog::GetTraceMask}\label{wxloggettracemask}
365
366 Returns the current trace mask, see \helpref{Customization}{wxlogcustomization} section
367 for details.
368
369 \membersection{wxLog::IsAllowedTraceMask}\label{wxlogisallowedtracemask}
370
371 \func{static bool}{IsAllowedTraceMask}{\param{const wxString\& }{mask}}
372
373 Returns true if the {\it mask} is one of allowed masks for
374 \helpref{wxLogTrace}{wxlogtrace}.
375
376 See also: \helpref{AddTraceMask}{wxlogaddtracemask},
377 \helpref{RemoveTraceMask}{wxlogremovetracemask}
378
379 \membersection{wxLog::RemoveTraceMask}\label{wxlogremovetracemask}
380
381 \func{static void}{RemoveTraceMask}{\param{const wxString\& }{mask}}
382
383 Remove the {\it mask} from the list of allowed masks for
384 \helpref{wxLogTrace}{wxlogtrace}.
385
386 See also: \helpref{AddTraceMask}{wxlogaddtracemask}
387
388 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% wxLogChain %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
389
390 \section{\class{wxLogChain}}\label{wxlogchain}
391
392 This simple class allows to chain log sinks, that is to install a new sink but
393 keep passing log messages to the old one instead of replacing it completely as
394 \helpref{SetActiveTarget}{wxlogsetactivetarget} does.
395
396 It is especially useful when you want to divert the logs somewhere (for
397 example to a file or a log window) but also keep showing the error messages
398 using the standard dialogs as \helpref{wxLogGui}{wxlogoverview} does by default.
399
400 Example of usage:
401
402 \begin{verbatim}
403 wxLogChain *logChain = new wxLogChain(new wxLogStderr);
404
405 // all the log messages are sent to stderr and also processed as usually
406 ...
407
408 // don't delete logChain directly as this would leave a dangling
409 // pointer as active log target, use SetActiveTarget() instead
410 delete wxLog::SetActiveTarget(...something else or NULL...);
411
412 \end{verbatim}
413
414 \wxheading{Derived from}
415
416 \helpref{wxLog}{wxlog}
417
418 \wxheading{Include files}
419
420 <wx/log.h>
421
422 \latexignore{\rtfignore{\wxheading{Members}}}
423
424 \membersection{wxLogChain::wxLogChain}\label{wxlogchainctor}
425
426 \func{}{wxLogChain}{\param{wxLog *}{logger}}
427
428 Sets the specified {\tt logger} (which may be {\tt NULL}) as the default log
429 target but the log messages are also passed to the previous log target if any.
430
431 \membersection{wxLogChain::\destruct{wxLogChain}}\label{wxlogchaindtor}
432
433 \func{}{\destruct{wxLogChain}}{\void}
434
435 Destroys the previous log target.
436
437 \membersection{wxLogChain::DetachOldLog}\label{wxlogchaindetacholdlog}
438
439 \func{void}{DetachOldLog}{\void}
440
441 Detaches the old log target so it won't be destroyed when the wxLogChain object
442 is destroyed.
443
444 \membersection{wxLogChain::GetOldLog}\label{wxlogchaingetoldlog}
445
446 \constfunc{wxLog *}{GetOldLog}{\void}
447
448 Returns the pointer to the previously active log target (which may be {\tt
449 NULL}).
450
451 \membersection{wxLogChain::IsPassingMessages}\label{wxlogchainispassingmessages}
452
453 \constfunc{bool}{IsPassingMessages}{\void}
454
455 Returns {\tt true} if the messages are passed to the previously active log
456 target (default) or {\tt false} if \helpref{PassMessages}{wxlogchainpassmessages}
457 had been called.
458
459 \membersection{wxLogChain::PassMessages}\label{wxlogchainpassmessages}
460
461 \func{void}{PassMessages}{\param{bool }{passMessages}}
462
463 By default, the log messages are passed to the previously active log target.
464 Calling this function with {\tt false} parameter disables this behaviour
465 (presumably temporarily, as you shouldn't use wxLogChain at all otherwise) and
466 it can be reenabled by calling it again with {\it passMessages} set to {\tt
467 true}.
468
469 \membersection{wxLogChain::SetLog}\label{wxlogchainsetlog}
470
471 \func{void}{SetLog}{\param{wxLog *}{logger}}
472
473 Sets another log target to use (may be {\tt NULL}). The log target specified
474 in the \helpref{constructor}{wxlogchainctor} or in a previous call to
475 this function is deleted.
476
477 This doesn't change the old log target value (the one the messages are
478 forwarded to) which still remains the same as was active when wxLogChain
479 object was created.
480
481 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% wxLogGui %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
482
483 \section{\class{wxLogGui}}\label{wxloggui}
484
485 This is the default log target for the GUI wxWidgets applications. It is passed
486 to \helpref{wxLog::SetActiveTarget}{wxlogsetactivetarget} at the program
487 startup and is deleted by wxWidgets during the program shut down.
488
489 \wxheading{Derived from}
490
491 \helpref{wxLog}{wxlog}
492
493 \wxheading{Include files}
494
495 <wx/log.h>
496
497 \latexignore{\rtfignore{\wxheading{Members}}}
498
499 \membersection{wxLogGui::wxLogGui}\label{wxlogguictor}
500
501 \func{}{wxLogGui}{\void}
502
503 Default constructor.
504
505 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% wxLogNull %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
506
507 \section{\class{wxLogNull}}\label{wxlognull}
508
509 This class allows to temporarily suspend logging. All calls to the log
510 functions during the life time of an object of this class are just ignored.
511
512 In particular, it can be used to suppress the log messages given by wxWidgets
513 itself but it should be noted that it is rarely the best way to cope with this
514 problem as {\bf all} log messages are suppressed, even if they indicate a
515 completely different error than the one the programmer wanted to suppress.
516
517 For instance, the example of the overview:
518
519 {\small
520 \begin{verbatim}
521 wxFile file;
522
523 // wxFile.Open() normally complains if file can't be opened, we don't want it
524 {
525 wxLogNull logNo;
526 if ( !file.Open("bar") )
527 ... process error ourselves ...
528 } // ~wxLogNull called, old log sink restored
529
530 wxLogMessage("..."); // ok
531 \end{verbatim}
532 }%
533
534 would be better written as:
535
536 {\small
537 \begin{verbatim}
538 wxFile file;
539
540 // don't try to open file if it doesn't exist, we are prepared to deal with
541 // this ourselves - but all other errors are not expected
542 if ( wxFile::Exists("bar") )
543 {
544 // gives an error message if the file couldn't be opened
545 file.Open("bar");
546 }
547 else
548 {
549 ...
550 }
551 \end{verbatim}
552 }%
553
554 \wxheading{Derived from}
555
556 \helpref{wxLog}{wxlog}
557
558 \wxheading{Include files}
559
560 <wx/log.h>
561
562 \latexignore{\rtfignore{\wxheading{Members}}}
563
564 \membersection{wxLogNull::wxLogNull}\label{wxlognullctor}
565
566 \func{}{wxLogNull}{\void}
567
568 Suspends logging.
569
570 \membersection{wxLogNull::\destruct{wxLogNull}}\label{wxlognulldtor}
571
572 Resumes logging.
573
574 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%% wxLogInterposer %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
575
576 \section{\class{wxLogInterposer}}\label{wxloginterposer}
577
578 A special version of \helpref{wxLogChain}{wxlogchain} which uses itself as the
579 new log target. It forwards log messages to the previously installed one in addition to
580 processing them itself.
581
582 Unlike \helpref{wxLogChain}{wxlogchain} which is usually used directly as is,
583 this class must be derived from to implement \helpref{DoLog}{wxlogdolog}
584 and/or \helpref{DoLogString}{wxlogdologstring} methods.
585
586 wxLogInterposer destroys the previous log target in its destructor. If you
587 don't want this to happen, use wxLogInterposerTemp instead.
588
589 \wxheading{Derived from}
590
591 \helpref{wxLogChain}{wxlogchain}
592
593 \wxheading{Include files}
594
595 <wx/log.h>
596
597 \latexignore{\rtfignore{\wxheading{Members}}}
598
599 \membersection{wxLogInterposer::wxLogInterposer}\label{wxloginterposerctor}
600
601 The default constructor installs this object as the current active log target.
602
603 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%% wxLogInterposerTemp %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
604
605 \section{\class{wxLogInterposerTemp}}\label{wxloginterposertemp}
606
607 A special version of \helpref{wxLogChain}{wxlogchain} which uses itself as the
608 new log target. It forwards log messages to the previously installed one in addition to
609 processing them itself. Unlike \helpref{wxLogInterposer}{wxloginterposer}, it doesn't
610 delete the old target which means it can be used to temporarily redirect log output.
611
612 As per wxLogInterposer, this class must be derived from to implement \helpref{DoLog}{wxlogdolog}
613 and/or \helpref{DoLogString}{wxlogdologstring} methods.
614
615 \wxheading{Derived from}
616
617 \helpref{wxLogChain}{wxlogchain}
618
619 \wxheading{Include files}
620
621 <wx/log.h>
622
623 \latexignore{\rtfignore{\wxheading{Members}}}
624
625 \membersection{wxLogInterposerTemp::wxLogInterposerTemp}\label{wxloginterposertempctor}
626
627 The default constructor installs this object as the current active log target.
628
629 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% wxLogStderr %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
630
631 \section{\class{wxLogStderr}}\label{wxlogstderr}
632
633 This class can be used to redirect the log messages to a C file stream (not to
634 be confused with C++ streams). It is the default log target for the non-GUI
635 wxWidgets applications which send all the output to {\tt stderr}.
636
637 \wxheading{Derived from}
638
639 \helpref{wxLog}{wxlog}
640
641 \wxheading{Include files}
642
643 <wx/log.h>
644
645 \wxheading{See also}
646
647 \helpref{wxLogStream}{wxlogstream}
648
649 \latexignore{\rtfignore{\wxheading{Members}}}
650
651 \membersection{wxLogStderr::wxLogStderr}\label{wxlogstderrctor}
652
653 \func{}{wxLogStderr}{\param{FILE }{*fp = NULL}}
654
655 Constructs a log target which sends all the log messages to the given
656 {\tt FILE}. If it is {\tt NULL}, the messages are sent to {\tt stderr}.
657
658 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% wxLogStream %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
659
660 \section{\class{wxLogStream}}\label{wxlogstream}
661
662 This class can be used to redirect the log messages to a C++ stream.
663
664 Please note that this class is only available if wxWidgets was compiled with
665 the standard iostream library support ({\tt wxUSE\_STD\_IOSTREAM} must be on).
666
667 \wxheading{Derived from}
668
669 \helpref{wxLog}{wxlog}
670
671 \wxheading{Include files}
672
673 <wx/log.h>
674
675 \wxheading{See also}
676
677 \helpref{wxLogStderr}{wxlogstderr},\\
678 \helpref{wxStreamToTextRedirector}{wxstreamtotextredirector}
679
680 \latexignore{\rtfignore{\wxheading{Members}}}
681
682 \membersection{wxLogStream::wxLogStream}\label{wxlogstreamctor}
683
684 \func{}{wxLogStream}{\param{std::ostream }{*ostr = NULL}}
685
686 Constructs a log target which sends all the log messages to the given
687 output stream. If it is {\tt NULL}, the messages are sent to {\tt cerr}.
688
689 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% wxLogTextCtrl %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
690
691 \section{\class{wxLogTextCtrl}}\label{wxlogtextctrl}
692
693 Using these target all the log messages can be redirected to a text control.
694 The text control must have been created with {\tt wxTE\_MULTILINE} style by the
695 caller previously.
696
697 \wxheading{Derived from}
698
699 \helpref{wxLog}{wxlog}
700
701 \wxheading{Include files}
702
703 <wx/log.h>
704
705 \wxheading{See also}
706
707 \helpref{wxTextCtrl}{wxtextctrl},\\
708 \helpref{wxStreamToTextRedirector}{wxstreamtotextredirector}
709
710 \latexignore{\rtfignore{\wxheading{Members}}}
711
712 \membersection{wxLogTextCtrl::wxLogTextCtrl}\label{wxlogtextctrlctor}
713
714 \func{}{wxLogTextCtrl}{\param{wxTextCtrl }{*textctrl}}
715
716 Constructs a log target which sends all the log messages to the given text
717 control. The {\it textctrl} parameter cannot be {\tt NULL}.
718
719 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% wxLogWindow %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
720
721 \section{\class{wxLogWindow}}\label{wxlogwindow}
722
723 This class represents a background log window: to be precise, it collects all
724 log messages in the log frame which it manages but also passes them on to the
725 log target which was active at the moment of its creation. This allows, for
726 example, to show all the log messages in a frame but still continue to process
727 them normally by showing the standard log dialog.
728
729 \wxheading{Derived from}
730
731 \helpref{wxLogInterposer}{wxloginterposer}
732
733 \wxheading{Include files}
734
735 <wx/log.h>
736
737 \wxheading{See also}
738
739 \helpref{wxLogTextCtrl}{wxlogtextctrl}
740
741 \latexignore{\rtfignore{\wxheading{Members}}}
742
743 \membersection{wxLogWindow::wxLogWindow}\label{wxlogwindowctor}
744
745 \func{}{wxLogWindow}{\param{wxFrame }{*parent}, \param{const wxChar }{*title}, \param{bool }{show = {\tt true}}, \param{bool }{passToOld = {\tt true}}}
746
747 Creates the log frame window and starts collecting the messages in it.
748
749 \wxheading{Parameters}
750
751 \docparam{parent}{The parent window for the log frame, may be {\tt NULL}}
752
753 \docparam{title}{The title for the log frame}
754
755 \docparam{show}{{\tt true} to show the frame initially (default), otherwise
756 \helpref{wxLogWindow::Show}{wxlogwindowshow} must be called later.}
757
758 \docparam{passToOld}{{\tt true} to process the log messages normally in addition to
759 logging them in the log frame (default), {\tt false} to only log them in the
760 log frame.}
761
762 \membersection{wxLogWindow::Show}\label{wxlogwindowshow}
763
764 \func{void}{Show}{\param{bool }{show = {\tt true}}}
765
766 Shows or hides the frame.
767
768 \membersection{wxLogWindow::GetFrame}\label{wxlogwindowgetframe}
769
770 \constfunc{wxFrame *}{GetFrame}{\void}
771
772 Returns the associated log frame window. This may be used to position or resize
773 it but use \helpref{wxLogWindow::Show}{wxlogwindowshow} to show or hide it.
774
775 \membersection{wxLogWindow::OnFrameCreate}\label{wxlogwindowonframecreate}
776
777 \func{virtual void}{OnFrameCreate}{\param{wxFrame }{*frame}}
778
779 Called immediately after the log frame creation allowing for
780 any extra initializations.
781
782 \membersection{wxLogWindow::OnFrameClose}\label{wxlogwindowonframeclose}
783
784 \func{virtual bool}{OnFrameClose}{\param{wxFrame }{*frame}}
785
786 Called if the user closes the window interactively, will not be
787 called if it is destroyed for another reason (such as when program
788 exits).
789
790 Return {\tt true} from here to allow the frame to close, {\tt false} to
791 prevent this from happening.
792
793 \wxheading{See also}
794
795 \helpref{wxLogWindow::OnFrameDelete}{wxlogwindowonframedelete}
796
797 \membersection{wxLogWindow::OnFrameDelete}\label{wxlogwindowonframedelete}
798
799 \func{virtual void}{OnFrameDelete}{\param{wxFrame }{*frame}}
800
801 Called right before the log frame is going to be deleted: will
802 always be called unlike \helpref{OnFrameClose()}{wxlogwindowonframeclose}.
803