]>
Commit | Line | Data |
---|---|---|
0e320a79 | 1 | ///////////////////////////////////////////////////////////////////////////// |
e5b50758 | 2 | // Name: wx/os2/msgdlg.h |
0e320a79 DW |
3 | // Purpose: wxMessageDialog class. Use generic version if no |
4 | // platform-specific implementation. | |
cdf1e714 | 5 | // Author: David Webster |
0e320a79 | 6 | // Modified by: |
cdf1e714 | 7 | // Created: 10/12/99 |
e5b50758 | 8 | // Copyright: (c) David Webster |
65571936 | 9 | // Licence: wxWindows licence |
0e320a79 DW |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef _WX_MSGBOXDLG_H_ | |
13 | #define _WX_MSGBOXDLG_H_ | |
14 | ||
53a2db12 | 15 | class WXDLLIMPEXP_CORE wxMessageDialog : public wxMessageDialogBase |
0e320a79 | 16 | { |
0e320a79 | 17 | public: |
f6bcfd97 BP |
18 | wxMessageDialog( wxWindow* pParent |
19 | ,const wxString& rsMessage | |
20 | ,const wxString& rsCaption = wxMessageBoxCaptionStr | |
21 | ,long lStyle = wxOK|wxCENTRE | |
2afb9e16 VZ |
22 | ,const wxPoint& WXUNUSED(rPos) = wxDefaultPosition |
23 | ) | |
24 | : wxMessageDialogBase(pParent, rsMessage, rsCaption, lStyle) | |
25 | { | |
26 | } | |
0e320a79 | 27 | |
f6bcfd97 | 28 | int ShowModal(void); |
0e320a79 | 29 | |
f6bcfd97 | 30 | protected: |
2afb9e16 | 31 | DECLARE_DYNAMIC_CLASS(wxMessageDialog) |
f6bcfd97 BP |
32 | }; // end of CLASS wxMessageDialog |
33 | ||
2afb9e16 | 34 | #endif // _WX_MSGBOXDLG_H_ |