]>
git.saurik.com Git - wxWidgets.git/blob - src/common/msgout.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/msgout.cpp
3 // Purpose: wxMessageOutput implementation
4 // Author: Mattia Barbon
8 // Copyright: (c) the wxWidgets team
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ---------------------------------------------------------------------------
18 // ---------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
23 #if defined(__BORLANDC__)
28 #include "wx/string.h"
34 #include "wx/msgdlg.h"
38 #include "wx/msgout.h"
39 #include "wx/apptrait.h"
43 #if defined(__WINDOWS__)
44 #include "wx/msw/private.h"
47 // ===========================================================================
49 // ===========================================================================
53 // ----------------------------------------------------------------------------
55 // ----------------------------------------------------------------------------
57 wxMessageOutput
* wxMessageOutput::ms_msgOut
= 0;
59 wxMessageOutput
* wxMessageOutput::Get()
61 if ( !ms_msgOut
&& wxTheApp
)
63 ms_msgOut
= wxTheApp
->GetTraits()->CreateMessageOutput();
69 wxMessageOutput
* wxMessageOutput::Set(wxMessageOutput
* msgout
)
71 wxMessageOutput
* old
= ms_msgOut
;
76 #if !wxUSE_UTF8_LOCALE_ONLY
77 void wxMessageOutput::DoPrintfWchar(const wxChar
*format
, ...)
80 va_start(args
, format
);
83 out
.PrintfV(format
, args
);
88 #endif // !wxUSE_UTF8_LOCALE_ONLY
90 #if wxUSE_UNICODE_UTF8
91 void wxMessageOutput::DoPrintfUtf8(const char *format
, ...)
94 va_start(args
, format
);
97 out
.PrintfV(format
, args
);
102 #endif // wxUSE_UNICODE_UTF8
104 // ----------------------------------------------------------------------------
105 // wxMessageOutputBest
106 // ----------------------------------------------------------------------------
108 void wxMessageOutputBest::Output(const wxString
& str
)
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;
115 if ( !(m_flags
& wxMSGOUT_PREFER_MSGBOX
) )
117 if ( hasStderr
&& traits
->WriteToStderr(AppendLineFeedIfNeeded(str
)) )
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__
128 // ----------------------------------------------------------------------------
129 // wxMessageOutputStderr
130 // ----------------------------------------------------------------------------
132 wxString
wxMessageOutputStderr::AppendLineFeedIfNeeded(const wxString
& str
)
135 if ( strLF
.empty() || *strLF
.rbegin() != '\n' )
141 void wxMessageOutputStderr::Output(const wxString
& str
)
143 const wxString strWithLF
= AppendLineFeedIfNeeded(str
);
144 const wxWX2MBbuf buf
= strWithLF
.mb_str();
147 fprintf(stderr
, "%s", (const char*) buf
);
148 else // print at least something
149 fprintf(stderr
, "%s", (const char*) strWithLF
.ToAscii());
152 // ----------------------------------------------------------------------------
153 // wxMessageOutputDebug
154 // ----------------------------------------------------------------------------
156 void wxMessageOutputDebug::Output(const wxString
& str
)
158 #if defined(__WXMSW__) && !defined(__WXMICROWIN__)
159 wxString
out(AppendLineFeedIfNeeded(str
));
160 out
.Replace(wxT("\t"), wxT(" "));
161 out
.Replace(wxT("\n"), wxT("\r\n"));
162 ::OutputDebugString(out
.t_str());
164 // TODO: use native debug output function for the other ports too
165 wxMessageOutputStderr::Output(str
);
169 // ----------------------------------------------------------------------------
170 // wxMessageOutputLog
171 // ----------------------------------------------------------------------------
173 void wxMessageOutputLog::Output(const wxString
& str
)
177 out
.Replace(wxT("\t"), wxT(" "));
179 ::wxLogMessage(wxT("%s"), out
.c_str());
184 // ----------------------------------------------------------------------------
185 // wxMessageOutputMessageBox
186 // ----------------------------------------------------------------------------
188 #if wxUSE_GUI && wxUSE_MSGDLG
190 void wxMessageOutputMessageBox::Output(const wxString
& str
)
194 // the native MSW msg box understands the TABs, others don't
196 out
.Replace(wxT("\t"), wxT(" "));
199 wxString title
= wxT("wxWidgets") ;
200 if (wxTheApp
) title
= wxTheApp
->GetAppDisplayName();
202 ::wxMessageBox(out
, title
);