]>
Commit | Line | Data |
---|---|---|
2bda0e17 | 1 | ///////////////////////////////////////////////////////////////////////////// |
e5b50758 | 2 | // Name: wx/msw/msgdlg.h |
2bda0e17 KB |
3 | // Purpose: wxMessageDialog class |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 01/02/97 | |
7 | // RCS-ID: $Id$ | |
bbcdf8bc | 8 | // Copyright: (c) Julian Smart |
598ddd96 | 9 | // Licence: wxWindows licence |
2bda0e17 KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
bbcdf8bc JS |
12 | #ifndef _WX_MSGBOXDLG_H_ |
13 | #define _WX_MSGBOXDLG_H_ | |
2bda0e17 | 14 | |
53a2db12 | 15 | class WXDLLIMPEXP_CORE wxMessageDialog : public wxMessageDialogBase |
2bda0e17 | 16 | { |
2bda0e17 | 17 | public: |
2afb9e16 VZ |
18 | wxMessageDialog(wxWindow *parent, |
19 | const wxString& message, | |
20 | const wxString& caption = wxMessageBoxCaptionStr, | |
21 | long style = wxOK|wxCENTRE, | |
22 | const wxPoint& WXUNUSED(pos) = wxDefaultPosition) | |
23 | : wxMessageDialogBase(parent, message, caption, style) | |
24 | { | |
1d89da8a | 25 | m_hook = NULL; |
2afb9e16 VZ |
26 | } |
27 | ||
2bda0e17 | 28 | |
2afb9e16 | 29 | virtual int ShowModal(); |
22f3361e | 30 | |
1d89da8a VZ |
31 | private: |
32 | static WXLRESULT wxCALLBACK HookFunction(int code, WXWPARAM, WXLPARAM); | |
33 | ||
34 | WXHANDLE m_hook; // HHOOK used to position the message box | |
35 | ||
2afb9e16 | 36 | DECLARE_DYNAMIC_CLASS(wxMessageDialog) |
22f3361e | 37 | DECLARE_NO_COPY_CLASS(wxMessageDialog) |
2bda0e17 KB |
38 | }; |
39 | ||
40 | ||
2afb9e16 | 41 | #endif // _WX_MSGBOXDLG_H_ |