]>
Commit | Line | Data |
---|---|---|
34138703 JS |
1 | #ifndef _WX_MSGDLG_H_BASE_ |
2 | #define _WX_MSGDLG_H_BASE_ | |
c801d85f | 3 | |
e421922f VZ |
4 | #if wxUSE_MSGDLG |
5 | ||
21709999 JS |
6 | #if defined(__WXUNIVERSAL__) |
7 | #include "wx/generic/msgdlgg.h" | |
8 | #elif defined(__WXMSW__) | |
c801d85f | 9 | #include "wx/msw/msgdlg.h" |
2049ba38 | 10 | #elif defined(__WXMOTIF__) |
bf6c2b35 | 11 | #include "wx/motif/msgdlg.h" |
2049ba38 | 12 | #elif defined(__WXGTK__) |
92afa2b1 | 13 | #include "wx/generic/msgdlgg.h" |
b4e76e0d RR |
14 | #elif defined(__WXQT__) |
15 | #include "wx/generic/msgdlgg.h" | |
34138703 | 16 | #elif defined(__WXMAC__) |
17dff81c | 17 | #include "wx/mac/msgdlg.h" |
1777b9bb DW |
18 | #elif defined(__WXPM__) |
19 | #include "wx/os2/msgdlg.h" | |
34138703 JS |
20 | #elif defined(__WXSTUBS__) |
21 | #include "wx/generic/msgdlgg.h" | |
c801d85f KB |
22 | #endif |
23 | ||
e421922f VZ |
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 | ||
c801d85f | 36 | #endif |
34138703 | 37 | // _WX_MSGDLG_H_BASE_ |