Add footer text and icon to wxRichMessageDialog

The underlying Windows TaskDialog supports adding an additional footer
to the message dialog. This makes the native functionality available
and implements it in the generic version.

See https://github.com/wxWidgets/wxWidgets/pull/573
This commit is contained in:
Tobias Taschner
2018-01-20 16:53:13 +01:00
committed by VZ
parent bc13119494
commit d6b88ca399
7 changed files with 156 additions and 1 deletions

View File

@@ -268,6 +268,8 @@ private:
wxTextCtrl *m_textCheckBox;
wxCheckBox *m_initialValueCheckBox;
wxTextCtrl *m_textDetailed;
wxTextCtrl *m_textFooter;
wxChoice *m_iconsFooter;
wxDECLARE_EVENT_TABLE();
};