1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/msw/richmsgdlg.h
3 // Purpose: wxRichMessageDialog
4 // Author: Rickard Westerlund
7 // Copyright: (c) 2010 wxWidgets team
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 #ifndef _WX_MSW_RICHMSGDLG_H_
12 #define _WX_MSW_RICHMSGDLG_H_
14 class WXDLLIMPEXP_CORE wxRichMessageDialog
: public wxGenericRichMessageDialog
17 wxRichMessageDialog(wxWindow
*parent
,
18 const wxString
& message
,
19 const wxString
& caption
,
21 : wxGenericRichMessageDialog(parent
, message
, caption
, style
)
24 // overridden base class method showing the native task dialog if possible
25 virtual int ShowModal();
28 wxDECLARE_DYNAMIC_CLASS_NO_COPY(wxRichMessageDialog
);
31 #endif // _WX_MSW_RICHMSGDLG_H_