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.
|