Added wxEVT_WIZARD_BEFORE_PAGE_CHANGED event to allow the application to influence

the return value of GetNext after Next is clicked.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70630 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2012-02-20 11:38:52 +00:00
parent 9362d82351
commit c9f18835ab
3 changed files with 21 additions and 0 deletions

View File

@@ -98,6 +98,10 @@ public:
The page has been just changed (this event cannot be vetoed).
@event{EVT_WIZARD_PAGE_CHANGING(id, func)}
The page is being changed (this event can be vetoed).
@event{EVT_WIZARD_BEFORE_PAGE_CHANGED(id, func)}
Called after Next is clicked but before GetNext is called. Unlike EVT_WIZARD_CHANGING,
the handler for this function can change state that might affect the return value of
GetNext. This event can be vetoed.
@event{EVT_WIZARD_PAGE_SHOWN(id, func)}
The page was shown and laid out (this event cannot be vetoed).
@event{EVT_WIZARD_CANCEL(id, func)}
@@ -231,6 +235,10 @@ public:
The page has just been changed (this event cannot be vetoed).
@event{EVT_WIZARD_PAGE_CHANGING(id, func)}
The page is being changed (this event can be vetoed).
@event{EVT_WIZARD_BEFORE_PAGE_CHANGED(id, func)}
Called after Next is clicked but before GetNext is called. Unlike EVT_WIZARD_CHANGING,
the handler for this function can change state that might affect the return value of
GetNext. This event can be vetoed.
@event{EVT_WIZARD_PAGE_SHOWN(id, func)}
The page was shown and laid out (this event cannot be vetoed).
@event{EVT_WIZARD_CANCEL(id, func)}