// ----------------------------------------------------------------------------
// forward declarations
// ----------------------------------------------------------------------------
-class wxTextCtrl;
-class wxLogFrame;
-class wxFrame;
-class ostream;
+class WXDLLEXPORT wxTextCtrl;
+class WXDLLEXPORT wxLogFrame;
+class WXDLLEXPORT wxFrame;
+
+#if wxUSE_IOSTREAMH
+# include <ostream.h>
+#else
+# include <ostream>
+# ifdef _MSC_VER
+ using namespace std;
+# endif
+#endif
// ----------------------------------------------------------------------------
// derive from this class to redirect (or suppress, or ...) log messages
// sink function
static void OnLog(wxLogLevel level, const char *szString)
- { if ( ms_pLogger != 0 ) ms_pLogger->DoLog(level, szString); }
+ {
+ wxLog *pLogger = GetActiveTarget();
+ if ( pLogger )
+ {
+ pLogger->DoLog(level, szString);
+ }
+ }
// message buffering
// flush shows all messages if they're not logged immediately
bool HasPendingMessages() const { return m_bHasMessages; }
// only one sink is active at each moment
+ // get current log target, will call wxApp::CreateLogTarget() to create one
+ // if none exists
+ static wxLog *GetActiveTarget();
// change log target, pLogger = NULL disables logging. if bNoFlashOld is true,
// the old log target isn't flashed which might lead to loss of messages!
// returns the previous log target
};
// log everything to an "ostream", cerr by default
-class ostream;
class WXDLLEXPORT wxLogStream : public wxLog
{
public:
ostream *m_ostr;
};
+#ifndef wxUSE_NOGUI
+
// log everything to a text window (GUI only of course)
class WXDLLEXPORT wxLogTextCtrl : public wxLogStream
{
wxLogFrame *m_pLogFrame; // the log frame
};
+#endif // wxUSE_NOGUI
+
// ----------------------------------------------------------------------------
// /dev/null log target: suppress logging until this object goes out of scope
// ----------------------------------------------------------------------------
// parts of the program only)
WXDLLEXPORT_DATA(extern bool) g_bVerbose;
-// fwd decl to avoid including iostream.h here
-class ostream;
-
// ----------------------------------------------------------------------------
// get error code/error message from system in a portable way
// ----------------------------------------------------------------------------