]> git.saurik.com Git - wxWidgets.git/blob - include/wx/os2/msgdlg.h
compilation fix for apps w/o precompiled headers
[wxWidgets.git] / include / wx / os2 / msgdlg.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: msgdlg.h
3 // Purpose: wxMessageDialog class. Use generic version if no
4 // platform-specific implementation.
5 // Author: David Webster
6 // Modified by:
7 // Created: 10/12/99
8 // RCS-ID: $Id$
9 // Copyright: (c) AUTHOR
10 // Licence: wxWindows licence
11 /////////////////////////////////////////////////////////////////////////////
12
13 #ifndef _WX_MSGBOXDLG_H_
14 #define _WX_MSGBOXDLG_H_
15
16 #include "wx/setup.h"
17 #include "wx/dialog.h"
18
19 /*
20 * Message box dialog
21 */
22
23 WXDLLEXPORT_DATA(extern const char*) wxMessageBoxCaptionStr;
24
25 class WXDLLEXPORT wxMessageDialog : public wxDialog
26 {
27 DECLARE_DYNAMIC_CLASS(wxMessageDialog)
28 public:
29 wxMessageDialog( wxWindow* pParent
30 ,const wxString& rsMessage
31 ,const wxString& rsCaption = wxMessageBoxCaptionStr
32 ,long lStyle = wxOK|wxCENTRE
33 ,const wxPoint& rPos = wxDefaultPosition
34 );
35
36 int ShowModal(void);
37
38 protected:
39 wxString m_sCaption;
40 wxString m_sMessage;
41 long m_lDialogStyle;
42 wxWindow* m_pParent;
43 }; // end of CLASS wxMessageDialog
44
45
46 int WXDLLEXPORT wxMessageBox( const wxString& rsMessage
47 ,const wxString& rsCaption = wxMessageBoxCaptionStr
48 ,long lStyle = wxOK|wxCENTRE
49 ,wxWindow* pParent = NULL
50 ,int nX = -1
51 ,int nY = -1
52 );
53
54 #endif
55 // _WX_MSGBOXDLG_H_