]>
git.saurik.com Git - wxWidgets.git/blob - src/os2/msgdlg.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxMessageDialog
4 // Author: David Webster
8 // Copyright: (c) David Webster
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "msgdlg.h"
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
23 #include "wx/dialog.h"
24 #include "wx/msgdlg.h"
27 #include "wx/os2/private.h"
33 #define wxDIALOG_DEFAULT_X 300
34 #define wxDIALOG_DEFAULT_Y 300
36 IMPLEMENT_CLASS(wxMessageDialog
, wxDialog
)
38 wxMessageDialog::wxMessageDialog(wxWindow
*parent
, const wxString
& message
, const wxString
& caption
,
39 long style
, const wxPoint
& pos
)
43 m_dialogStyle
= style
;
47 int wxMessageDialog::ShowModal()