]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/log.h
was incorrectly forcing the font to 12 in most cases, fixes #4745
[wxWidgets.git] / interface / log.h
index af135f16dd35cdef3654d5c764359857584c71f4..bb96ae292640ed8cc2b1a23deaed7ce6baf8e3f7 100644 (file)
@@ -12,7 +12,7 @@
 
     This class represents a background log window: to be precise, it collects all
     log messages in the log frame which it manages but also passes them on to the
-    log target which was active at the moment of its creation. This allows, for
+    log target which was active at the moment of its creation. This allows you, for
     example, to show all the log messages in a frame but still continue to process
     them normally by showing the standard log dialog.
 
@@ -26,7 +26,7 @@ class wxLogWindow : public wxLogInterposer
 public:
     /**
         Creates the log frame window and starts collecting the messages in it.
-        
+
         @param parent
             The parent window for the log frame, may be @NULL
         @param title
@@ -54,7 +54,7 @@ public:
         exits).
         Return @true from here to allow the frame to close, @false to
         prevent this from happening.
-        
+
         @see OnFrameDelete()
     */
     virtual bool OnFrameClose(wxFrame frame);
@@ -111,7 +111,7 @@ public:
     @class wxLogChain
     @wxheader{log.h}
 
-    This simple class allows to chain log sinks, that is to install a new sink but
+    This simple class allows you to chain log sinks, that is to install a new sink but
     keep passing log messages to the old one instead of replacing it completely as
     wxLog::SetActiveTarget does.
 
@@ -177,7 +177,7 @@ public:
 
     /**
         Sets another log target to use (may be @NULL). The log target specified
-        in the @ref ctor() constructor or in a previous call to
+        in the wxLogChain(wxLog*) constructor or in a previous call to
         this function is deleted.
         This doesn't change the old log target value (the one the messages are
         forwarded to) which still remains the same as was active when wxLogChain
@@ -276,7 +276,7 @@ public:
     method.
 
     @library{wxbase}
-    @category{FIXME}
+    @category{logging}
 */
 class wxLogBuffer : public wxLog
 {
@@ -358,8 +358,7 @@ public:
     @wxheader{log.h}
 
     wxLog class defines the interface for the @e log targets used by wxWidgets
-    logging functions as explained in the @ref overview_wxlogoverview "wxLog
-    overview".
+    logging functions as explained in the @ref overview_log.
     The only situations when you need to directly use this class is when you want
     to derive your own log target because the existing ones don't satisfy your
     needs. Another case is if you wish to customize the behaviour of the standard
@@ -370,36 +369,34 @@ public:
     Otherwise, it is completely hidden behind the @e wxLogXXX() functions and
     you may not even know about its existence.
 
-    See @ref overview_wxlogoverview "log overview" for the descriptions of wxWidgets
-    logging facilities.
-
-    @library{wxcore}
-    @category{logging}
-
-    @see wxLog::RemoveTraceMask, wxLog::GetTraceMasks
-*/
-class wxLog
-{
-public:
-    /**
-        Add the @a mask to the list of allowed masks for
-        wxLogTrace().
-        
-        @see RemoveTraceMask(), GetTraceMasks()
-    */
-    static void AddTraceMask(const wxString& mask);
+     @section overview_wxLog_deriving Deriving your own log target
+     
+        There are two functions which must be implemented by any derived class to
+        actually process the log messages: DoLog() and
+        DoLogString(). The second function receives a string
+        which just has to be output in some way and the easiest way to write a new log
+        target is to override just this function in the derived class. If more control
+        over the output format is needed, then the first function must be overridden
+        which allows to construct custom messages depending on the log level or even
+        do completely different things depending on the message severity (for example,
+        throw away all messages except warnings and errors, show warnings on the
+        screen and forward the error messages to the user's (or programmer's) cell
+        phone - maybe depending on whether the timestamp tells us if it is day or
+        night 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 modal
+        message boxes one after another -- which would be really annoying).
+        Flush() shows them all and clears the buffer contents.
+        This function doesn't do anything if the buffer is already empty.
+        See also:
+        @li Flush()
+        @li FlushActive()
 
-    /**
-        Removes all trace masks previously set with
-        AddTraceMask().
-        
-        @see RemoveTraceMask()
-    */
-    static void ClearTraceMasks();
+     @section overview_wxLog_Trace_Masks Using trace masks
 
-    /**
         The functions below allow some limited customization of wxLog behaviour
-        without writing a new log target class (which, aside of being a matter of
+        without writing a new log target class (which, aside from being a matter of
         several minutes, allows you to do anything you want).
         The verbose messages are the trace messages which are not disabled in the
         release mode and are generated by wxLogVerbose(). They
@@ -407,28 +404,37 @@ public:
         may be activated, for example, in order to help the user find some program
         problem.
         As for the (real) trace messages, their handling depends on the settings of
-        the (application global) @e trace mask. There are two ways to specify it:
-        either by using SetTraceMask() and
-        GetTraceMask() and using
-        wxLogTrace() which takes an integer mask or by using
-        AddTraceMask() for string trace masks.
+        the (application global) @e trace mask which can either be specified using
+        SetTraceMask(), GetTraceMask() and wxLogTrace() which takes an integer mask
+        or using AddTraceMask() for string trace masks.
         The difference between bit-wise and string trace masks is that a message using
         integer trace mask will only be logged if all bits of the mask are set in the
         current mask while a message using string mask will be logged simply if the
         mask had been added before to the list of allowed ones.
         For example,
         
+        @code
+        wxLogTrace( wxTraceRefCount|wxTraceOleCalls, "Active object ref count: %d", nRef );
+        @endcode
+
         will do something only if the current trace mask contains both
         @c wxTraceRefCount and @c wxTraceOle, but
+
+        @code
+        wxLogTrace( wxTRACE_OleCalls, "IFoo::Bar() called" );
+        @endcode
         
         will log the message if it was preceded by
         
-        Using string masks is simpler and allows to easily add custom ones, so this is
+        @code
+        wxLog::AddTraceMask( wxTRACE_OleCalls);
+        @endcode
+
+        Using string masks is simpler and allows you to easily add custom ones, so this is
         the preferred way of working with trace messages. The integer trace mask is
         kept for compatibility and for additional (but very rarely needed) flexibility
         only.
-        The standard trace masks are given in wxLogTrace()
-        documentation.
+        The standard trace masks are given in wxLogTrace() documentation.
         Finally, the @e wxLog::DoLog() function automatically prepends a time stamp
         to all the messages. The format of the time stamp may be changed: it can be
         any string with % specifications fully described in the documentation of the
@@ -436,36 +442,68 @@ public:
         "[%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 time
         format disables timestamping of the messages completely.
-        @b NB: Timestamping is disabled for Visual C++ users in debug builds by
+        See also
+        @li AddTraceMask()
+        @li RemoveTraceMask()
+        @li ClearTraceMasks()
+        @li GetTraceMasks()
+        @li IsAllowedTraceMask()
+        @li SetVerbose()
+        @li GetVerbose()
+        @li SetTimestamp()
+        @li GetTimestamp()
+        @li SetTraceMask()
+        @li GetTraceMask()
+        @li SetRepetitionCounting()
+        @li GetRepetitionCounting()
+
+        @note Timestamping is disabled for Visual C++ users in debug builds by
         default because otherwise it would be impossible to directly go to the line
         from which the log message was generated by simply clicking in the debugger
-        window on the corresponding error message. If you wish to enable it, please use
-        SetTimestamp() explicitly.
-        AddTraceMask()
-        
-        RemoveTraceMask()
-        
-        ClearTraceMasks()
-        
-        GetTraceMasks()
-        
-        IsAllowedTraceMask()
-        
-        SetVerbose()
-        
-        GetVerbose()
-        
-        SetTimestamp()
-        
-        GetTimestamp()
-        
-        SetTraceMask()
+        window on the corresponding error message. If you wish to enable it, please
+        use SetTimestamp() explicitly. 
         
-        GetTraceMask()
-        
-        SetRepetitionCounting()
-        
-        GetRepetitionCounting()
+     @section overview_wxLog_Target Manipulating the log target
+
+        The functions in this section work with and manipulate the active log
+        target. The OnLog() is called by the @e wxLogXXX() functions
+        and invokes the DoLog() of the active log target if any.
+        Get/Set methods are used to install/query the current active target and,
+        finally, DontCreateOnDemand() disables the automatic creation of a standard
+        log target if none actually exists. It is only useful when the application
+        is terminating and shouldn't be used in other situations because it may
+        easily lead to a loss of messages. See also
+        @li OnLog()
+        @li GetActiveTarget()
+        @li SetActiveTarget()
+        @li DontCreateOnDemand()
+        @li Suspend()
+        @li Resume()
+
+    @library{wxcore}
+    @category{logging}
+
+    @see @ref overview_log
+*/
+class wxLog
+{
+public:
+    /**
+        Add the @a mask to the list of allowed masks for
+        wxLogTrace().
+
+        @see RemoveTraceMask(), GetTraceMasks()
+    */
+    static void AddTraceMask(const wxString& mask);
+
+    /**
+        Removes all trace masks previously set with
+        AddTraceMask().
+
+        @see RemoveTraceMask()
+    */
+    static void ClearTraceMasks();
+
     */
 
 
@@ -511,7 +549,7 @@ public:
 
     /**
         Flushes the current log target if any, does nothing if there is none.
-        
+
         @see Flush()
     */
     static void FlushActive();
@@ -544,7 +582,7 @@ public:
 
     /**
         Returns the currently allowed list of string trace masks.
-        
+
         @see AddTraceMask().
     */
     static const wxArrayString GetTraceMasks();
@@ -554,34 +592,11 @@ public:
     */
     static bool GetVerbose();
 
-    /**
-        The functions in this section work with and manipulate the active log target.
-        The OnLog() is called by the @e wxLogXXX() functions
-        and invokes the DoLog() of the active log target if any.
-        Get/Set methods are used to install/query the current active target and,
-        finally, DontCreateOnDemand() disables the
-        automatic creation of a standard log target if none actually exists. It is
-        only useful when the application is terminating and shouldn't be used in other
-        situations because it may easily lead to a loss of messages.
-        OnLog()
-        
-        GetActiveTarget()
-        
-        SetActiveTarget()
-        
-        DontCreateOnDemand()
-        
-        Suspend()
-        
-        Resume()
-    */
-
-
     /**
         Returns @true if the @a mask is one of allowed masks for
         wxLogTrace().
-        See also: AddTraceMask(),
-        RemoveTraceMask()
+        
+        See also: AddTraceMask(), RemoveTraceMask()
     */
     static bool IsAllowedTraceMask(const wxString& mask);
 
@@ -592,7 +607,7 @@ public:
         which just has to be output in some way and the easiest way to write a new log
         target is to override just this function in the derived class. If more control
         over the output format is needed, then the first function must be overridden
-        which allows to construct custom messages depending on the log level or even
+        which allows you to construct custom messages depending on the log level or even
         do completely different things depending on the message severity (for example,
         throw away all messages except warnings and errors, show warnings on the
         screen and forward the error messages to the user's (or programmer's) cell
@@ -605,7 +620,7 @@ public:
         Flush() shows them all and clears the buffer contents.
         This function doesn't do anything if the buffer is already empty.
         Flush()
-        
+
         FlushActive()
     */
 
@@ -680,7 +695,7 @@ public:
         logging immediately without waiting for Flush() to be
         called (the standard GUI log target only shows the log dialog when it is
         flushed, so Suspend() works as expected with it).
-        
+
         @see Resume(), wxLogNull
     */
     static void Suspend();
@@ -692,7 +707,7 @@ public:
     @class wxLogNull
     @wxheader{log.h}
 
-    This class allows to temporarily suspend logging. All calls to the log
+    This class allows you to temporarily suspend logging. All calls to the log
     functions during the life time of an object of this class are just ignored.
 
     In particular, it can be used to suppress the log messages given by wxWidgets
@@ -756,192 +771,253 @@ public:
 // Global functions/macros
 // ============================================================================
 
+/** @ingroup group_funcmacro_log */
+//@{
+
 /**
-    This function shows a message to the user in a safe way and should be safe to
-    call even before the application has been initialized or if it is currently in
-    some other strange state (for example, about to crash). Under Windows this
-    function shows a message box using a native dialog instead of
-    wxMessageBox() (which might be unsafe to call), elsewhere
-    it simply prints the message to the standard output using the title as prefix.
+    This function shows a message to the user in a safe way and should be safe
+    to call even before the application has been initialized or if it is
+    currently in some other strange state (for example, about to crash). Under
+    Windows this function shows a message box using a native dialog instead of
+    wxMessageBox() (which might be unsafe to call), elsewhere it simply prints
+    the message to the standard output using the title as prefix.
 
     @param title
-        The title of the message box shown to the user or the prefix
-        of the message string
+        The title of the message box shown to the user or the prefix of the
+        message string.
     @param text
-        The text to show to the user
+        The text to show to the user.
 
     @see wxLogFatalError()
+
+    @header{wx/log.h}
 */
-void wxSafeShowMessage(const wxString& title,
-                       const wxString& text);
+void wxSafeShowMessage(const wxString& title, const wxString& text);
 
+/**
+    Returns the error code from the last system call. This function uses
+    @c errno on Unix platforms and @c GetLastError under Win32.
 
+    @see wxSysErrorMsg(), wxLogSysError()
+
+    @header{wx/log.h}
+*/
+unsigned long wxSysErrorCode();
+
+/**
+    Returns the error message corresponding to the given system error code. If
+    @a errCode is 0 (default), the last error code (as returned by
+    wxSysErrorCode()) is used.
+
+    @see wxSysErrorCode(), wxLogSysError()
 
+    @header{wx/log.h}
+*/
+const wxChar* wxSysErrorMsg(unsigned long errCode = 0);
+
+//@}
+
+/** @ingroup group_funcmacro_log */
 //@{
 /**
-    For all normal, informational messages. They also appear in a message box by
-    default (but it can be changed).
+    For all normal, informational messages. They also appear in a message box
+    by default (but it can be changed).
+
+    @header{wx/log.h}
 */
 void wxLogMessage(const char* formatString, ... );
 void wxVLogMessage(const char* formatString, va_list argPtr);
 //@}
 
+/** @ingroup group_funcmacro_log */
 //@{
 /**
-    For verbose output. Normally, it is suppressed, but
-    might be activated if the user wishes to know more details about the program
-    progress (another, but possibly confusing name for the same function is @b
-    wxLogInfo).
+    For verbose output. Normally, it is suppressed, but might be activated if
+    the user wishes to know more details about the program progress (another,
+    but possibly confusing name for the same function could be @c wxLogInfo).
+
+    @header{wx/log.h}
 */
 void wxLogVerbose(const char* formatString, ... );
 void wxVLogVerbose(const char* formatString, va_list argPtr);
 //@}
 
+/** @ingroup group_funcmacro_log */
 //@{
 /**
-    For warnings - they are also normally shown to the user, but don't interrupt
-    the program work.
+    For warnings - they are also normally shown to the user, but don't
+    interrupt the program work.
+
+    @header{wx/log.h}
 */
 void wxLogWarning(const char* formatString, ... );
 void wxVLogWarning(const char* formatString, va_list argPtr);
 //@}
 
+/** @ingroup group_funcmacro_log */
 //@{
 /**
-    Like wxLogError(), but also
-    terminates the program with the exit code 3. Using @e abort() standard
-    function also terminates the program with this exit code.
+    Like wxLogError(), but also terminates the program with the exit code 3.
+    Using @e abort() standard function also terminates the program with this
+    exit code.
+
+    @header{wx/log.h}
 */
 void wxLogFatalError(const char* formatString, ... );
-void wxVLogFatalError(const char* formatString,
-                      va_list argPtr);
+void wxVLogFatalError(const char* formatString, va_list argPtr);
 //@}
 
+/** @ingroup group_funcmacro_log */
 //@{
 /**
-    The functions to use for error messages, i.e. the messages that must be shown
-    to the user. The default processing is to pop up a message box to inform the
-    user about it.
+    The functions to use for error messages, i.e. the messages that must be
+    shown to the user. The default processing is to pop up a message box to
+    inform the user about it.
+
+    @header{wx/log.h}
 */
 void wxLogError(const char* formatString, ... );
 void wxVLogError(const char* formatString, va_list argPtr);
 //@}
 
-
+/** @ingroup group_funcmacro_log */
 //@{
 /**
-    As @b wxLogDebug, trace functions only do something in debug build and
-    expand to nothing in the release one. The reason for making
-    it a separate function from it is that usually there are a lot of trace
-    messages, so it might make sense to separate them from other debug messages.
-    The trace messages also usually can be separated into different categories and
-    the second and third versions of this function only log the message if the
-    @a mask which it has is currently enabled in wxLog. This
-    allows to selectively trace only some operations and not others by changing
-    the value of the trace mask (possible during the run-time).
-    For the second function (taking a string mask), the message is logged only if
-    the mask has been previously enabled by the call to
-    wxLog::AddTraceMask or by setting
-    @ref overview_envvars "@c WXTRACE environment variable".
-    The predefined string trace masks
-    used by wxWidgets are:
-     wxTRACE_MemAlloc: trace memory allocation (new/delete)
-     wxTRACE_Messages: trace window messages/X callbacks
-     wxTRACE_ResAlloc: trace GDI resource allocation
-     wxTRACE_RefCount: trace various ref counting operations
-     wxTRACE_OleCalls: trace OLE method calls (Win32 only)
-    @b Caveats: since both the mask and the format string are strings,
-    this might lead to function signature confusion in some cases:
-    if you intend to call the format string only version of wxLogTrace,
-    then add a %s format string parameter and then supply a second string parameter
-    for that %s, the string mask version of wxLogTrace will erroneously get called instead, since you are supplying two string parameters to the function.
-    In this case you'll unfortunately have to avoid having two leading
-    string parameters, e.g. by adding a bogus integer (with its %d format string).
-    The third version of the function only logs the message if all the bits
-    corresponding to the @a mask are set in the wxLog trace mask which can be
-    set by wxLog::SetTraceMask. This version is less
-    flexible than the previous one because it doesn't allow defining the user
-    trace masks easily - this is why it is deprecated in favour of using string
-    trace masks.
-     wxTraceMemAlloc: trace memory allocation (new/delete)
-     wxTraceMessages: trace window messages/X callbacks
-     wxTraceResAlloc: trace GDI resource allocation
-     wxTraceRefCount: trace various ref counting operations
-     wxTraceOleCalls: trace OLE method calls (Win32 only)
+    Like wxLogDebug(), trace functions only do something in debug builds and
+    expand to nothing in the release one. The reason for making it a separate
+    function is that usually there are a lot of trace messages, so it might
+    make sense to separate them from other debug messages.
+
+    wxLogDebug(const char*,const char*,...) and
+    wxLogDebug(wxTraceMask,const char*,...) can be used instead if you would
+    like to be able to separate trace messages into different categories which
+    can be enabled or disabled with the static functions provided in wxLog.
+
+    @header{wx/log.h}
 */
 void wxLogTrace(const char* formatString, ... );
 void wxVLogTrace(const char* formatString, va_list argPtr);
-void wxLogTrace(const char* mask, const char* formatString,
-                ... );
+//@}
+
+/** @ingroup group_funcmacro_log */
+//@{
+/**
+    Like wxLogDebug(), trace functions only do something in debug builds and
+    expand to nothing in the release one. The reason for making it a separate
+    function is that usually there are a lot of trace messages, so it might
+    make sense to separate them from other debug messages.
+
+    In this version of wxLogTrace(), trace messages can be separated into
+    different categories and calls using this function only log the message if
+    the given @a mask is currently enabled in wxLog. This lets you selectively
+    trace only some operations and not others by enabling the desired trace
+    masks with wxLog::AddTraceMask() or by setting the
+    @ref overview_envvars "@c WXTRACE environment variable".
+
+    The predefined string trace masks used by wxWidgets are:
+
+    @beginDefList
+    @itemdef{ wxTRACE_MemAlloc, Trace memory allocation (new/delete) }
+    @itemdef{ wxTRACE_Messages, Trace window messages/X callbacks }
+    @itemdef{ wxTRACE_ResAlloc, Trace GDI resource allocation }
+    @itemdef{ wxTRACE_RefCount, Trace various ref counting operations }
+    @itemdef{ wxTRACE_OleCalls, Trace OLE method calls (Win32 only) }
+    @endDefList
+
+    @note Since both the mask and the format string are strings, this might
+          lead to function signature confusion in some cases: if you intend to
+          call the format string only version of wxLogTrace(), add a "%s"
+          format string parameter and then supply a second string parameter for
+          that "%s", the string mask version of wxLogTrace() will erroneously
+          get called instead, since you are supplying two string parameters to
+          the function. In this case you'll unfortunately have to avoid having
+          two leading string parameters, e.g. by adding a bogus integer (with
+          its "%d" format string).
+
+    @header{wx/log.h}
+*/
+void wxLogTrace(const char* mask, const char* formatString, ... );
 void wxVLogTrace(const char* mask,
-                 const char* formatString,
-                 va_list argPtr);
-void wxLogTrace(wxTraceMask mask, const char* formatString,
-                ... );
-void wxVLogTrace(wxTraceMask mask, const char* formatString,
-                 va_list argPtr);
+                  const char* formatString,
+                  va_list argPtr);
 //@}
 
+/** @ingroup group_funcmacro_log */
+//@{
+/**
+    Like wxLogDebug(), trace functions only do something in debug builds and
+    expand to nothing in the release one. The reason for making it a separate
+    function is that usually there are a lot of trace messages, so it might
+    make sense to separate them from other debug messages.
+
+    This version of wxLogTrace() only logs the message if all the bits
+    corresponding to the @a mask are set in the wxLog trace mask which can be
+    set by calling wxLog::SetTraceMask(). This version is less flexible than
+    wxLogDebug(const char*,const char*,...) because it doesn't allow defining
+    the user trace masks easily. This is why it is deprecated in favour of
+    using string trace masks.
+
+    The following bitmasks are defined for wxTraceMask:
+
+    @beginDefList
+    @itemdef{ wxTraceMemAlloc, Trace memory allocation (new/delete) }
+    @itemdef{ wxTraceMessages, Trace window messages/X callbacks }
+    @itemdef{ wxTraceResAlloc, Trace GDI resource allocation }
+    @itemdef{ wxTraceRefCount, Trace various ref counting operations }
+    @itemdef{ wxTraceOleCalls, Trace OLE method calls (Win32 only) }
+    @endDefList
+
+    @header{wx/log.h}
+*/
+void wxLogTrace(wxTraceMask mask, const char* formatString, ... );
+void wxVLogTrace(wxTraceMask mask, const char* formatString, va_list argPtr);
+//@}
 
+/** @ingroup group_funcmacro_log */
 //@{
 /**
-    The right functions for debug output. They only do something in debug
-    mode (when the preprocessor symbol __WXDEBUG__ is defined) and expand to
+    The right functions for debug output. They only do something in debug mode
+    (when the preprocessor symbol @c __WXDEBUG__ is defined) and expand to
     nothing in release mode (otherwise).
+
+    @header{wx/log.h}
 */
 void wxLogDebug(const char* formatString, ... );
 void wxVLogDebug(const char* formatString, va_list argPtr);
 //@}
 
-
+/** @ingroup group_funcmacro_log */
 //@{
 /**
-    Messages logged by these functions will appear in the statusbar of the @a frame
-    or of the top level application window by default (i.e. when using
+    Messages logged by this function will appear in the statusbar of the
+    @a frame or of the top level application window by default (i.e. when using
     the second version of the functions).
+
     If the target frame doesn't have a statusbar, the message will be lost.
+
+    @header{wx/log.h}
 */
-void wxLogStatus(wxFrame* frame, const char* formatString,
-                 ... );
-void wxVLogStatus(wxFrame* frame, const char* formatString,
-                  va_list argPtr);
+void wxLogStatus(wxFrame* frame, const char* formatString, ... );
+void wxVLogStatus(wxFrame* frame, const char* formatString, va_list argPtr);
 void wxLogStatus(const char* formatString, ... );
 void wxVLogStatus(const char* formatString, va_list argPtr);
 //@}
 
-
+/** @ingroup group_funcmacro_log */
 //@{
 /**
-    Mostly used by wxWidgets itself, but might be handy for logging errors after
-    system call (API function) failure. It logs the specified message text as well
-    as the last system error code (@e errno or @e ::GetLastError() depending
-    on the platform) and the corresponding error message. The second form
-    of this function takes the error code explicitly as the first argument.
+    Mostly used by wxWidgets itself, but might be handy for logging errors
+    after system call (API function) failure. It logs the specified message
+    text as well as the last system error code (@e errno or @e ::GetLastError()
+    depending on the platform) and the corresponding error message. The second
+    form of this function takes the error code explicitly as the first
+    argument.
 
     @see wxSysErrorCode(), wxSysErrorMsg()
+
+    @header{wx/log.h}
 */
 void wxLogSysError(const char* formatString, ... );
-void wxVLogSysError(const char* formatString,
-                    va_list argPtr);
+void wxVLogSysError(const char* formatString, va_list argPtr);
 //@}
 
-
-/**
-    Returns the error code from the last system call. This function uses
-    @c errno on Unix platforms and @c GetLastError under Win32.
-
-    @see wxSysErrorMsg(), wxLogSysError()
-*/
-unsigned long wxSysErrorCode();
-
-
-/**
-    Returns the error message corresponding to the given system error code. If
-    @a errCode is 0 (default), the last error code (as returned by
-    wxSysErrorCode()) is used.
-
-    @see wxSysErrorCode(), wxLogSysError()
-*/
-const wxChar* wxSysErrorMsg(unsigned long errCode = 0);
-
-