From 91c68292f64a7ca83480a639264f4369b80ea1e5 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 22 May 2002 23:36:20 +0000 Subject: [PATCH] fixed propagating of EVT_WIZARD_XXX events to the parent git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15643 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/generic/wizard.h | 7 +++++++ src/generic/wizard.cpp | 28 +++++++++++++++++++++++++--- 2 files changed, 32 insertions(+), 3 deletions(-) diff --git a/include/wx/generic/wizard.h b/include/wx/generic/wizard.h index 11da00ceb4..f16fe894f2 100644 --- a/include/wx/generic/wizard.h +++ b/include/wx/generic/wizard.h @@ -13,8 +13,13 @@ // wxWizard // ---------------------------------------------------------------------------- +#ifdef __GNUG__ + #pragma interface "wizardg.h" +#endif + class WXDLLEXPORT wxButton; class WXDLLEXPORT wxStaticBitmap; +class WXDLLEXPORT wxWizardEvent; class WXDLLEXPORT wxWizard : public wxWizardBase { @@ -67,6 +72,8 @@ private: void OnBackOrNext(wxCommandEvent& event); void OnHelp(wxCommandEvent& event); + void OnWizEvent(wxWizardEvent& event); + // the page size requested by user wxSize m_sizePage; diff --git a/src/generic/wizard.cpp b/src/generic/wizard.cpp index 3d1654bef7..325ff9974c 100644 --- a/src/generic/wizard.cpp +++ b/src/generic/wizard.cpp @@ -21,7 +21,7 @@ // ---------------------------------------------------------------------------- #ifdef __GNUG__ - #pragma implementation ".h" + #pragma implementation "wizardg.h" #endif // For compilers that support precompilation, includes "wx.h". @@ -64,6 +64,11 @@ BEGIN_EVENT_TABLE(wxWizard, wxDialog) EVT_BUTTON(wxID_BACKWARD, wxWizard::OnBackOrNext) EVT_BUTTON(wxID_FORWARD, wxWizard::OnBackOrNext) EVT_BUTTON(wxID_HELP, wxWizard::OnHelp) + + EVT_WIZARD_PAGE_CHANGED(-1, wxWizard::OnWizEvent) + EVT_WIZARD_PAGE_CHANGING(-1, wxWizard::OnWizEvent) + EVT_WIZARD_CANCEL(-1, wxWizard::OnWizEvent) + EVT_WIZARD_HELP(-1, wxWizard::OnWizEvent) END_EVENT_TABLE() IMPLEMENT_DYNAMIC_CLASS(wxWizard, wxDialog) @@ -90,7 +95,7 @@ wxWizardPage::wxWizardPage(wxWizard *parent, { Create(parent, bitmap, resource); } - + bool wxWizardPage::Create(wxWizard *parent, const wxBitmap& bitmap, const wxChar *resource) @@ -112,7 +117,7 @@ bool wxWizardPage::Create(wxWizard *parent, // initially the page is hidden, it's shown only when it becomes current Hide(); - + return TRUE; } @@ -465,6 +470,23 @@ void wxWizard::OnHelp(wxCommandEvent& WXUNUSED(event)) } } +void wxWizard::OnWizEvent(wxWizardEvent& event) +{ + // the dialogs have wxWS_EX_BLOCK_EVENTS style on by default but we want to + // propagate wxEVT_WIZARD_XXX to the parent (if any), so do it manually + if ( !(GetExtraStyle() & wxWS_EX_BLOCK_EVENTS) ) + { + // the event will be propagated anyhow + return; + } + + wxWindow *parent = GetParent(); + + if ( !parent || !parent->GetEventHandler()->ProcessEvent(event) ) + { + event.Skip(); + } +} // ---------------------------------------------------------------------------- // our public interface -- 2.45.2