]>
Commit | Line | Data |
---|---|---|
8cf73271 | 1 | ///////////////////////////////////////////////////////////////////////////// |
e5b50758 | 2 | // Name: wx/mac/carbon/msgdlg.h |
8cf73271 SC |
3 | // Purpose: wxMessageDialog class. Use generic version if no |
4 | // platform-specific implementation. | |
5 | // Author: Stefan Csomor | |
6 | // Modified by: | |
7 | // Created: 1998-01-01 | |
8 | // RCS-ID: $Id$ | |
9 | // Copyright: (c) Stefan Csomor | |
65571936 | 10 | // Licence: wxWindows licence |
8cf73271 SC |
11 | ///////////////////////////////////////////////////////////////////////////// |
12 | ||
13 | #ifndef _WX_MSGBOXDLG_H_ | |
14 | #define _WX_MSGBOXDLG_H_ | |
15 | ||
b73e73f9 | 16 | #include "wx/defs.h" |
8cf73271 SC |
17 | #include "wx/dialog.h" |
18 | ||
19 | /* | |
20 | * Message box dialog | |
21 | */ | |
22 | ||
63ec432b | 23 | WXDLLEXPORT_DATA(extern const wxChar) wxMessageBoxCaptionStr[]; |
8cf73271 | 24 | |
e5b50758 | 25 | class WXDLLEXPORT wxMessageDialog: public wxDialog, public wxMessageDialogBase |
8cf73271 SC |
26 | { |
27 | DECLARE_DYNAMIC_CLASS(wxMessageDialog) | |
e5b50758 | 28 | |
8cf73271 SC |
29 | protected: |
30 | wxString m_caption; | |
31 | wxString m_message; | |
8cf73271 SC |
32 | wxWindow * m_parent; |
33 | public: | |
34 | wxMessageDialog(wxWindow *parent, | |
35 | const wxString& message, | |
36 | const wxString& caption = wxMessageBoxCaptionStr, | |
37 | long style = wxOK|wxCENTRE, | |
38 | const wxPoint& pos = wxDefaultPosition); | |
39 | ||
40 | int ShowModal(); | |
e5b50758 | 41 | |
6f02a879 | 42 | protected: |
8cf73271 SC |
43 | // not supported for message dialog, RR |
44 | virtual void DoSetSize(int WXUNUSED(x), int WXUNUSED(y), | |
45 | int WXUNUSED(width), int WXUNUSED(height), | |
46 | int WXUNUSED(sizeFlags) = wxSIZE_AUTO) {} | |
47 | ||
48 | }; | |
49 | ||
50 | #endif | |
51 | // _WX_MSGBOXDLG_H_ |