+#if USE_DIRDLG_GENERIC
+ void GenericDirChoose(wxCommandEvent& event);
+#endif // USE_DIRDLG_GENERIC
+
+#if wxUSE_STARTUP_TIPS
+ void ShowTip(wxCommandEvent& event);
+#endif // wxUSE_STARTUP_TIPS
+
+#if USE_MODAL_PRESENTATION
+ void ModalDlg(wxCommandEvent& event);
+#endif // USE_MODAL_PRESENTATION
+ void ModelessDlg(wxCommandEvent& event);
+ void DlgCenteredScreen(wxCommandEvent& event);
+ void DlgCenteredParent(wxCommandEvent& event);
+ void MiniFrame(wxCommandEvent& event);
+ void DlgOnTop(wxCommandEvent& event);
+
+#if wxUSE_PROGRESSDLG
+ void ShowProgress(wxCommandEvent& event);
+#endif // wxUSE_PROGRESSDLG
+
+#if wxUSE_ABOUTDLG
+ void ShowSimpleAboutDialog(wxCommandEvent& event);
+ void ShowFancyAboutDialog(wxCommandEvent& event);
+ void ShowFullAboutDialog(wxCommandEvent& event);
+ void ShowCustomAboutDialog(wxCommandEvent& event);
+#endif // wxUSE_ABOUTDLG
+
+#if wxUSE_BUSYINFO
+ void ShowBusyInfo(wxCommandEvent& event);
+#endif // wxUSE_BUSYINFO
+
+#if wxUSE_FINDREPLDLG
+ void ShowFindDialog(wxCommandEvent& event);
+ void ShowReplaceDialog(wxCommandEvent& event);
+ void OnFindDialog(wxFindDialogEvent& event);
+#endif // wxUSE_FINDREPLDLG
+
+#if USE_COLOURDLG_GENERIC
+ void ChooseColourGeneric(wxCommandEvent& event);
+#endif // USE_COLOURDLG_GENERIC
+
+#if USE_FONTDLG_GENERIC
+ void ChooseFontGeneric(wxCommandEvent& event);
+#endif // USE_FONTDLG_GENERIC
+
+ void OnPropertySheet(wxCommandEvent& event);
+
+ void OnRequestUserAttention(wxCommandEvent& event);
+#if wxUSE_NOTIFICATION_MESSAGE
+ void OnNotifMsgAuto(wxCommandEvent& event);
+ void OnNotifMsgShow(wxCommandEvent& event);
+ void OnNotifMsgHide(wxCommandEvent& event);
+#endif // wxUSE_NOTIFICATION_MESSAGE
+
+#if wxUSE_RICHTOOLTIP
+ void OnRichTipDialog(wxCommandEvent& event);
+#endif // wxUSE_RICHTOOLTIP
+
+ void OnStandardButtonsSizerDialog(wxCommandEvent& event);
+
+ void OnTestDefaultActionDialog(wxCommandEvent& event);
+ void OnModalHook(wxCommandEvent& event);
+
+ void OnExit(wxCommandEvent& event);
+
+private:
+#if wxUSE_DIRDLG
+ void DoDirChoose(int style);
+#endif // wxUSE_DIRDLG
+
+#if USE_MODAL_PRESENTATION
+ MyModelessDialog *m_dialog;
+#endif // USE_MODAL_PRESENTATION
+
+#if wxUSE_FINDREPLDLG
+ wxFindReplaceData m_findData;
+
+ wxFindReplaceDialog *m_dlgFind,
+ *m_dlgReplace;
+#endif // wxUSE_FINDREPLDLG
+
+#if wxUSE_NOTIFICATION_MESSAGE
+ wxNotificationMessage *m_notifMsg;
+#endif // wxUSE_NOTIFICATION_MESSAGE
+
+ wxColourData m_clrData;
+
+ // just a window which we use to show the effect of font/colours selection
+ wxWindow *m_canvas;
+
+#if wxUSE_INFOBAR
+ void OnInfoBarRedo(wxCommandEvent& event);
+
+ wxInfoBar *m_infoBarSimple,
+ *m_infoBarAdvanced;
+#endif // wxUSE_INFOBAR
+
+ DECLARE_EVENT_TABLE()