# encoding: utf-8
# module wx._adv
# from D:\project\A_Board\.venv\Lib\site-packages\wx\_adv.cp313-win_amd64.pyd
# by generator 1.147
# no doc

# imports
import sip as __sip
import wx._core as __wx__core


class WizardEvent(__wx__core.NotifyEvent):
    """
    WizardEvent(type=wx.wxEVT_NULL, id=wx.ID_ANY, direction=True, page=0) -> None
    
    wxWizardEvent class represents an event generated by the wxWizard:
    this event is first sent to the page itself and, if not processed
    there, goes up the window hierarchy as usual.
    """
    def Clone(self): # real signature unknown; restored from __doc__
        """ Clone(self) -> Optional[Event] """
        pass

    def GetDirection(self): # real signature unknown; restored from __doc__
        """
        GetDirection() -> bool
        
        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.
        """
        return False

    def GetPage(self): # real signature unknown; restored from __doc__
        """
        GetPage() -> WizardPage
        
        Returns the wxWizardPage which was active when this event was
        generated.
        """
        return WizardPage

    def __init__(self, type=None, id=None, direction=True, page=0): # real signature unknown; restored from __doc__
        pass

    Direction = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetDirection() -> bool

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."""

    Page = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetPage() -> WizardPage

Returns the wxWizardPage which was active when this event was
generated."""



