# 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 WizardPage(__wx__core.Panel):
    """
    WizardPage() -> None
    WizardPage(parent, bitmap=wx.BitmapBundle()) -> None
    
    wxWizardPage is one of the screens in wxWizard: it must know what are
    the following and preceding pages (which may be NULL for the
    first/last page).
    """
    def Create(self, parent, bitmap=None, *args, **kwargs): # real signature unknown; NOTE: unreliably restored from __doc__ 
        """
        Create(parent, bitmap=wx.BitmapBundle()) -> bool
        
        Creates the wizard page.
        """
        pass

    def DoEnable(self, *args, **kwargs): # real signature unknown
        pass

    def DoFreeze(self, *args, **kwargs): # real signature unknown
        pass

    def DoGetBestClientSize(self, *args, **kwargs): # real signature unknown
        pass

    def DoGetBestSize(self, *args, **kwargs): # real signature unknown
        pass

    def DoGetClientSize(self, *args, **kwargs): # real signature unknown
        pass

    def DoGetPosition(self, *args, **kwargs): # real signature unknown
        pass

    def DoGetSize(self, *args, **kwargs): # real signature unknown
        pass

    def DoMoveWindow(self, *args, **kwargs): # real signature unknown
        pass

    def DoSetClientSize(self, *args, **kwargs): # real signature unknown
        pass

    def DoSetSize(self, *args, **kwargs): # real signature unknown
        pass

    def DoSetSizeHints(self, *args, **kwargs): # real signature unknown
        pass

    def DoSetWindowVariant(self, *args, **kwargs): # real signature unknown
        pass

    def DoThaw(self, *args, **kwargs): # real signature unknown
        pass

    def GetBitmap(self): # real signature unknown; restored from __doc__
        """
        GetBitmap() -> wx.Bitmap
        
        This method is called by wxWizard to get the bitmap to display
        alongside the page.
        """
        pass

    def GetClassDefaultAttributes(self, variant=None): # real signature unknown; restored from __doc__
        """ GetClassDefaultAttributes(variant=wx.WINDOW_VARIANT_NORMAL) -> wx.VisualAttributes """
        pass

    def GetDefaultBorder(self, *args, **kwargs): # real signature unknown
        pass

    def GetDefaultBorderForControl(self, *args, **kwargs): # real signature unknown
        pass

    def GetNext(self): # real signature unknown; restored from __doc__
        """
        GetNext() -> WizardPage
        
        Get the page which should be shown when the user chooses the "Next"
        button: if NULL is returned, this button will be disabled.
        """
        return WizardPage

    def GetPrev(self): # real signature unknown; restored from __doc__
        """
        GetPrev() -> WizardPage
        
        Get the page which should be shown when the user chooses the "Back"
        button: if NULL is returned, this button will be disabled.
        """
        return WizardPage

    def HasTransparentBackground(self, *args, **kwargs): # real signature unknown
        pass

    def ProcessEvent(self, *args, **kwargs): # real signature unknown
        pass

    def SendDestroyEvent(self, *args, **kwargs): # real signature unknown
        pass

    def TryAfter(self, *args, **kwargs): # real signature unknown
        pass

    def TryBefore(self, *args, **kwargs): # real signature unknown
        pass

    def __init__(self, parent=None, bitmap=None, *args=None, **kwargs=None): # real signature unknown; restored from __doc__ with multiple overloads
        pass

    Bitmap = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetBitmap() -> wx.Bitmap

This method is called by wxWizard to get the bitmap to display
alongside the page."""

    Next = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetNext() -> WizardPage

Get the page which should be shown when the user chooses the "Next"
button: if NULL is returned, this button will be disabled."""

    Prev = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetPrev() -> WizardPage

Get the page which should be shown when the user chooses the "Back"
button: if NULL is returned, this button will be disabled."""



