2002-07-24 19:29:53 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/msgout.h
|
|
|
|
// Purpose: wxMessageOutput class. Shows a message to the user
|
|
|
|
// Author: Mattia Barbon
|
|
|
|
// Modified by:
|
|
|
|
// Created: 17.07.02
|
|
|
|
// RCS-ID: $Id$
|
2005-05-04 18:57:50 +00:00
|
|
|
// Copyright: (c) Mattia Barbon
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
2002-07-24 19:29:53 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_MSGOUT_H_
|
|
|
|
#define _WX_MSGOUT_H_
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// headers
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#include "wx/defs.h"
|
2007-03-19 14:45:38 +00:00
|
|
|
#include "wx/chartype.h"
|
2007-03-17 10:26:10 +00:00
|
|
|
#include "wx/strvararg.h"
|
2002-07-24 19:29:53 +00:00
|
|
|
|
2002-08-30 00:39:33 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxMessageOutput is a class abstracting formatted output target, i.e.
|
|
|
|
// something you can printf() to
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2007-03-17 10:26:10 +00:00
|
|
|
// NB: VC6 has a bug that causes linker errors if you have template methods
|
|
|
|
// in a class using __declspec(dllimport). The solution is to split such
|
|
|
|
// class into two classes, one that contains the template methods and does
|
|
|
|
// *not* use WXDLLIMPEXP_BASE and another class that contains the rest
|
|
|
|
// (with DLL linkage).
|
|
|
|
class wxMessageOutputBase
|
2002-07-24 19:29:53 +00:00
|
|
|
{
|
|
|
|
public:
|
2007-03-17 10:26:10 +00:00
|
|
|
virtual ~wxMessageOutputBase() { }
|
2002-07-24 19:29:53 +00:00
|
|
|
|
|
|
|
// show a message to the user
|
2007-04-26 11:40:04 +00:00
|
|
|
// void Printf(const wxString& format, ...) = 0;
|
2007-05-04 10:41:08 +00:00
|
|
|
WX_DEFINE_VARARG_FUNC_VOID(Printf, 1, (const wxFormatString&),
|
2007-05-03 10:50:25 +00:00
|
|
|
DoPrintfWchar, DoPrintfUtf8)
|
2007-04-26 11:40:04 +00:00
|
|
|
#ifdef __WATCOMC__
|
|
|
|
// workaround for http://bugzilla.openwatcom.org/show_bug.cgi?id=351
|
2007-05-06 14:11:14 +00:00
|
|
|
WX_VARARG_WATCOM_WORKAROUND(void, Printf, 1, (const wxString&),
|
|
|
|
(wxFormatString(f1)));
|
|
|
|
WX_VARARG_WATCOM_WORKAROUND(void, Printf, 1, (const wxCStrData&),
|
|
|
|
(wxFormatString(f1)));
|
|
|
|
WX_VARARG_WATCOM_WORKAROUND(void, Printf, 1, (const char*),
|
|
|
|
(wxFormatString(f1)));
|
|
|
|
WX_VARARG_WATCOM_WORKAROUND(void, Printf, 1, (const wchar_t*),
|
|
|
|
(wxFormatString(f1)));
|
2007-04-26 11:40:04 +00:00
|
|
|
#endif
|
2007-03-17 10:26:10 +00:00
|
|
|
|
|
|
|
protected:
|
2007-04-18 09:34:35 +00:00
|
|
|
// NB: this is pure virtual so that it can be implemented in dllexported
|
|
|
|
// wxMessagOutput class
|
2007-05-03 10:50:25 +00:00
|
|
|
#if !wxUSE_UTF8_LOCALE_ONLY
|
|
|
|
virtual void DoPrintfWchar(const wxChar *format, ...) = 0;
|
|
|
|
#endif
|
|
|
|
#if wxUSE_UNICODE_UTF8
|
|
|
|
virtual void DoPrintfUtf8(const char *format, ...) = 0;
|
|
|
|
#endif
|
2007-04-18 09:34:35 +00:00
|
|
|
|
|
|
|
// called by DoPrintf() to output formatted string
|
2007-04-12 21:13:05 +00:00
|
|
|
virtual void Output(const wxString& str) = 0;
|
2007-03-17 10:26:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#ifdef __VISUALC__
|
|
|
|
// "non dll-interface class 'wxStringPrintfMixin' used as base interface
|
|
|
|
// for dll-interface class 'wxString'" -- this is OK in our case
|
|
|
|
#pragma warning (disable:4275)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
class WXDLLIMPEXP_BASE wxMessageOutput : public wxMessageOutputBase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual ~wxMessageOutput() { }
|
2002-08-30 00:39:33 +00:00
|
|
|
|
2005-06-06 23:34:24 +00:00
|
|
|
// gets the current wxMessageOutput object (may be NULL during
|
|
|
|
// initialization or shutdown)
|
2002-07-24 19:29:53 +00:00
|
|
|
static wxMessageOutput* Get();
|
2002-08-30 00:39:33 +00:00
|
|
|
|
2002-07-24 19:29:53 +00:00
|
|
|
// sets the global wxMessageOutput instance; returns the previous one
|
|
|
|
static wxMessageOutput* Set(wxMessageOutput* msgout);
|
2002-08-30 00:39:33 +00:00
|
|
|
|
2007-04-18 09:34:35 +00:00
|
|
|
protected:
|
2007-05-03 10:50:25 +00:00
|
|
|
#if !wxUSE_UTF8_LOCALE_ONLY
|
|
|
|
virtual void DoPrintfWchar(const wxChar *format, ...);
|
|
|
|
#endif
|
|
|
|
#if wxUSE_UNICODE_UTF8
|
|
|
|
virtual void DoPrintfUtf8(const char *format, ...);
|
|
|
|
#endif
|
2007-04-18 09:34:35 +00:00
|
|
|
virtual void Output(const wxString& str) = 0;
|
|
|
|
|
2002-07-24 19:29:53 +00:00
|
|
|
private:
|
|
|
|
static wxMessageOutput* ms_msgOut;
|
|
|
|
};
|
|
|
|
|
2007-03-17 10:26:10 +00:00
|
|
|
#ifdef __VISUALC__
|
|
|
|
#pragma warning (default:4275)
|
|
|
|
#endif
|
|
|
|
|
2005-06-06 23:34:24 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// implementation showing the message to the user in "best" possible way: uses
|
|
|
|
// native message box if available (currently only under Windows) and stderr
|
|
|
|
// otherwise; unlike wxMessageOutputMessageBox this class is always safe to use
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class WXDLLIMPEXP_BASE wxMessageOutputBest : public wxMessageOutput
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxMessageOutputBest() { }
|
|
|
|
|
2007-03-17 10:26:10 +00:00
|
|
|
protected:
|
2007-04-12 21:13:05 +00:00
|
|
|
virtual void Output(const wxString& str);
|
2005-06-06 23:34:24 +00:00
|
|
|
};
|
|
|
|
|
2002-08-30 00:39:33 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// implementation which sends output to stderr
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2003-07-02 01:59:24 +00:00
|
|
|
class WXDLLIMPEXP_BASE wxMessageOutputStderr : public wxMessageOutput
|
2002-07-24 19:29:53 +00:00
|
|
|
{
|
|
|
|
public:
|
2002-08-30 00:39:33 +00:00
|
|
|
wxMessageOutputStderr() { }
|
2002-07-24 19:29:53 +00:00
|
|
|
|
2007-03-17 10:26:10 +00:00
|
|
|
protected:
|
2007-04-12 21:13:05 +00:00
|
|
|
virtual void Output(const wxString& str);
|
2002-07-24 19:29:53 +00:00
|
|
|
};
|
|
|
|
|
2002-08-30 00:39:33 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// implementation which shows output in a message box
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2007-07-11 00:02:51 +00:00
|
|
|
#if wxUSE_GUI && wxUSE_MSGDLG
|
2002-07-24 19:29:53 +00:00
|
|
|
|
2003-07-02 01:59:24 +00:00
|
|
|
class WXDLLIMPEXP_CORE wxMessageOutputMessageBox : public wxMessageOutput
|
2002-07-24 19:29:53 +00:00
|
|
|
{
|
|
|
|
public:
|
2002-08-30 00:39:33 +00:00
|
|
|
wxMessageOutputMessageBox() { }
|
2002-07-24 19:29:53 +00:00
|
|
|
|
2007-03-17 10:26:10 +00:00
|
|
|
protected:
|
2007-04-12 21:13:05 +00:00
|
|
|
virtual void Output(const wxString& str);
|
2002-07-24 19:29:53 +00:00
|
|
|
};
|
|
|
|
|
2007-07-11 00:02:51 +00:00
|
|
|
#endif // wxUSE_GUI && wxUSE_MSGDLG
|
2002-07-24 19:29:53 +00:00
|
|
|
|
2003-06-24 00:56:19 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// implementation using the native way of outputting debug messages
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2003-07-02 01:59:24 +00:00
|
|
|
class WXDLLIMPEXP_BASE wxMessageOutputDebug : public wxMessageOutput
|
2003-06-24 00:56:19 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxMessageOutputDebug() { }
|
|
|
|
|
2007-03-17 10:26:10 +00:00
|
|
|
protected:
|
2007-04-12 21:13:05 +00:00
|
|
|
virtual void Output(const wxString& str);
|
2003-06-24 00:56:19 +00:00
|
|
|
};
|
|
|
|
|
2002-08-30 00:39:33 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// implementation using wxLog (mainly for backwards compatibility)
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2003-07-02 01:59:24 +00:00
|
|
|
class WXDLLIMPEXP_BASE wxMessageOutputLog : public wxMessageOutput
|
2002-07-24 19:29:53 +00:00
|
|
|
{
|
|
|
|
public:
|
2002-08-30 00:39:33 +00:00
|
|
|
wxMessageOutputLog() { }
|
2002-07-24 19:29:53 +00:00
|
|
|
|
2007-03-17 10:26:10 +00:00
|
|
|
protected:
|
2007-04-12 21:13:05 +00:00
|
|
|
virtual void Output(const wxString& str);
|
2002-07-24 19:29:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
// _WX_MSGOUT_H_
|