wxWizardEventwxWizardEvent class represents an event generated by the wizard: this event is first sent to the page itself and, if not processed there, goes up the window hierarchy as usual. Derived from
wxNotifyEvent Include files <wx/wizard.h> Event table macros To process input from a wizard dialog, use these event handler macros to direct input to member functions that take a wxWizardEvent argument.
See also Members
wxWizardEvent::wxWizardEvent
wxWizardEvent::wxWizardEventwxWizardEvent(wxEventType type = wxEVT_NULL, int id = -1, bool direction = true) Constructor. It is not normally used by the user code as the objects of this type are constructed by wxWizard.
wxWizardEvent::GetDirectionbool GetDirection() const Return the direction in which the page is changing: for EVT_WIZARD_PAGE_CHANGING, return true if we're going forward or false otherwise and for EVT_WIZARD_PAGE_CHANGED return true if we came from the previous page and false if we returned from the next one.
wxWizardEvent::GetPagewxWizardPage* GetPage() const Returns the wxWizardPage which was active when this event was generated.
|