]>
Commit | Line | Data |
---|---|---|
ffecfa5a | 1 | ///////////////////////////////////////////////////////////////////////////// |
e1d63b79 | 2 | // Name: wx/palmos/msgdlg.h |
ffecfa5a | 3 | // Purpose: wxMessageDialog class |
e1d63b79 | 4 | // Author: William Osborne - minimal working wxPalmOS port |
ffecfa5a JS |
5 | // Modified by: |
6 | // Created: 10/13/04 | |
e1d63b79 | 7 | // RCS-ID: $Id$ |
ffecfa5a JS |
8 | // Copyright: (c) William Osborne |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_MSGBOXDLG_H_ | |
13 | #define _WX_MSGBOXDLG_H_ | |
14 | ||
15 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) | |
16 | #pragma interface "msgdlg.h" | |
17 | #endif | |
18 | ||
19 | #include "wx/setup.h" | |
20 | #include "wx/dialog.h" | |
21 | ||
22 | /* | |
23 | * Message box dialog | |
24 | */ | |
25 | ||
26 | WXDLLEXPORT_DATA(extern const wxChar*) wxMessageBoxCaptionStr; | |
27 | ||
28 | class WXDLLEXPORT wxMessageDialog: public wxDialog | |
29 | { | |
30 | DECLARE_DYNAMIC_CLASS(wxMessageDialog) | |
31 | protected: | |
32 | wxString m_caption; | |
33 | wxString m_message; | |
34 | long m_dialogStyle; | |
35 | wxWindow * m_parent; | |
36 | public: | |
37 | wxMessageDialog(wxWindow *parent, const wxString& message, const wxString& caption = wxMessageBoxCaptionStr, | |
38 | long style = wxOK|wxCENTRE, const wxPoint& pos = wxDefaultPosition); | |
39 | ||
40 | int ShowModal(void); | |
41 | ||
42 | DECLARE_NO_COPY_CLASS(wxMessageDialog) | |
43 | }; | |
44 | ||
45 | ||
46 | #endif | |
47 | // _WX_MSGBOXDLG_H_ |