richmsgdlg.h 1.0 KB

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