]>
Commit | Line | Data |
---|---|---|
74698d3a | 1 | ///////////////////////////////////////////////////////////////////////////// |
e4db172a | 2 | // Name: src/common/msgout.cpp |
74698d3a MB |
3 | // Purpose: wxMessageOutput implementation |
4 | // Author: Mattia Barbon | |
5 | // Modified by: | |
6 | // Created: 17.07.02 | |
7 | // RCS-ID: $Id$ | |
77ffb593 | 8 | // Copyright: (c) the wxWidgets team |
65571936 | 9 | // Licence: wxWindows licence |
74698d3a MB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | // ============================================================================ | |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // --------------------------------------------------------------------------- | |
17 | // headers | |
18 | // --------------------------------------------------------------------------- | |
19 | ||
74698d3a MB |
20 | // For compilers that support precompilation, includes "wx.h". |
21 | #include "wx/wxprec.h" | |
22 | ||
23 | #if defined(__BORLANDC__) | |
24 | #pragma hdrstop | |
25 | #endif | |
26 | ||
27 | #ifndef WX_PRECOMP | |
28 | #include "wx/string.h" | |
29 | #include "wx/ffile.h" | |
30 | #include "wx/app.h" | |
a90253f0 | 31 | #include "wx/intl.h" |
e4db172a | 32 | #include "wx/log.h" |
74698d3a MB |
33 | #if wxUSE_GUI |
34 | #include "wx/msgdlg.h" | |
35 | #endif // wxUSE_GUI | |
36 | #endif | |
37 | ||
38 | #include "wx/msgout.h" | |
7219fc4f | 39 | #include "wx/apptrait.h" |
74698d3a MB |
40 | #include <stdarg.h> |
41 | #include <stdio.h> | |
42 | ||
532d575b | 43 | #if defined(__WINDOWS__) |
e6b02f3f VS |
44 | #include "wx/msw/private.h" |
45 | #endif | |
0ff5799a SC |
46 | #ifdef __WXMAC__ |
47 | #include "wx/mac/private.h" | |
48 | #endif | |
e6b02f3f | 49 | |
74698d3a MB |
50 | // =========================================================================== |
51 | // implementation | |
52 | // =========================================================================== | |
53 | ||
ec67cff1 | 54 | #if wxUSE_BASE |
e2478fde VZ |
55 | |
56 | // ---------------------------------------------------------------------------- | |
57 | // wxMessageOutput | |
58 | // ---------------------------------------------------------------------------- | |
59 | ||
74698d3a MB |
60 | wxMessageOutput* wxMessageOutput::ms_msgOut = 0; |
61 | ||
62 | wxMessageOutput* wxMessageOutput::Get() | |
63 | { | |
a69be60b | 64 | if ( !ms_msgOut && wxTheApp ) |
e02911a2 | 65 | { |
dc6d5e38 | 66 | ms_msgOut = wxTheApp->GetTraits()->CreateMessageOutput(); |
e02911a2 MB |
67 | } |
68 | ||
74698d3a MB |
69 | return ms_msgOut; |
70 | } | |
71 | ||
72 | wxMessageOutput* wxMessageOutput::Set(wxMessageOutput* msgout) | |
73 | { | |
74 | wxMessageOutput* old = ms_msgOut; | |
75 | ms_msgOut = msgout; | |
76 | return old; | |
77 | } | |
78 | ||
d1f6e2cf VS |
79 | #if !wxUSE_UTF8_LOCALE_ONLY |
80 | void wxMessageOutput::DoPrintfWchar(const wxChar *format, ...) | |
5b077ec7 VS |
81 | { |
82 | va_list args; | |
83 | va_start(args, format); | |
84 | wxString out; | |
85 | ||
86 | out.PrintfV(format, args); | |
87 | va_end(args); | |
88 | ||
89 | Output(out); | |
90 | } | |
d1f6e2cf VS |
91 | #endif // !wxUSE_UTF8_LOCALE_ONLY |
92 | ||
93 | #if wxUSE_UNICODE_UTF8 | |
94 | void wxMessageOutput::DoPrintfUtf8(const char *format, ...) | |
95 | { | |
96 | va_list args; | |
97 | va_start(args, format); | |
98 | wxString out; | |
99 | ||
100 | out.PrintfV(format, args); | |
101 | va_end(args); | |
102 | ||
103 | Output(out); | |
104 | } | |
105 | #endif // wxUSE_UNICODE_UTF8 | |
5b077ec7 | 106 | |
e12a951e VZ |
107 | // ---------------------------------------------------------------------------- |
108 | // wxMessageOutputBest | |
109 | // ---------------------------------------------------------------------------- | |
110 | ||
858cab30 VZ |
111 | #ifdef __WINDOWS__ |
112 | ||
113 | // check if we're running in a console under Windows | |
114 | static inline bool IsInConsole() | |
115 | { | |
116 | #ifdef __WXWINCE__ | |
117 | return false; | |
118 | #else // !__WXWINCE__ | |
119 | HANDLE hStdErr = ::GetStdHandle(STD_ERROR_HANDLE); | |
120 | return hStdErr && hStdErr != INVALID_HANDLE_VALUE; | |
121 | #endif // __WXWINCE__/!__WXWINCE__ | |
122 | } | |
123 | ||
124 | #endif // __WINDOWS__ | |
125 | ||
5b077ec7 | 126 | void wxMessageOutputBest::Output(const wxString& str) |
e12a951e | 127 | { |
e12a951e | 128 | #ifdef __WINDOWS__ |
858cab30 | 129 | if ( !IsInConsole() ) |
9d03b4ee | 130 | { |
e0a050e3 VS |
131 | ::MessageBox(NULL, str.wx_str(), _T("wxWidgets"), |
132 | MB_ICONINFORMATION | MB_OK); | |
9d03b4ee VZ |
133 | } |
134 | else | |
e12a951e | 135 | #endif // __WINDOWS__/!__WINDOWS__ |
9d03b4ee | 136 | { |
8237a1c0 | 137 | const wxWX2MBbuf buf = str.mb_str(); |
5b077ec7 VS |
138 | |
139 | if ( buf ) | |
140 | fprintf(stderr, "%s", (const char*) buf); | |
141 | else // print at least something | |
142 | fprintf(stderr, "%s", (const char*) str.ToAscii()); | |
9d03b4ee | 143 | } |
e12a951e VZ |
144 | } |
145 | ||
74698d3a MB |
146 | // ---------------------------------------------------------------------------- |
147 | // wxMessageOutputStderr | |
148 | // ---------------------------------------------------------------------------- | |
149 | ||
5b077ec7 | 150 | void wxMessageOutputStderr::Output(const wxString& str) |
74698d3a | 151 | { |
8237a1c0 | 152 | const wxWX2MBbuf buf = str.mb_str(); |
74698d3a | 153 | |
5b077ec7 VS |
154 | if ( buf ) |
155 | fprintf(stderr, "%s", (const char*) buf); | |
156 | else // print at least something | |
157 | fprintf(stderr, "%s", (const char*) str.ToAscii()); | |
74698d3a MB |
158 | } |
159 | ||
160 | // ---------------------------------------------------------------------------- | |
e2478fde | 161 | // wxMessageOutputDebug |
74698d3a MB |
162 | // ---------------------------------------------------------------------------- |
163 | ||
5b077ec7 | 164 | void wxMessageOutputDebug::Output(const wxString& str) |
74698d3a | 165 | { |
5b077ec7 | 166 | wxString out(str); |
74698d3a | 167 | |
82ef81ed | 168 | #if defined(__WXMSW__) && !defined(__WXMICROWIN__) |
311da78a | 169 | out.Replace(wxT("\t"), wxT(" ")); |
7e6f48d1 | 170 | out.Replace(wxT("\n"), wxT("\r\n")); |
e0a050e3 | 171 | ::OutputDebugString(out.wx_str()); |
d6e6a35c | 172 | #elif defined(__WXMAC__) && !defined(__DARWIN__) |
e2478fde VZ |
173 | if ( wxIsDebuggerRunning() ) |
174 | { | |
175 | Str255 pstr; | |
0ff5799a | 176 | wxString output = out + wxT(";g") ; |
e2478fde VZ |
177 | wxMacStringToPascal(output.c_str(), pstr); |
178 | ||
179 | #ifdef __powerc | |
180 | DebugStr(pstr); | |
181 | #else | |
182 | SysBreakStr(pstr); | |
183 | #endif | |
184 | } | |
7873ca31 SC |
185 | #else |
186 | wxFputs( out , stderr ) ; | |
187 | if ( out.Right(1) != wxT("\n") ) | |
188 | wxFputs( wxT("\n") , stderr ) ; | |
189 | fflush( stderr ) ; | |
e2478fde | 190 | #endif // platform |
74698d3a MB |
191 | } |
192 | ||
74698d3a MB |
193 | // ---------------------------------------------------------------------------- |
194 | // wxMessageOutputLog | |
195 | // ---------------------------------------------------------------------------- | |
196 | ||
5b077ec7 | 197 | void wxMessageOutputLog::Output(const wxString& str) |
74698d3a | 198 | { |
5b077ec7 | 199 | wxString out(str); |
74698d3a | 200 | |
311da78a | 201 | out.Replace(wxT("\t"), wxT(" ")); |
a69be60b | 202 | |
8887e234 | 203 | ::wxLogMessage(wxT("%s"), out.c_str()); |
74698d3a | 204 | } |
e2478fde | 205 | |
ec67cff1 | 206 | #endif // wxUSE_BASE |
e2478fde VZ |
207 | |
208 | // ---------------------------------------------------------------------------- | |
209 | // wxMessageOutputMessageBox | |
210 | // ---------------------------------------------------------------------------- | |
211 | ||
fae86641 | 212 | #if wxUSE_GUI && wxUSE_MSGDLG |
e2478fde | 213 | |
5b077ec7 | 214 | void wxMessageOutputMessageBox::Output(const wxString& str) |
e2478fde | 215 | { |
5b077ec7 | 216 | wxString out(str); |
e2478fde VZ |
217 | |
218 | // the native MSW msg box understands the TABs, others don't | |
219 | #ifndef __WXMSW__ | |
220 | out.Replace(wxT("\t"), wxT(" ")); | |
221 | #endif | |
222 | ||
223 | wxString title; | |
224 | if ( wxTheApp ) | |
9cf3d218 | 225 | title.Printf(_("%s message"), wxTheApp->GetAppDisplayName().c_str()); |
e2478fde VZ |
226 | |
227 | ::wxMessageBox(out, title); | |
228 | } | |
229 | ||
230 | #endif // wxUSE_GUI |