]>
Commit | Line | Data |
---|---|---|
a1bdd4ab VZ |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/msw/richmsgdlg.h | |
3 | // Purpose: wxRichMessageDialog | |
4 | // Author: Rickard Westerlund | |
5 | // Created: 2010-07-04 | |
a1bdd4ab VZ |
6 | // Copyright: (c) 2010 wxWidgets team |
7 | // Licence: wxWindows licence | |
8 | ///////////////////////////////////////////////////////////////////////////// | |
9 | ||
10 | #ifndef _WX_MSW_RICHMSGDLG_H_ | |
11 | #define _WX_MSW_RICHMSGDLG_H_ | |
12 | ||
13 | class WXDLLIMPEXP_CORE wxRichMessageDialog : public wxGenericRichMessageDialog | |
14 | { | |
15 | public: | |
16 | wxRichMessageDialog(wxWindow *parent, | |
17 | const wxString& message, | |
18 | const wxString& caption, | |
19 | long style) | |
20 | : wxGenericRichMessageDialog(parent, message, caption, style) | |
21 | { } | |
22 | ||
23 | // overridden base class method showing the native task dialog if possible | |
24 | virtual int ShowModal(); | |
25 | ||
26 | private: | |
27 | wxDECLARE_DYNAMIC_CLASS_NO_COPY(wxRichMessageDialog); | |
28 | }; | |
29 | ||
30 | #endif // _WX_MSW_RICHMSGDLG_H_ |