]> git.saurik.com Git - wxWidgets.git/blame_incremental - src/common/msgout.cpp
Fix wxFileSystem::FileNameToURL() for Unicode file names.
[wxWidgets.git] / src / common / msgout.cpp
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: src/common/msgout.cpp
3// Purpose: wxMessageOutput implementation
4// Author: Mattia Barbon
5// Modified by:
6// Created: 17.07.02
7// RCS-ID: $Id$
8// Copyright: (c) the wxWidgets team
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ---------------------------------------------------------------------------
17// headers
18// ---------------------------------------------------------------------------
19
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"
31 #include "wx/intl.h"
32 #include "wx/log.h"
33 #if wxUSE_GUI
34 #include "wx/msgdlg.h"
35 #endif // wxUSE_GUI
36#endif
37
38#include "wx/msgout.h"
39#include "wx/apptrait.h"
40#include <stdarg.h>
41#include <stdio.h>
42
43#if defined(__WINDOWS__)
44 #include "wx/msw/private.h"
45#endif
46
47// ===========================================================================
48// implementation
49// ===========================================================================
50
51#if wxUSE_BASE
52
53// ----------------------------------------------------------------------------
54// wxMessageOutput
55// ----------------------------------------------------------------------------
56
57wxMessageOutput* wxMessageOutput::ms_msgOut = 0;
58
59wxMessageOutput* wxMessageOutput::Get()
60{
61 if ( !ms_msgOut && wxTheApp )
62 {
63 ms_msgOut = wxTheApp->GetTraits()->CreateMessageOutput();
64 }
65
66 return ms_msgOut;
67}
68
69wxMessageOutput* wxMessageOutput::Set(wxMessageOutput* msgout)
70{
71 wxMessageOutput* old = ms_msgOut;
72 ms_msgOut = msgout;
73 return old;
74}
75
76#if !wxUSE_UTF8_LOCALE_ONLY
77void wxMessageOutput::DoPrintfWchar(const wxChar *format, ...)
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}
88#endif // !wxUSE_UTF8_LOCALE_ONLY
89
90#if wxUSE_UNICODE_UTF8
91void 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
103
104// ----------------------------------------------------------------------------
105// wxMessageOutputBest
106// ----------------------------------------------------------------------------
107
108void wxMessageOutputBest::Output(const wxString& str)
109{
110#ifdef __WINDOWS__
111 // decide whether to use console output or not
112 wxAppTraits * const traits = wxTheApp ? wxTheApp->GetTraits() : NULL;
113 const bool hasStderr = traits ? traits->CanUseStderr() : false;
114
115 if ( !(m_flags & wxMSGOUT_PREFER_MSGBOX) )
116 {
117 if ( hasStderr && traits->WriteToStderr(AppendLineFeedIfNeeded(str)) )
118 return;
119 }
120
121 ::MessageBox(NULL, str.t_str(), NULL, MB_ICONINFORMATION | MB_OK);
122#else // !__WINDOWS__
123 // TODO: use the native message box for the other ports too
124 wxMessageOutputStderr::Output(str);
125#endif // __WINDOWS__/!__WINDOWS__
126}
127
128// ----------------------------------------------------------------------------
129// wxMessageOutputStderr
130// ----------------------------------------------------------------------------
131
132wxString wxMessageOutputStderr::AppendLineFeedIfNeeded(const wxString& str)
133{
134 wxString strLF(str);
135 if ( strLF.empty() || *strLF.rbegin() != '\n' )
136 strLF += '\n';
137
138 return strLF;
139}
140
141void wxMessageOutputStderr::Output(const wxString& str)
142{
143 const wxString strWithLF = AppendLineFeedIfNeeded(str);
144 const wxWX2MBbuf buf = strWithLF.mb_str();
145
146 if ( buf )
147 fprintf(m_fp, "%s", (const char*) buf);
148 else // print at least something
149 fprintf(m_fp, "%s", (const char*) strWithLF.ToAscii());
150
151 fflush(m_fp);
152}
153
154// ----------------------------------------------------------------------------
155// wxMessageOutputDebug
156// ----------------------------------------------------------------------------
157
158void wxMessageOutputDebug::Output(const wxString& str)
159{
160#if defined(__WXMSW__) && !defined(__WXMICROWIN__)
161 wxString out(AppendLineFeedIfNeeded(str));
162 out.Replace(wxT("\t"), wxT(" "));
163 out.Replace(wxT("\n"), wxT("\r\n"));
164 ::OutputDebugString(out.t_str());
165#else
166 // TODO: use native debug output function for the other ports too
167 wxMessageOutputStderr::Output(str);
168#endif // platform
169}
170
171// ----------------------------------------------------------------------------
172// wxMessageOutputLog
173// ----------------------------------------------------------------------------
174
175void wxMessageOutputLog::Output(const wxString& str)
176{
177 wxString out(str);
178
179 out.Replace(wxT("\t"), wxT(" "));
180
181 wxLogMessage(wxT("%s"), out.c_str());
182}
183
184#endif // wxUSE_BASE
185
186// ----------------------------------------------------------------------------
187// wxMessageOutputMessageBox
188// ----------------------------------------------------------------------------
189
190#if wxUSE_GUI && wxUSE_MSGDLG
191
192void wxMessageOutputMessageBox::Output(const wxString& str)
193{
194 wxString out(str);
195
196 // the native MSW msg box understands the TABs, others don't
197#ifndef __WXMSW__
198 out.Replace(wxT("\t"), wxT(" "));
199#endif
200
201 wxString title = wxT("wxWidgets") ;
202 if (wxTheApp) title = wxTheApp->GetAppDisplayName();
203
204 ::wxMessageBox(out, title);
205}
206
207#endif // wxUSE_GUI