1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: common header and base class for wxMessageDialog
4 // Author: wxWidgets Team
8 // Copyright: (c) wxWidgets
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_MSGDLG_H_BASE_
13 #define _WX_MSGDLG_H_BASE_
19 class WXDLLEXPORT wxMessageDialogBase
22 // common validation of wxMessageDialog style
23 void SetMessageDialogStyle(long style
)
25 wxASSERT_MSG( ((style
& wxYES_NO
) == wxYES_NO
) || ((style
& wxYES_NO
) == 0),
26 _T("wxYES and wxNO may only be used together in wxMessageDialog") );
28 wxASSERT_MSG( (style
& wxID_OK
) != wxID_OK
,
29 _T("wxMessageBox: Did you mean wxOK (and not wxID_OK)?") );
31 m_dialogStyle
= style
;
33 inline long GetMessageDialogStyle() const
42 #if defined(__WX_COMPILING_MSGDLGG_CPP__)
43 #include "wx/generic/msgdlgg.h"
44 #elif defined(__WXUNIVERSAL__) || defined(__WXGPE__)
45 #include "wx/generic/msgdlgg.h"
46 #elif defined(__WXPALMOS__)
47 #include "wx/palmos/msgdlg.h"
48 #elif defined(__WXMSW__)
49 #include "wx/msw/msgdlg.h"
50 #elif defined(__WXMOTIF__)
51 #include "wx/motif/msgdlg.h"
52 #elif defined(__WXGTK__) && defined(__WXGTK20__)
53 #include "wx/gtk/msgdlg.h"
54 #elif defined(__WXGTK__)
55 #include "wx/generic/msgdlgg.h"
56 #elif defined(__WXMAC__)
57 #include "wx/mac/msgdlg.h"
58 #elif defined(__WXCOCOA__)
59 #include "wx/generic/msgdlgg.h"
60 #elif defined(__WXPM__)
61 #include "wx/os2/msgdlg.h"
64 // ----------------------------------------------------------------------------
65 // wxMessageBox: the simplest way to use wxMessageDialog
66 // ----------------------------------------------------------------------------
68 int WXDLLEXPORT
wxMessageBox(const wxString
& message
,
69 const wxString
& caption
= wxMessageBoxCaptionStr
,
70 long style
= wxOK
| wxCENTRE
,
71 wxWindow
*parent
= NULL
,
72 int x
= wxDefaultCoord
, int y
= wxDefaultCoord
);
74 #endif // wxUSE_MSGDLG