2005-03-11 15:34:42 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/msgdlgg.h
|
|
|
|
// Purpose: common header and base class for wxMessageDialog
|
|
|
|
// Author: wxWidgets Team
|
|
|
|
// Modified by:
|
|
|
|
// Created:
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) wxWidgets
|
|
|
|
// 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
|
|
|
|
|
2005-03-11 15:34:42 +00:00
|
|
|
class WXDLLEXPORT wxMessageDialogBase
|
|
|
|
{
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
inline long GetMessageDialogStyle() const
|
|
|
|
{
|
|
|
|
return m_dialogStyle;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
long m_dialogStyle;
|
|
|
|
};
|
|
|
|
|
2005-03-12 19:35:44 +00:00
|
|
|
#if defined(__WX_COMPILING_MSGDLGG_CPP__)
|
|
|
|
#include "wx/generic/msgdlgg.h"
|
|
|
|
#elif defined(__WXUNIVERSAL__) || defined(__WXGPE__)
|
2001-06-29 19:18:30 +00:00
|
|
|
#include "wx/generic/msgdlgg.h"
|
2004-12-20 12:44:22 +00:00
|
|
|
#elif defined(__WXPALMOS__)
|
2004-10-19 13:40:30 +00:00
|
|
|
#include "wx/palmos/msgdlg.h"
|
2001-06-29 19:18:30 +00:00
|
|
|
#elif defined(__WXMSW__)
|
1998-05-20 14:01:55 +00:00
|
|
|
#include "wx/msw/msgdlg.h"
|
1998-07-10 14:15:17 +00:00
|
|
|
#elif defined(__WXMOTIF__)
|
1999-06-29 13:13:11 +00:00
|
|
|
#include "wx/motif/msgdlg.h"
|
2003-02-28 23:37:46 +00:00
|
|
|
#elif defined(__WXGTK__) && defined(__WXGTK20__)
|
|
|
|
#include "wx/gtk/msgdlg.h"
|
1998-07-10 14:15:17 +00:00
|
|
|
#elif defined(__WXGTK__)
|
1999-08-11 11:53:40 +00:00
|
|
|
#include "wx/generic/msgdlgg.h"
|
1998-08-15 00:23:28 +00:00
|
|
|
#elif defined(__WXMAC__)
|
1999-01-01 16:22:21 +00:00
|
|
|
#include "wx/mac/msgdlg.h"
|
2003-03-22 06:13:03 +00:00
|
|
|
#elif defined(__WXCOCOA__)
|
|
|
|
#include "wx/generic/msgdlgg.h"
|
1999-07-28 03:38:12 +00:00
|
|
|
#elif defined(__WXPM__)
|
|
|
|
#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
|
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
#endif
|
1998-08-15 00:23:28 +00:00
|
|
|
// _WX_MSGDLG_H_BASE_
|