X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a92b5dfe8ce92f1686df0bec0ccc61d75ed46100..210bfffb977785bb329c9913318c40f59c36eebf:/samples/dialogs/dialogs.h diff --git a/samples/dialogs/dialogs.h b/samples/dialogs/dialogs.h index 57a7105b43..dde63a4e31 100644 --- a/samples/dialogs/dialogs.h +++ b/samples/dialogs/dialogs.h @@ -214,6 +214,17 @@ private: static const BtnInfo ms_btnInfo[Btn_Max]; + enum + { + MsgDlgIcon_No, + MsgDlgIcon_None, + MsgDlgIcon_Info, + MsgDlgIcon_Question, + MsgDlgIcon_Warning, + MsgDlgIcon_Error, + MsgDlgIcon_Max + }; + wxTextCtrl *m_textMsg, *m_textExtMsg; @@ -288,6 +299,8 @@ public: void MessageBox(wxCommandEvent& event); void MessageBoxDialog(wxCommandEvent& event); void MessageBoxInfo(wxCommandEvent& event); + void MessageBoxWindowModal(wxCommandEvent& event); + void MessageBoxWindowModalClosed(wxWindowModalDialogEvent& event); #endif // wxUSE_MSGDLG #if wxUSE_COLOURDLG @@ -429,6 +442,8 @@ private: wxWindow *m_canvas; #if wxUSE_INFOBAR + void OnInfoBarRedo(wxCommandEvent& event); + wxInfoBar *m_infoBarSimple, *m_infoBarAdvanced; #endif // wxUSE_INFOBAR @@ -462,6 +477,7 @@ enum DIALOGS_CHOOSE_FONT, DIALOGS_CHOOSE_FONT_GENERIC, DIALOGS_MESSAGE_BOX, + DIALOGS_MESSAGE_BOX_WINDOW_MODAL, DIALOGS_MESSAGE_DIALOG, DIALOGS_MESSAGE_BOX_WXINFO, DIALOGS_SINGLE_CHOICE,