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$
|
2004-05-23 14:56:36 +00:00
|
|
|
// Copyright: (c) wxWidgets team
|
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
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2003-08-24 16:38:02 +00:00
|
|
|
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) && !defined(__EMX__)
|
|
|
|
// Some older compilers (such as EMX) cannot handle
|
2004-09-17 22:23:59 +00:00
|
|
|
// #pragma interface/implementation correctly, iff
|
2003-08-24 16:38:02 +00:00
|
|
|
// #pragma implementation is used in _two_ translation
|
|
|
|
// units (as created by e.g. event.cpp compiled for
|
|
|
|
// libwx_base and event.cpp compiled for libwx_gui_core).
|
|
|
|
// So we must not use those pragmas for those compilers in
|
|
|
|
// such files.
|
2002-07-24 19:29:53 +00:00
|
|
|
#pragma interface "msgout.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "wx/defs.h"
|
|
|
|
#include "wx/wxchar.h"
|
|
|
|
|
2002-08-30 00:39:33 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxMessageOutput is a class abstracting formatted output target, i.e.
|
|
|
|
// something you can printf() to
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2003-07-02 01:59:24 +00:00
|
|
|
class WXDLLIMPEXP_BASE wxMessageOutput
|
2002-07-24 19:29:53 +00:00
|
|
|
{
|
|
|
|
public:
|
2002-08-30 00:39:33 +00:00
|
|
|
virtual ~wxMessageOutput() { }
|
2002-07-24 19:29:53 +00:00
|
|
|
|
|
|
|
// show a message to the user
|
|
|
|
virtual void Printf(const wxChar* format, ...) ATTRIBUTE_PRINTF_2 = 0;
|
2002-08-30 00:39:33 +00:00
|
|
|
|
2002-07-24 19:29:53 +00:00
|
|
|
// gets the current wxMessageOutput object
|
|
|
|
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
|
|
|
|
2002-07-24 19:29:53 +00:00
|
|
|
private:
|
|
|
|
static wxMessageOutput* ms_msgOut;
|
|
|
|
};
|
|
|
|
|
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
|
|
|
|
|
|
|
virtual void Printf(const wxChar* format, ...) ATTRIBUTE_PRINTF_2;
|
|
|
|
};
|
|
|
|
|
2002-08-30 00:39:33 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// implementation which shows output in a message box
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2002-07-24 19:29:53 +00:00
|
|
|
#if wxUSE_GUI
|
|
|
|
|
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
|
|
|
|
|
|
|
virtual void Printf(const wxChar* format, ...) ATTRIBUTE_PRINTF_2;
|
|
|
|
};
|
|
|
|
|
2002-08-03 23:30:55 +00:00
|
|
|
#endif // wxUSE_GUI
|
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() { }
|
|
|
|
|
|
|
|
virtual void Printf(const wxChar* format, ...) ATTRIBUTE_PRINTF_2;
|
|
|
|
};
|
|
|
|
|
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
|
|
|
|
|
|
|
virtual void Printf(const wxChar* format, ...) ATTRIBUTE_PRINTF_2;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
// _WX_MSGOUT_H_
|