]> git.saurik.com Git - wxWidgets.git/blob - include/wx/msgdlg.h
added native wxMessageDialog implementation for GTK+2
[wxWidgets.git] / include / wx / msgdlg.h
1 #ifndef _WX_MSGDLG_H_BASE_
2 #define _WX_MSGDLG_H_BASE_
3
4 #include "wx/setup.h"
5
6 #if wxUSE_MSGDLG
7
8 #if defined(__WXUNIVERSAL__)
9 #include "wx/generic/msgdlgg.h"
10 #elif defined(__WXMSW__)
11 #include "wx/msw/msgdlg.h"
12 #elif defined(__WXMOTIF__)
13 #include "wx/motif/msgdlg.h"
14 #elif defined(__WXGTK__) && defined(__WXGTK20__)
15 #include "wx/gtk/msgdlg.h"
16 #elif defined(__WXGTK__)
17 #include "wx/generic/msgdlgg.h"
18 #elif defined(__WXMAC__)
19 #include "wx/mac/msgdlg.h"
20 #elif defined(__WXPM__)
21 #include "wx/os2/msgdlg.h"
22 #endif
23
24 // ----------------------------------------------------------------------------
25 // wxMessageBox: the simplest way to use wxMessageDialog
26 // ----------------------------------------------------------------------------
27
28 int WXDLLEXPORT wxMessageBox(const wxString& message,
29 const wxString& caption = wxMessageBoxCaptionStr,
30 long style = wxOK | wxCENTRE,
31 wxWindow *parent = NULL,
32 int x = -1, int y = -1);
33
34 #endif // wxUSE_MSGDLG
35
36 #endif
37 // _WX_MSGDLG_H_BASE_