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