⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 log.tex

📁 很牛的GUI源码wxWidgets-2.8.0.zip 可在多种平台下运行.
💻 TEX
📖 第 1 页 / 共 2 页
字号:
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Name:        log.tex%% Purpose:     wxLog and related classes documentation%% Author:      Vadim Zeitlin%% Modified by:%% Created:     some time ago%% RCS-ID:      $Id: log.tex,v 1.36 2006/10/25 00:40:30 VZ Exp $%% Copyright:   (c) 1997-2001 Vadim Zeitlin%% License:     wxWindows license%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\section{\class{wxLog}}\label{wxlog}wxLog class defines the interface for the {\it log targets} used by wxWidgetslogging functions as explained in the \helpref{wxLog overview}{wxlogoverview}.The only situations when you need to directly use this class is when you wantto derive your own log target because the existing ones don't satisfy yourneeds. Another case is if you wish to customize the behaviour of the standardlogging classes (all of which respect the wxLog settings): for example, setwhich trace messages are logged and which are not or change (or even removecompletely) the timestamp on the messages.Otherwise, it is completely hidden behind the {\it wxLogXXX()} functions andyou may not even know about its existence.See \helpref{log overview}{wxlogoverview} for the descriptions of wxWidgetslogging facilities.\wxheading{Derived from}No base class\wxheading{Include files}<wx/log.h>\latexignore{\rtfignore{\wxheading{Function groups}}}\membersection{Global functions}The functions in this section work with and manipulate the active log target.The \helpref{OnLog()}{wxlogonlog} is called by the {\it wxLogXXX()} functionsand invokes the \helpref{DoLog()}{wxlogdolog} of the active log target if any.Get/Set methods are used to install/query the current active target and,finally, \helpref{DontCreateOnDemand()}{wxlogdontcreateondemand} disables theautomatic creation of a standard log target if none actually exists. It isonly useful when the application is terminating and shouldn't be used in othersituations because it may easily lead to a loss of messages.\helpref{OnLog}{wxlogonlog}\\\helpref{GetActiveTarget}{wxloggetactivetarget}\\\helpref{SetActiveTarget}{wxlogsetactivetarget}\\\helpref{DontCreateOnDemand}{wxlogdontcreateondemand}\\\helpref{Suspend}{wxlogsuspend}\\\helpref{Resume}{wxlogresume}\membersection{Logging functions}\label{loggingfunctions}There are two functions which must be implemented by any derived class toactually process the log messages: \helpref{DoLog}{wxlogdolog} and\helpref{DoLogString}{wxlogdologstring}. The second function receives a stringwhich just has to be output in some way and the easiest way to write a new logtarget is to override just this function in the derived class. If more controlover the output format is needed, then the first function must be overriddenwhich allows to construct custom messages depending on the log level or evendo completely different things depending on the message severity (for example,throw away all messages except warnings and errors, show warnings on thescreen and forward the error messages to the user's (or programmer's) cellphone - maybe depending on whether the timestamp tells us if it is day ornight in the current time zone).There also functions to support message buffering. Why are they needed?Some of wxLog implementations, most notably the standard wxLogGui class,buffer the messages (for example, to avoid showing the user a zillion of modalmessage boxes one after another -- which would be really annoying).\helpref{Flush()}{wxlogflush} shows them all and clears the buffer contents.This function doesn't do anything if the buffer is already empty.\helpref{Flush}{wxlogflush}\\\helpref{FlushActive}{wxlogflushactive}\membersection{Customization}\label{wxlogcustomization}The functions below allow some limited customization of wxLog behaviourwithout writing a new log target class (which, aside of being a matter ofseveral minutes, allows you to do anything you want).The verbose messages are the trace messages which are not disabled in therelease mode and are generated by \helpref{wxLogVerbose}{wxlogverbose}. Theyare not normally shown to the user because they present little interest, butmay be activated, for example, in order to help the user find some programproblem.As for the (real) trace messages, their handling depends on the settings ofthe (application global) {\it trace mask}. There are two ways to specify it:either by using \helpref{SetTraceMask}{wxlogsettracemask} and\helpref{GetTraceMask}{wxloggettracemask} and using\helpref{wxLogTrace}{wxlogtrace} which takes an integer mask or by using\helpref{AddTraceMask}{wxlogaddtracemask} for string trace masks.The difference between bit-wise and string trace masks is that a message usinginteger trace mask will only be logged if all bits of the mask are set in thecurrent mask while a message using string mask will be logged simply if themask had been added before to the list of allowed ones.For example,\begin{verbatim}// wxTraceOleCalls is one of standard bit maskswxLogTrace(wxTraceRefCount | wxTraceOleCalls, "Active object ref count: %d", nRef);\end{verbatim}will do something only if the current trace mask contains both{\tt wxTraceRefCount} and {\tt wxTraceOle}, but\begin{verbatim}// wxTRACE_OleCalls is one of standard string maskswxLogTrace(wxTRACE_OleCalls, "IFoo::Bar() called");\end{verbatim}will log the message if it was preceded by\begin{verbatim}wxLog::AddTraceMask(wxTRACE_OleCalls);\end{verbatim}Using string masks is simpler and allows to easily add custom ones, so this isthe preferred way of working with trace messages. The integer trace mask iskept for compatibility and for additional (but very rarely needed) flexibilityonly.The standard trace masks are given in \helpref{wxLogTrace}{wxlogtrace}documentation.Finally, the {\it wxLog::DoLog()} function automatically prepends a time stampto all the messages. The format of the time stamp may be changed: it can beany string with \% specifications fully described in the documentation of thestandard {\it strftime()} function. For example, the default format is"[\%d/\%b/\%y \%H:\%M:\%S] " which gives something like "[17/Sep/98 22:10:16] "(without quotes) for the current date. Setting an empty string as the timeformat disables timestamping of the messages completely.{\bf NB:} Timestamping is disabled for Visual C++ users in debug builds bydefault because otherwise it would be impossible to directly go to the linefrom which the log message was generated by simply clicking in the debuggerwindow on the corresponding error message. If you wish to enable it, please use\helpref{SetTimestamp}{wxlogsettimestamp} explicitly.\helpref{AddTraceMask}{wxlogaddtracemask}\\\helpref{RemoveTraceMask}{wxlogremovetracemask}\\\helpref{ClearTraceMasks}{wxlogcleartracemasks}\\\helpref{GetTraceMasks}{wxloggettracemasks}\\\helpref{IsAllowedTraceMask}{wxlogisallowedtracemask}\\\helpref{SetVerbose}{wxlogsetverbose}\\\helpref{GetVerbose}{wxloggetverbose}\\\helpref{SetTimestamp}{wxlogsettimestamp}\\\helpref{GetTimestamp}{wxloggettimestamp}\\\helpref{SetTraceMask}{wxlogsettracemask}\\\helpref{GetTraceMask}{wxloggettracemask}\\\helpref{SetRepetitionCounting}{wxlogsetrepetitioncounting}\\\helpref{GetRepetitionCounting}{wxloggetrepetitioncounting}%%%%% MEMBERS HERE %%%%%\helponly{\insertatlevel{2}{\wxheading{Members}}}\membersection{wxLog::AddTraceMask}\label{wxlogaddtracemask}\func{static void}{AddTraceMask}{\param{const wxString\& }{mask}}Add the {\it mask} to the list of allowed masks for\helpref{wxLogTrace}{wxlogtrace}.\wxheading{See also}\helpref{RemoveTraceMask}{wxlogremovetracemask}\helpref{GetTraceMasks}{wxloggettracemasks}\membersection{wxLog::ClearTraceMasks}\label{wxlogcleartracemasks}\func{static void}{ClearTraceMasks}{\void}Removes all trace masks previously set with\helpref{AddTraceMask}{wxlogaddtracemask}.\wxheading{See also}\helpref{RemoveTraceMask}{wxlogremovetracemask}\membersection{wxLog::GetTraceMasks}\label{wxloggettracemasks}\func{static const wxArrayString \&}{GetTraceMasks}{\void}Returns the currently allowed list of string trace masks.\wxheading{See also}\helpref{AddTraceMask}{wxlogaddtracemask}.\membersection{wxLog::OnLog}\label{wxlogonlog}\func{static void}{OnLog}{\param{wxLogLevel }{ level}, \param{const char * }{ message}}Forwards the message at specified level to the {\it DoLog()} function of theactive log target if there is any, does nothing otherwise.\membersection{wxLog::GetActiveTarget}\label{wxloggetactivetarget}\func{static wxLog *}{GetActiveTarget}{\void}Returns the pointer to the active log target (may be NULL).\membersection{wxLog::SetActiveTarget}\label{wxlogsetactivetarget}\func{static wxLog *}{SetActiveTarget}{\param{wxLog * }{ logtarget}}Sets the specified log target as the active one. Returns the pointer to theprevious active log target (may be NULL).  To suppress logging use a newinstance of wxLogNull not NULL.  If the active log target is set to NULL anew default log target will be created when logging occurs.\membersection{wxLog::Suspend}\label{wxlogsuspend}\func{static void}{Suspend}{\void}Suspends the logging until \helpref{Resume}{wxlogresume} is called. Note thatthe latter must be called the same number of times as the former to undo it,i.e. if you call Suspend() twice you must call Resume() twice as well.Note that suspending the logging means that the log sink won't be be flushedperiodically, it doesn't have any effect if the current log target does thelogging immediately without waiting for \helpref{Flush}{wxlogflush} to becalled (the standard GUI log target only shows the log dialog when it isflushed, so Suspend() works as expected with it).\wxheading{See also}\helpref{Resume}{wxlogresume},\\\helpref{wxLogNull}{wxlogoverview}\membersection{wxLog::Resume}\label{wxlogresume}\func{static void}{Resume}{\void}Resumes logging previously suspended by a call to\helpref{Suspend}{wxlogsuspend}. All messages logged in the meanwhile will beflushed soon.\membersection{wxLog::DoLog}\label{wxlogdolog}\func{virtual void}{DoLog}{\param{wxLogLevel }{level}, \param{const wxChar }{*msg}, \param{time\_t }{timestamp}}Called to process the message of the specified severity. {\it msg} is the textof the message as specified in the call of {\it wxLogXXX()} function whichgenerated it and {\it timestamp} is the moment when the message was generated.The base class version prepends the timestamp to the message, adds a prefixcorresponding to the log level and then calls\helpref{DoLogString}{wxlogdologstring} with the resulting string.\membersection{wxLog::DoLogString}\label{wxlogdologstring}\func{virtual void}{DoLogString}{\param{const wxChar }{*msg}, \param{time\_t }{timestamp}}Called to log the specified string. The timestamp is already included into thestring but still passed to this function.A simple implementation may just send the string to {\tt stdout} or, better,{\tt stderr}.\membersection{wxLog::DontCreateOnDemand}\label{wxlogdontcreateondemand}\func{static void}{DontCreateOnDemand}{\void}Instructs wxLog to not create new log targets on the fly if there is nonecurrently. (Almost) for internal use only: it is supposed to be called by theapplication shutdown code.Note that this function also calls\helpref{ClearTraceMasks}{wxlogcleartracemasks}.\membersection{wxLog::Flush}\label{wxlogflush}\func{virtual void}{Flush}{\void}Shows all the messages currently in buffer and clears it. If the bufferis already empty, nothing happens.\membersection{wxLog::FlushActive}\label{wxlogflushactive}\func{static void}{FlushActive}{\void}Flushes the current log target if any, does nothing if there is none.\wxheading{See also}\helpref{Flush}{wxlogflush}\membersection{wxLog::SetVerbose}\label{wxlogsetverbose}\func{static void}{SetVerbose}{\param{bool }{ verbose = true}}Activates or deactivates verbose mode in which the verbose messages arelogged as the normal ones instead of being silently dropped.\membersection{wxLog::GetVerbose}\label{wxloggetverbose}\func{static bool}{GetVerbose}{\void}Returns whether the verbose mode is currently active.\membersection{wxLog::SetLogLevel}\label{wxlogsetloglevel}\func{static void}{SetLogLevel}{\param{wxLogLevel }{ logLevel}}Specifies that log messages with $level > logLevel$ should be ignoredand not sent to the active log target.\membersection{wxLog::GetLogLevel}\label{wxloggetloglevel}\func{static wxLogLevel}{GetLogLevel}{\void}Returns the current log level limit.\membersection{wxLog::SetRepetitionCounting}\label{wxlogsetrepetitioncounting}\func{static void}{SetRepetitionCounting}{\param{bool }{ repetCounting = true}}Enables logging mode in which a log message is logged once, and in case exactlythe same message successively repeats one or more times, only the number of repetitions is logged.\membersection{wxLog::GetRepetitionCounting}\label{wxloggetrepetitioncounting}\func{static bool}{GetRepetitionCounting}{\void}Returns whether the repetition counting mode is enabled.\membersection{wxLog::SetTimestamp}\label{wxlogsettimestamp}\func{void}{SetTimestamp}{\param{const char * }{ format}}Sets the timestamp format prepended by the default log targets to allmessages. The string may contain any normal characters as well as \%prefixed format specificators, see {\it strftime()} manual for details.Passing a NULL value (not empty string) to this function disables message timestamping.\membersection{wxLog::GetTimestamp}\label{wxloggettimestamp}\constfunc{const char *}{GetTimestamp}{\void}Returns the current timestamp format string.\membersection{wxLog::SetTraceMask}\label{wxlogsettracemask}\func{static void}{SetTraceMask}{\param{wxTraceMask }{ mask}}Sets the trace mask, see \helpref{Customization}{wxlogcustomization}section for details.\membersection{wxLog::GetTraceMask}\label{wxloggettracemask}Returns the current trace mask, see \helpref{Customization}{wxlogcustomization} sectionfor details.\membersection{wxLog::IsAllowedTraceMask}\label{wxlogisallowedtracemask}\func{static bool}{IsAllowedTraceMask}{\param{const wxChar *}{mask}}Returns true if the {\it mask} is one of allowed masks for\helpref{wxLogTrace}{wxlogtrace}.See also: \helpref{AddTraceMask}{wxlogaddtracemask},\helpref{RemoveTraceMask}{wxlogremovetracemask}\membersection{wxLog::RemoveTraceMask}\label{wxlogremovetracemask}\func{static void}{RemoveTraceMask}{\param{const wxString\& }{mask}}Remove the {\it mask} from the list of allowed masks for\helpref{wxLogTrace}{wxlogtrace}.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -