]>
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 | |
46 | ||
74698d3a MB |
47 | // =========================================================================== |
48 | // implementation | |
49 | // =========================================================================== | |
50 | ||
ec67cff1 | 51 | #if wxUSE_BASE |
e2478fde VZ |
52 | |
53 | // ---------------------------------------------------------------------------- | |
54 | // wxMessageOutput | |
55 | // ---------------------------------------------------------------------------- | |
56 | ||
74698d3a MB |
57 | wxMessageOutput* wxMessageOutput::ms_msgOut = 0; |
58 | ||
59 | wxMessageOutput* wxMessageOutput::Get() | |
60 | { | |
a69be60b | 61 | if ( !ms_msgOut && wxTheApp ) |
e02911a2 | 62 | { |
dc6d5e38 | 63 | ms_msgOut = wxTheApp->GetTraits()->CreateMessageOutput(); |
e02911a2 MB |
64 | } |
65 | ||
74698d3a MB |
66 | return ms_msgOut; |
67 | } | |
68 | ||
69 | wxMessageOutput* wxMessageOutput::Set(wxMessageOutput* msgout) | |
70 | { | |
71 | wxMessageOutput* old = ms_msgOut; | |
72 | ms_msgOut = msgout; | |
73 | return old; | |
74 | } | |
75 | ||
d1f6e2cf VS |
76 | #if !wxUSE_UTF8_LOCALE_ONLY |
77 | void wxMessageOutput::DoPrintfWchar(const wxChar *format, ...) | |
5b077ec7 VS |
78 | { |
79 | va_list args; | |
80 | va_start(args, format); | |
81 | wxString out; | |
82 | ||
83 | out.PrintfV(format, args); | |
84 | va_end(args); | |
85 | ||
86 | Output(out); | |
87 | } | |
d1f6e2cf VS |
88 | #endif // !wxUSE_UTF8_LOCALE_ONLY |
89 | ||
90 | #if wxUSE_UNICODE_UTF8 | |
91 | void wxMessageOutput::DoPrintfUtf8(const char *format, ...) | |
92 | { | |
93 | va_list args; | |
94 | va_start(args, format); | |
95 | wxString out; | |
96 | ||
97 | out.PrintfV(format, args); | |
98 | va_end(args); | |
99 | ||
100 | Output(out); | |
101 | } | |
102 | #endif // wxUSE_UNICODE_UTF8 | |
5b077ec7 | 103 | |
e12a951e VZ |
104 | // ---------------------------------------------------------------------------- |
105 | // wxMessageOutputBest | |
106 | // ---------------------------------------------------------------------------- | |
107 | ||
858cab30 VZ |
108 | #ifdef __WINDOWS__ |
109 | ||
110 | // check if we're running in a console under Windows | |
111 | static inline bool IsInConsole() | |
112 | { | |
113 | #ifdef __WXWINCE__ | |
114 | return false; | |
115 | #else // !__WXWINCE__ | |
116 | HANDLE hStdErr = ::GetStdHandle(STD_ERROR_HANDLE); | |
117 | return hStdErr && hStdErr != INVALID_HANDLE_VALUE; | |
118 | #endif // __WXWINCE__/!__WXWINCE__ | |
119 | } | |
120 | ||
121 | #endif // __WINDOWS__ | |
122 | ||
5b077ec7 | 123 | void wxMessageOutputBest::Output(const wxString& str) |
e12a951e | 124 | { |
e12a951e | 125 | #ifdef __WINDOWS__ |
858cab30 | 126 | if ( !IsInConsole() ) |
9d03b4ee | 127 | { |
e0a050e3 VS |
128 | ::MessageBox(NULL, str.wx_str(), _T("wxWidgets"), |
129 | MB_ICONINFORMATION | MB_OK); | |
9d03b4ee VZ |
130 | } |
131 | else | |
e12a951e | 132 | #endif // __WINDOWS__/!__WINDOWS__ |
9d03b4ee | 133 | { |
8237a1c0 | 134 | const wxWX2MBbuf buf = str.mb_str(); |
5b077ec7 VS |
135 | |
136 | if ( buf ) | |
137 | fprintf(stderr, "%s", (const char*) buf); | |
138 | else // print at least something | |
139 | fprintf(stderr, "%s", (const char*) str.ToAscii()); | |
9d03b4ee | 140 | } |
e12a951e VZ |
141 | } |
142 | ||
74698d3a MB |
143 | // ---------------------------------------------------------------------------- |
144 | // wxMessageOutputStderr | |
145 | // ---------------------------------------------------------------------------- | |
146 | ||
5b077ec7 | 147 | void wxMessageOutputStderr::Output(const wxString& str) |
74698d3a | 148 | { |
8237a1c0 | 149 | const wxWX2MBbuf buf = str.mb_str(); |
74698d3a | 150 | |
5b077ec7 VS |
151 | if ( buf ) |
152 | fprintf(stderr, "%s", (const char*) buf); | |
153 | else // print at least something | |
154 | fprintf(stderr, "%s", (const char*) str.ToAscii()); | |
74698d3a MB |
155 | } |
156 | ||
157 | // ---------------------------------------------------------------------------- | |
e2478fde | 158 | // wxMessageOutputDebug |
74698d3a MB |
159 | // ---------------------------------------------------------------------------- |
160 | ||
5b077ec7 | 161 | void wxMessageOutputDebug::Output(const wxString& str) |
74698d3a | 162 | { |
5b077ec7 | 163 | wxString out(str); |
74698d3a | 164 | |
82ef81ed | 165 | #if defined(__WXMSW__) && !defined(__WXMICROWIN__) |
311da78a | 166 | out.Replace(wxT("\t"), wxT(" ")); |
7e6f48d1 | 167 | out.Replace(wxT("\n"), wxT("\r\n")); |
e0a050e3 | 168 | ::OutputDebugString(out.wx_str()); |
7873ca31 SC |
169 | #else |
170 | wxFputs( out , stderr ) ; | |
171 | if ( out.Right(1) != wxT("\n") ) | |
172 | wxFputs( wxT("\n") , stderr ) ; | |
173 | fflush( stderr ) ; | |
e2478fde | 174 | #endif // platform |
74698d3a MB |
175 | } |
176 | ||
74698d3a MB |
177 | // ---------------------------------------------------------------------------- |
178 | // wxMessageOutputLog | |
179 | // ---------------------------------------------------------------------------- | |
180 | ||
5b077ec7 | 181 | void wxMessageOutputLog::Output(const wxString& str) |
74698d3a | 182 | { |
5b077ec7 | 183 | wxString out(str); |
74698d3a | 184 | |
311da78a | 185 | out.Replace(wxT("\t"), wxT(" ")); |
a69be60b | 186 | |
8887e234 | 187 | ::wxLogMessage(wxT("%s"), out.c_str()); |
74698d3a | 188 | } |
e2478fde | 189 | |
ec67cff1 | 190 | #endif // wxUSE_BASE |
e2478fde VZ |
191 | |
192 | // ---------------------------------------------------------------------------- | |
193 | // wxMessageOutputMessageBox | |
194 | // ---------------------------------------------------------------------------- | |
195 | ||
fae86641 | 196 | #if wxUSE_GUI && wxUSE_MSGDLG |
e2478fde | 197 | |
5b077ec7 | 198 | void wxMessageOutputMessageBox::Output(const wxString& str) |
e2478fde | 199 | { |
5b077ec7 | 200 | wxString out(str); |
e2478fde VZ |
201 | |
202 | // the native MSW msg box understands the TABs, others don't | |
203 | #ifndef __WXMSW__ | |
204 | out.Replace(wxT("\t"), wxT(" ")); | |
205 | #endif | |
206 | ||
207 | wxString title; | |
208 | if ( wxTheApp ) | |
9cf3d218 | 209 | title.Printf(_("%s message"), wxTheApp->GetAppDisplayName().c_str()); |
e2478fde VZ |
210 | |
211 | ::wxMessageBox(out, title); | |
212 | } | |
213 | ||
214 | #endif // wxUSE_GUI |