1998-08-14 20:23:28 -04:00
|
|
|
#ifndef _WX_MSGDLG_H_BASE_
|
|
|
|
#define _WX_MSGDLG_H_BASE_
|
1998-05-20 10:01:55 -04:00
|
|
|
|
2003-02-28 18:37:46 -05:00
|
|
|
#include "wx/setup.h"
|
|
|
|
|
2001-06-26 20:27:24 -04:00
|
|
|
#if wxUSE_MSGDLG
|
|
|
|
|
2001-06-29 15:18:30 -04:00
|
|
|
#if defined(__WXUNIVERSAL__)
|
|
|
|
#include "wx/generic/msgdlgg.h"
|
|
|
|
#elif defined(__WXMSW__)
|
1998-05-20 10:01:55 -04:00
|
|
|
#include "wx/msw/msgdlg.h"
|
1998-07-10 10:15:17 -04:00
|
|
|
#elif defined(__WXMOTIF__)
|
1999-06-29 09:13:11 -04:00
|
|
|
#include "wx/motif/msgdlg.h"
|
2003-02-28 18:37:46 -05:00
|
|
|
#elif defined(__WXGTK__) && defined(__WXGTK20__)
|
|
|
|
#include "wx/gtk/msgdlg.h"
|
1998-07-10 10:15:17 -04:00
|
|
|
#elif defined(__WXGTK__)
|
1999-08-11 07:53:40 -04:00
|
|
|
#include "wx/generic/msgdlgg.h"
|
1998-08-14 20:23:28 -04:00
|
|
|
#elif defined(__WXMAC__)
|
1999-01-01 11:22:21 -05:00
|
|
|
#include "wx/mac/msgdlg.h"
|
1999-07-27 23:38:12 -04:00
|
|
|
#elif defined(__WXPM__)
|
|
|
|
#include "wx/os2/msgdlg.h"
|
1998-05-20 10:01:55 -04:00
|
|
|
#endif
|
|
|
|
|
2001-06-26 20:27:24 -04: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,
|
|
|
|
int x = -1, int y = -1);
|
|
|
|
|
|
|
|
#endif // wxUSE_MSGDLG
|
|
|
|
|
1998-05-20 10:01:55 -04:00
|
|
|
#endif
|
1998-08-14 20:23:28 -04:00
|
|
|
// _WX_MSGDLG_H_BASE_
|