1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxMessageOutput class. Shows a message to the user
4 // Author: Mattia Barbon
8 // Copyright: (c) Mattia Barbon
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
15 // ----------------------------------------------------------------------------
17 // ----------------------------------------------------------------------------
19 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) && !defined(__EMX__)
20 // Some older compilers (such as EMX) cannot handle
21 // #pragma interface/implementation correctly, iff
22 // #pragma implementation is used in _two_ translation
23 // units (as created by e.g. event.cpp compiled for
24 // libwx_base and event.cpp compiled for libwx_gui_core).
25 // So we must not use those pragmas for those compilers in
27 #pragma interface "msgout.h"
31 #include "wx/wxchar.h"
33 // ----------------------------------------------------------------------------
34 // wxMessageOutput is a class abstracting formatted output target, i.e.
35 // something you can printf() to
36 // ----------------------------------------------------------------------------
38 class WXDLLIMPEXP_BASE wxMessageOutput
41 virtual ~wxMessageOutput() { }
43 // show a message to the user
44 virtual void Printf(const wxChar
* format
, ...) ATTRIBUTE_PRINTF_2
= 0;
46 // gets the current wxMessageOutput object (may be NULL during
47 // initialization or shutdown)
48 static wxMessageOutput
* Get();
50 // sets the global wxMessageOutput instance; returns the previous one
51 static wxMessageOutput
* Set(wxMessageOutput
* msgout
);
54 static wxMessageOutput
* ms_msgOut
;
57 // ----------------------------------------------------------------------------
58 // implementation showing the message to the user in "best" possible way: uses
59 // native message box if available (currently only under Windows) and stderr
60 // otherwise; unlike wxMessageOutputMessageBox this class is always safe to use
61 // ----------------------------------------------------------------------------
63 class WXDLLIMPEXP_BASE wxMessageOutputBest
: public wxMessageOutput
66 wxMessageOutputBest() { }
68 virtual void Printf(const wxChar
* format
, ...) ATTRIBUTE_PRINTF_2
;
71 // ----------------------------------------------------------------------------
72 // implementation which sends output to stderr
73 // ----------------------------------------------------------------------------
75 class WXDLLIMPEXP_BASE wxMessageOutputStderr
: public wxMessageOutput
78 wxMessageOutputStderr() { }
80 virtual void Printf(const wxChar
* format
, ...) ATTRIBUTE_PRINTF_2
;
83 // ----------------------------------------------------------------------------
84 // implementation which shows output in a message box
85 // ----------------------------------------------------------------------------
89 class WXDLLIMPEXP_CORE wxMessageOutputMessageBox
: public wxMessageOutput
92 wxMessageOutputMessageBox() { }
94 virtual void Printf(const wxChar
* format
, ...) ATTRIBUTE_PRINTF_2
;
99 // ----------------------------------------------------------------------------
100 // implementation using the native way of outputting debug messages
101 // ----------------------------------------------------------------------------
103 class WXDLLIMPEXP_BASE wxMessageOutputDebug
: public wxMessageOutput
106 wxMessageOutputDebug() { }
108 virtual void Printf(const wxChar
* format
, ...) ATTRIBUTE_PRINTF_2
;
111 // ----------------------------------------------------------------------------
112 // implementation using wxLog (mainly for backwards compatibility)
113 // ----------------------------------------------------------------------------
115 class WXDLLIMPEXP_BASE wxMessageOutputLog
: public wxMessageOutput
118 wxMessageOutputLog() { }
120 virtual void Printf(const wxChar
* format
, ...) ATTRIBUTE_PRINTF_2
;