2010-08-18 18:48:41 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/msw/richmsgdlg.h
|
|
|
|
// Purpose: wxRichMessageDialog
|
|
|
|
// Author: Rickard Westerlund
|
|
|
|
// Created: 2010-07-04
|
|
|
|
// Copyright: (c) 2010 wxWidgets team
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_MSW_RICHMSGDLG_H_
|
|
|
|
#define _WX_MSW_RICHMSGDLG_H_
|
|
|
|
|
|
|
|
class WXDLLIMPEXP_CORE wxRichMessageDialog : public wxGenericRichMessageDialog
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxRichMessageDialog(wxWindow *parent,
|
|
|
|
const wxString& message,
|
2019-10-22 06:34:29 -04:00
|
|
|
const wxString& caption = wxASCII_STR(wxMessageBoxCaptionStr),
|
2014-09-04 15:45:08 -04:00
|
|
|
long style = wxOK | wxCENTRE)
|
2010-08-18 18:48:41 -04:00
|
|
|
: wxGenericRichMessageDialog(parent, message, caption, style)
|
|
|
|
{ }
|
|
|
|
|
|
|
|
// overridden base class method showing the native task dialog if possible
|
2016-09-25 16:21:28 -04:00
|
|
|
virtual int ShowModal() wxOVERRIDE;
|
2010-08-18 18:48:41 -04:00
|
|
|
|
|
|
|
private:
|
|
|
|
wxDECLARE_DYNAMIC_CLASS_NO_COPY(wxRichMessageDialog);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _WX_MSW_RICHMSGDLG_H_
|