X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/92afa2b150803da84a4bc7dfa4e580dbbff15c9a..6e264973e636cc41915d166cb7eddf2a7e72cf9b:/include/wx/msgdlg.h diff --git a/include/wx/msgdlg.h b/include/wx/msgdlg.h index 573907b3c6..48d1a3c214 100644 --- a/include/wx/msgdlg.h +++ b/include/wx/msgdlg.h @@ -1,6 +1,8 @@ #ifndef _WX_MSGDLG_H_BASE_ #define _WX_MSGDLG_H_BASE_ +#if wxUSE_MSGDLG + #if defined(__WXMSW__) #include "wx/msw/msgdlg.h" #elif defined(__WXMOTIF__) @@ -17,5 +19,17 @@ #include "wx/generic/msgdlgg.h" #endif +// ---------------------------------------------------------------------------- +// 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 + #endif // _WX_MSGDLG_H_BASE_