]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/log.tex
1. added code to dyntbar to allow bitmap loading from windows resources
[wxWidgets.git] / docs / latex / wx / log.tex
CommitLineData
9ee2d31c
VZ
1\section{\class{wxLog}}\label{wxlog}
2
3wxLog class defines the interface for the {\it log targets} used by wxWindows
4logging functions as explained in the \helpref{wxLog overview}{wxlogoverview}.
5The only situations when you need to directly use this class is when you want
6to derive your own log target because the existing ones don't satisfy your
7needs. Another case is if you wish to customize the behaviour of the standard
8logging classes (all of which respect the wxLog settings): for example, set
9which trace messages are logged and which are not or change (or even remove
10completely) the timestamp on the messages.
11
12Otherwise, it is completely hidden behind the {\it wxLogXXX()} functions and
13you may not even know about its existence.
14
15See \helpref{log overview}{wxlogoverview} for the descriptions of wxWindows
16logging facilities.
17
18\wxheading{Derived from}
19
20No base class
21
954b8ae6
JS
22\wxheading{Include files}
23
24<wx/log.h>
25
9ee2d31c
VZ
26\latexignore{\rtfignore{\wxheading{Function groups}}}
27
28\membersection{Static functions}
29
30The functions in this section work with and manipulate the active log target.
99f09bc1 31The {\it OnLog()} is called by the {\it wxLogXXX()} functions and invokes the
9ee2d31c
VZ
32{\it DoLog()} of the active log target if any. Get/Set methods are used to
33install/query the current active target and, finally, {\it
34DontCreateOnDemand()} disables the automatic creation of a standard log target
35if none actually exists. It is only useful when the application is terminating
36and shouldn't be used in other situations because it may easily lead to a loss
37of messages.
38
39\helpref{OnLog}{wxlogonlog}\\
40\helpref{GetActiveTarget}{wxloggetactivetarget}\\
42ff6409 41\helpref{SetActiveTarget}{wxlogsetactivetarget}\\
9ee2d31c
VZ
42\helpref{DontCreateOnDemand}{wxlogdontcreateondemand}
43
44\membersection{Message buffering}
45
46Some of wxLog implementations, most notably the standard
6fb26ea3 47wxLogGui class, buffer the messages (for example, to avoid
9ee2d31c
VZ
48showing the user a zillion of modal message boxes one after another - which
49would be really annoying). {\it Flush()} shows them all and clears the buffer
50contents. Although this function doesn't do anything if the buffer is already
51empty, {\it HasPendingMessages()} is also provided which allows to explicitly
52verify it.
53
54\helpref{Flush}{wxlogflush}\\
55\helpref{HasPendingMessages}{haspendingmessages}
56
42ff6409 57\membersection{Customization}\label{wxlogcustomization}
9ee2d31c
VZ
58
59The functions below allow some limited customization of wxLog behaviour
60without writing a new log target class (which, aside of being a matter of
61several minutes, allows you to do anything you want).
62
63The verbose messages are the trace messages which are not disabled in the
64release mode and are generated by {\it wxLogVerbose()}. They are not normally
65shown to the user because they present little interest, but may be activated,
66for example, in order to help the user find some program problem.
67
68As for the (real) trace messages, they come in different kinds:
42ff6409 69
9ee2d31c
VZ
70\begin{itemize}\itemsep=0pt
71\item{wxTraceMemAlloc} for the messages about creating and deleting objects
72\item{wxTraceMessages} for tracing the windowing system messages/events
73\item{wxTraceResAlloc} for allocating and releasing the system ressources
74\item{wxTraceRefCount} for reference counting related messages
75\item{wxTraceOleCalls} for the OLE (or COM) method invocations (wxMSW only)
76\item{other} the remaining bits are free for user-defined trace levels
77\end{itemize}
78
79The trace mask is a bit mask which tells which (if any) of these trace
80messages are going to be actually logged. For the trace message to appear
99f09bc1 81somewhere, all the bits in the mask used in the call to {\it wxLogTrace()}
9ee2d31c
VZ
82function must be set in the current trace mask. For example,
83\begin{verbatim}
84wxLogTrace(wxTraceRefCount | wxTraceOle, "Active object ref count: %d", nRef);
85\end{verbatim}
86will do something only if the current trace mask contains both wxTraceRefCount
87and wxTraceOle.
88
89Finally, the {\it wxLog::DoLog()} function automatically prepends a time stamp
90to all the messages. The format of the time stamp may be changed: it can be
91any string with \% specificators fully described in the documentation of the
92standard {\it strftime()} function. For example, the default format is
93"[\%d/\%b/\%y \%H:\%M:\%S] " which gives something like "[17/Sep/98 22:10:16] "
94(without quotes) for the current date. Setting an empty string as the time
95format disables timestamping of the messages completely.
96
97\helpref{SetVerbose}{wxlogsetverbose}\\
98\helpref{GetVerbose}{wxloggetverbose}\\
99\helpref{SetTimeStampFormat}{wxlogsettimestampformat}\\
100\helpref{GetTimeStampFormat}{wxloggettimestampformat}\\
101\helpref{SetTraceMask}{wxlogsettracemask}\\
102\helpref{GetTraceMask}{wxloggettracemask}
103
104%%%%% MEMBERS HERE %%%%%
105\helponly{\insertatlevel{2}{
106
107\wxheading{Members}
108
109}}
110
111\membersection{wxLog::OnLog}\label{wxlogonlog}
112
113\func{static void}{OnLog}{\param{wxLogLevel }{ level}, \param{const char * }{ message}}
114
115Forwards the message at specified level to the {\it DoLog()} function of the
116active log target if there is any, does nothing otherwise.
117
118\membersection{wxLog::GetActiveTarget}\label{wxloggetactivetarget}
119
120\func{static wxLog *}{GetActiveTarget}{\void}
121
122Returns the pointer to the active log target (may be NULL).
123
124\membersection{wxLog::SetActiveTarget}\label{wxlogsetactivetarget}
125
126\func{static wxLog *}{SetActiveTarget}{\param{wxLog * }{ logtarget}}
127
128Sets the specified log target as the active one. Returns the pointer to the
129previous active log target (may be NULL).
130
131\membersection{wxLog::DontCreateOnDemand}\label{wxlogdontcreateondemand}
132
133\func{static void}{DontCreateOnDemand}{\void}
134
135Instructs wxLog to not create new log targets on the fly if there is none
136currently. (Almost) for internal use only.
137
42ff6409 138\membersection{wxLog::Flush}\label{wxlogflush}
9ee2d31c
VZ
139
140\func{virtual void}{Flush}{\void}
141
142Shows all the messages currently in buffer and clears it. If the buffer
143is already empty, nothing happens.
144
42ff6409 145\membersection{wxLog::HasPendingMessages}\label{haspendingmessages}
9ee2d31c
VZ
146
147\constfunc{bool}{HasPendingMessages}{\void}
148
149Returns true if there are any messages in the buffer (not yet shown to the
150user). (Almost) for internal use only.
151
42ff6409 152\membersection{wxLog::SetVerbose}\label{wxlogsetverbose}
9ee2d31c
VZ
153
154\func{void}{SetVerbose}{\param{bool }{ verbose = TRUE}}
155
156Activates or desactivates verbose mode in which the verbose messages are
157logged as the normal ones instead of being silently dropped.
158
42ff6409 159\membersection{wxLog::GetVerbose}\label{wxloggetverbose}
9ee2d31c
VZ
160
161\constfunc{bool}{GetVerbose}{\void}
162
163Returns whether the verbose mode is currently active.
164
42ff6409 165\membersection{wxLog::SetTimeStampFormat}\label{wxlogsettimestampformat}
9ee2d31c
VZ
166
167\func{void}{SetTimeStampFormat}{\param{const char * }{ format}}
168
169Sets the timestamp format prepended by the default log targets to all
170messages. The string may contain any normal characters as well as \%
171prefixed format specificators, see {\it strftime()} manual for details.
172Passing an empty string to this function disables message timestamping.
173
42ff6409 174\membersection{wxLog::GetTimeStampFormat}\label{wxloggettimestampformat}
9ee2d31c
VZ
175
176\constfunc{const char *}{GetTimeStampFormat}{\void}
177
178Returns the current timestamp format string.
179
42ff6409 180\membersection{wxLog::SetTraceMask}\label{wxlogsettracemask}
9ee2d31c
VZ
181
182\func{static void}{SetTraceMask}{\param{wxTraceMask }{ mask}}
183
184Sets the trace mask, see \helpref{Customization}{wxlogcustomization}
185section for details.
186
42ff6409 187\membersection{wxLog::GetTraceMask}\label{wxloggettracemask}
9ee2d31c 188
42ff6409
JS
189Returns the current trace mask, see \helpref{Customization}{wxlogcustomization} section
190for details.
62448488 191