]>
Commit | Line | Data |
---|---|---|
74698d3a MB |
1 | /////////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/msgout.h | |
3 | // Purpose: wxMessageOutput class. Shows a message to the user | |
4 | // Author: Mattia Barbon | |
5 | // Modified by: | |
6 | // Created: 17.07.02 | |
7 | // RCS-ID: $Id$ | |
99d80019 | 8 | // Copyright: (c) Mattia Barbon |
65571936 | 9 | // Licence: wxWindows licence |
74698d3a MB |
10 | /////////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef _WX_MSGOUT_H_ | |
13 | #define _WX_MSGOUT_H_ | |
14 | ||
15 | // ---------------------------------------------------------------------------- | |
16 | // headers | |
17 | // ---------------------------------------------------------------------------- | |
18 | ||
74698d3a MB |
19 | #include "wx/defs.h" |
20 | #include "wx/wxchar.h" | |
21 | ||
98020767 VZ |
22 | // ---------------------------------------------------------------------------- |
23 | // wxMessageOutput is a class abstracting formatted output target, i.e. | |
24 | // something you can printf() to | |
25 | // ---------------------------------------------------------------------------- | |
26 | ||
bddd7a8d | 27 | class WXDLLIMPEXP_BASE wxMessageOutput |
74698d3a MB |
28 | { |
29 | public: | |
98020767 | 30 | virtual ~wxMessageOutput() { } |
74698d3a MB |
31 | |
32 | // show a message to the user | |
33 | virtual void Printf(const wxChar* format, ...) ATTRIBUTE_PRINTF_2 = 0; | |
98020767 | 34 | |
e12a951e VZ |
35 | // gets the current wxMessageOutput object (may be NULL during |
36 | // initialization or shutdown) | |
74698d3a | 37 | static wxMessageOutput* Get(); |
98020767 | 38 | |
74698d3a MB |
39 | // sets the global wxMessageOutput instance; returns the previous one |
40 | static wxMessageOutput* Set(wxMessageOutput* msgout); | |
98020767 | 41 | |
74698d3a MB |
42 | private: |
43 | static wxMessageOutput* ms_msgOut; | |
44 | }; | |
45 | ||
e12a951e VZ |
46 | // ---------------------------------------------------------------------------- |
47 | // implementation showing the message to the user in "best" possible way: uses | |
48 | // native message box if available (currently only under Windows) and stderr | |
49 | // otherwise; unlike wxMessageOutputMessageBox this class is always safe to use | |
50 | // ---------------------------------------------------------------------------- | |
51 | ||
52 | class WXDLLIMPEXP_BASE wxMessageOutputBest : public wxMessageOutput | |
53 | { | |
54 | public: | |
55 | wxMessageOutputBest() { } | |
56 | ||
57 | virtual void Printf(const wxChar* format, ...) ATTRIBUTE_PRINTF_2; | |
58 | }; | |
59 | ||
98020767 VZ |
60 | // ---------------------------------------------------------------------------- |
61 | // implementation which sends output to stderr | |
62 | // ---------------------------------------------------------------------------- | |
63 | ||
bddd7a8d | 64 | class WXDLLIMPEXP_BASE wxMessageOutputStderr : public wxMessageOutput |
74698d3a MB |
65 | { |
66 | public: | |
98020767 | 67 | wxMessageOutputStderr() { } |
74698d3a MB |
68 | |
69 | virtual void Printf(const wxChar* format, ...) ATTRIBUTE_PRINTF_2; | |
70 | }; | |
71 | ||
98020767 VZ |
72 | // ---------------------------------------------------------------------------- |
73 | // implementation which shows output in a message box | |
74 | // ---------------------------------------------------------------------------- | |
75 | ||
74698d3a MB |
76 | #if wxUSE_GUI |
77 | ||
bddd7a8d | 78 | class WXDLLIMPEXP_CORE wxMessageOutputMessageBox : public wxMessageOutput |
74698d3a MB |
79 | { |
80 | public: | |
98020767 | 81 | wxMessageOutputMessageBox() { } |
74698d3a MB |
82 | |
83 | virtual void Printf(const wxChar* format, ...) ATTRIBUTE_PRINTF_2; | |
84 | }; | |
85 | ||
ef357cda | 86 | #endif // wxUSE_GUI |
74698d3a | 87 | |
e2478fde VZ |
88 | // ---------------------------------------------------------------------------- |
89 | // implementation using the native way of outputting debug messages | |
90 | // ---------------------------------------------------------------------------- | |
91 | ||
bddd7a8d | 92 | class WXDLLIMPEXP_BASE wxMessageOutputDebug : public wxMessageOutput |
e2478fde VZ |
93 | { |
94 | public: | |
95 | wxMessageOutputDebug() { } | |
96 | ||
97 | virtual void Printf(const wxChar* format, ...) ATTRIBUTE_PRINTF_2; | |
98 | }; | |
99 | ||
98020767 VZ |
100 | // ---------------------------------------------------------------------------- |
101 | // implementation using wxLog (mainly for backwards compatibility) | |
102 | // ---------------------------------------------------------------------------- | |
103 | ||
bddd7a8d | 104 | class WXDLLIMPEXP_BASE wxMessageOutputLog : public wxMessageOutput |
74698d3a MB |
105 | { |
106 | public: | |
98020767 | 107 | wxMessageOutputLog() { } |
74698d3a MB |
108 | |
109 | virtual void Printf(const wxChar* format, ...) ATTRIBUTE_PRINTF_2; | |
110 | }; | |
111 | ||
74698d3a MB |
112 | #endif |
113 | // _WX_MSGOUT_H_ |