]>
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
.wx_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 wxWX2MBbuf buf
= AppendLineFeedIfNeeded(str
).mb_str();
146 fprintf(stderr
, "%s", (const char*) buf
);
147 else // print at least something
148 fprintf(stderr
, "%s", (const char*) str
.ToAscii());
151 // ----------------------------------------------------------------------------
152 // wxMessageOutputDebug
153 // ----------------------------------------------------------------------------
155 void wxMessageOutputDebug::Output(const wxString
& str
)
157 #if defined(__WXMSW__) && !defined(__WXMICROWIN__)
158 wxString
out(AppendLineFeedIfNeeded(str
));
159 out
.Replace(wxT("\t"), wxT(" "));
160 out
.Replace(wxT("\n"), wxT("\r\n"));
161 ::OutputDebugString(out
.wx_str());
163 // TODO: use native debug output function for the other ports too
164 wxMessageOutputStderr::Output(str
);
168 // ----------------------------------------------------------------------------
169 // wxMessageOutputLog
170 // ----------------------------------------------------------------------------
172 void wxMessageOutputLog::Output(const wxString
& str
)
176 out
.Replace(wxT("\t"), wxT(" "));
178 ::wxLogMessage(wxT("%s"), out
.c_str());
183 // ----------------------------------------------------------------------------
184 // wxMessageOutputMessageBox
185 // ----------------------------------------------------------------------------
187 #if wxUSE_GUI && wxUSE_MSGDLG
189 void wxMessageOutputMessageBox::Output(const wxString
& str
)
193 // the native MSW msg box understands the TABs, others don't
195 out
.Replace(wxT("\t"), wxT(" "));
198 wxString title
= wxT("wxWidgets") ;
199 if (wxTheApp
) title
= wxTheApp
->GetAppDisplayName();
201 ::wxMessageBox(out
, title
);