2005-03-11 15:34:42 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/msgdlgg.h
|
|
|
|
// Purpose: common header and base class for wxMessageDialog
|
2005-05-04 18:57:50 +00:00
|
|
|
// Author: Julian Smart
|
2005-03-11 15:34:42 +00:00
|
|
|
// Modified by:
|
|
|
|
// Created:
|
|
|
|
// RCS-ID: $Id$
|
2005-05-04 18:57:50 +00:00
|
|
|
// Copyright: (c) Julian Smart
|
2005-03-11 15:34:42 +00:00
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1998-08-15 00:23:28 +00:00
|
|
|
#ifndef _WX_MSGDLG_H_BASE_
|
|
|
|
#define _WX_MSGDLG_H_BASE_
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2005-03-16 16:18:31 +00:00
|
|
|
#include "wx/defs.h"
|
2003-02-28 23:37:46 +00:00
|
|
|
|
2001-06-27 00:27:24 +00:00
|
|
|
#if wxUSE_MSGDLG
|
|
|
|
|
2007-05-24 12:50:42 +00:00
|
|
|
#include "wx/dialog.h"
|
|
|
|
|
2007-11-12 21:37:46 +00:00
|
|
|
WXDLLEXPORT_DATA(extern const char) wxMessageBoxCaptionStr[];
|
2007-05-24 12:50:42 +00:00
|
|
|
|
|
|
|
class WXDLLEXPORT wxMessageDialogBase : public wxDialog
|
2005-03-11 15:34:42 +00:00
|
|
|
{
|
2007-05-24 12:50:42 +00:00
|
|
|
public:
|
|
|
|
// ctors
|
|
|
|
wxMessageDialogBase() { m_dialogStyle = 0; }
|
|
|
|
wxMessageDialogBase(wxWindow *parent,
|
|
|
|
const wxString& message,
|
|
|
|
const wxString& caption,
|
|
|
|
long style)
|
|
|
|
: m_message(message),
|
|
|
|
m_caption(caption)
|
|
|
|
{
|
|
|
|
m_parent = parent;
|
|
|
|
SetMessageDialogStyle(style);
|
|
|
|
}
|
|
|
|
|
|
|
|
// virtual dtor for the base class
|
|
|
|
virtual ~wxMessageDialogBase() { }
|
|
|
|
|
|
|
|
|
|
|
|
// methods for setting up more custom message dialogs -- all functions
|
|
|
|
// return false if they're not implemented
|
|
|
|
virtual bool SetYesNoLabels(const wxString& WXUNUSED(yes),
|
|
|
|
const wxString& WXUNUSED(no))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual bool SetYesNoCancelLabels(const wxString& WXUNUSED(yes),
|
|
|
|
const wxString& WXUNUSED(no),
|
|
|
|
const wxString& WXUNUSED(cancel))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual bool SetOKLabel(const wxString& WXUNUSED(ok))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual bool SetOKCancelLabels(const wxString& WXUNUSED(ok),
|
|
|
|
const wxString& WXUNUSED(cancel))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void SetMessage(const wxString& message)
|
|
|
|
{
|
|
|
|
m_message = message;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void SetExtendedMessage(const wxString& extendedMessage)
|
|
|
|
{
|
|
|
|
m_extendedMessage = extendedMessage;
|
|
|
|
}
|
|
|
|
|
2005-03-11 15:34:42 +00:00
|
|
|
protected:
|
|
|
|
// common validation of wxMessageDialog style
|
|
|
|
void SetMessageDialogStyle(long style)
|
|
|
|
{
|
|
|
|
wxASSERT_MSG( ((style & wxYES_NO) == wxYES_NO) || ((style & wxYES_NO) == 0),
|
|
|
|
_T("wxYES and wxNO may only be used together in wxMessageDialog") );
|
|
|
|
|
|
|
|
wxASSERT_MSG( (style & wxID_OK) != wxID_OK,
|
|
|
|
_T("wxMessageBox: Did you mean wxOK (and not wxID_OK)?") );
|
|
|
|
|
|
|
|
m_dialogStyle = style;
|
|
|
|
}
|
2007-05-24 12:50:42 +00:00
|
|
|
|
|
|
|
long GetMessageDialogStyle() const { return m_dialogStyle; }
|
|
|
|
|
|
|
|
|
|
|
|
// for the platforms not supporting separate main and extended messages
|
|
|
|
// this function should be used to combine both of them in a single string
|
|
|
|
wxString GetFullMessage() const
|
2005-03-11 15:34:42 +00:00
|
|
|
{
|
2007-05-24 12:50:42 +00:00
|
|
|
wxString msg = m_message;
|
|
|
|
if ( !m_extendedMessage.empty() )
|
|
|
|
msg << "\n\n" << m_extendedMessage;
|
|
|
|
|
|
|
|
return msg;
|
2005-03-11 15:34:42 +00:00
|
|
|
}
|
|
|
|
|
2007-05-24 12:50:42 +00:00
|
|
|
wxString m_message,
|
|
|
|
m_extendedMessage,
|
|
|
|
m_caption;
|
2005-03-11 15:34:42 +00:00
|
|
|
long m_dialogStyle;
|
|
|
|
};
|
|
|
|
|
2007-05-24 12:50:42 +00:00
|
|
|
#if defined(__WX_COMPILING_MSGDLGG_CPP__) || \
|
|
|
|
defined(__WXUNIVERSAL__) || defined(__WXGPE__) || \
|
|
|
|
(defined(__WXGTK__) && !defined(__WXGTK20__))
|
|
|
|
#include "wx/generic/msgdlgg.h"
|
|
|
|
|
|
|
|
#define wxMessageDialog wxGenericMessageDialog
|
2007-11-09 18:11:17 +00:00
|
|
|
#elif defined(__WXCOCOA__)
|
|
|
|
#include "wx/cocoa/msgdlg.h"
|
2004-12-20 12:44:22 +00:00
|
|
|
#elif defined(__WXPALMOS__)
|
2007-05-24 12:50:42 +00:00
|
|
|
#include "wx/palmos/msgdlg.h"
|
2001-06-29 19:18:30 +00:00
|
|
|
#elif defined(__WXMSW__)
|
2007-05-24 12:50:42 +00:00
|
|
|
#include "wx/msw/msgdlg.h"
|
1998-07-10 14:15:17 +00:00
|
|
|
#elif defined(__WXMOTIF__)
|
2007-05-24 12:50:42 +00:00
|
|
|
#include "wx/motif/msgdlg.h"
|
2006-01-23 03:27:34 +00:00
|
|
|
#elif defined(__WXGTK20__)
|
2007-05-24 12:50:42 +00:00
|
|
|
#include "wx/gtk/msgdlg.h"
|
1998-08-15 00:23:28 +00:00
|
|
|
#elif defined(__WXMAC__)
|
2007-05-24 12:50:42 +00:00
|
|
|
#include "wx/mac/msgdlg.h"
|
1999-07-28 03:38:12 +00:00
|
|
|
#elif defined(__WXPM__)
|
2007-05-24 12:50:42 +00:00
|
|
|
#include "wx/os2/msgdlg.h"
|
1998-05-20 14:01:55 +00:00
|
|
|
#endif
|
|
|
|
|
2001-06-27 00:27:24 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxMessageBox: the simplest way to use wxMessageDialog
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
int WXDLLEXPORT wxMessageBox(const wxString& message,
|
2005-03-11 15:34:42 +00:00
|
|
|
const wxString& caption = wxMessageBoxCaptionStr,
|
|
|
|
long style = wxOK | wxCENTRE,
|
|
|
|
wxWindow *parent = NULL,
|
|
|
|
int x = wxDefaultCoord, int y = wxDefaultCoord);
|
2001-06-27 00:27:24 +00:00
|
|
|
|
|
|
|
#endif // wxUSE_MSGDLG
|
|
|
|
|
2007-05-24 12:50:42 +00:00
|
|
|
#endif // _WX_MSGDLG_H_BASE_
|