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
|
|
|
|
2003-02-28 23:37:46 +00:00
|
|
|
#include "wx/setup.h"
|
|
|
|
|
2001-06-27 00:27:24 +00:00
|
|
|
#if wxUSE_MSGDLG
|
|
|
|
|
2004-02-28 15:27:11 +00:00
|
|
|
#if 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,
|
|
|
|
const wxString& caption = wxMessageBoxCaptionStr,
|
|
|
|
long style = wxOK | wxCENTRE,
|
|
|
|
wxWindow *parent = NULL,
|
2004-09-17 22:23:59 +00:00
|
|
|
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_
|