# 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 SashWindow(__wx__core.Window):
    """
    SashWindow() -> None
    SashWindow(parent, id=wx.ID_ANY, pos=wx.DefaultPosition, size=wx.DefaultSize, style=wx.CLIP_CHILDREN|SW_3D, name="sashWindow") -> None
    
    wxSashWindow allows any of its edges to have a sash which can be
    dragged to resize the window.
    """
    def AcceptsFocus(self): # real signature unknown; restored from __doc__
        """ AcceptsFocus(self) -> bool """
        return False

    def AcceptsFocusFromKeyboard(self): # real signature unknown; restored from __doc__
        """ AcceptsFocusFromKeyboard(self) -> bool """
        return False

    def AcceptsFocusRecursively(self): # real signature unknown; restored from __doc__
        """ AcceptsFocusRecursively(self) -> bool """
        return False

    def AddChild(self, child, WindowBase=None): # real signature unknown; restored from __doc__
        """ AddChild(self, child: Optional[WindowBase]) """
        pass

    def Destroy(self): # real signature unknown; restored from __doc__
        """ Destroy(self) -> bool """
        return False

    def DoEnable(self, enable): # real signature unknown; restored from __doc__
        """ DoEnable(self, enable: bool) """
        pass

    def DoFreeze(self): # real signature unknown; restored from __doc__
        """ DoFreeze(self) """
        pass

    def DoGetBestClientSize(self): # real signature unknown; restored from __doc__
        """ DoGetBestClientSize(self) -> Size """
        pass

    def DoGetBestSize(self): # real signature unknown; restored from __doc__
        """ DoGetBestSize(self) -> Size """
        pass

    def DoGetClientSize(self): # real signature unknown; restored from __doc__
        """ DoGetClientSize(self) -> (Optional[int], Optional[int]) """
        pass

    def DoGetPosition(self): # real signature unknown; restored from __doc__
        """ DoGetPosition(self) -> (Optional[int], Optional[int]) """
        pass

    def DoGetSize(self): # real signature unknown; restored from __doc__
        """ DoGetSize(self) -> (Optional[int], Optional[int]) """
        pass

    def DoMoveWindow(self, x, y, width, height): # real signature unknown; restored from __doc__
        """ DoMoveWindow(self, x: int, y: int, width: int, height: int) """
        pass

    def DoSetClientSize(self, width, height): # real signature unknown; restored from __doc__
        """ DoSetClientSize(self, width: int, height: int) """
        pass

    def DoSetSize(self, x, y, width, height, sizeFlags): # real signature unknown; restored from __doc__
        """ DoSetSize(self, x: int, y: int, width: int, height: int, sizeFlags: int) """
        pass

    def DoSetSizeHints(self, minW, minH, maxW, maxH, incW, incH): # real signature unknown; restored from __doc__
        """ DoSetSizeHints(self, minW: int, minH: int, maxW: int, maxH: int, incW: int, incH: int) """
        pass

    def DoSetWindowVariant(self, variant): # real signature unknown; restored from __doc__
        """ DoSetWindowVariant(self, variant: WindowVariant) """
        pass

    def DoThaw(self): # real signature unknown; restored from __doc__
        """ DoThaw(self) """
        pass

    def EnableVisibleFocus(self, enabled): # real signature unknown; restored from __doc__
        """ EnableVisibleFocus(self, enabled: bool) """
        pass

    def GetClassDefaultAttributes(self, variant=None): # real signature unknown; restored from __doc__
        """ GetClassDefaultAttributes(variant=wx.WINDOW_VARIANT_NORMAL) -> wx.VisualAttributes """
        pass

    def GetClientAreaOrigin(self): # real signature unknown; restored from __doc__
        """ GetClientAreaOrigin(self) -> Point """
        pass

    def GetDefaultBorder(self): # real signature unknown; restored from __doc__
        """ GetDefaultBorder(self) -> Border """
        pass

    def GetDefaultBorderForControl(self): # real signature unknown; restored from __doc__
        """ GetDefaultBorderForControl(self) -> Border """
        pass

    def GetDefaultBorderSize(self): # real signature unknown; restored from __doc__
        """
        GetDefaultBorderSize() -> int
        
        Gets the default sash border size.
        """
        return 0

    def GetEdgeMargin(self, edge): # real signature unknown; restored from __doc__
        """
        GetEdgeMargin(edge) -> int
        
        Get border size.
        """
        return 0

    def GetExtraBorderSize(self): # real signature unknown; restored from __doc__
        """
        GetExtraBorderSize() -> int
        
        Gets the addition border size between child and sash window.
        """
        return 0

    def GetMainWindowOfCompositeControl(self): # real signature unknown; restored from __doc__
        """ GetMainWindowOfCompositeControl(self) -> Optional[Window] """
        pass

    def GetMaximumSizeX(self): # real signature unknown; restored from __doc__
        """
        GetMaximumSizeX() -> int
        
        Gets the maximum window size in the x direction.
        """
        return 0

    def GetMaximumSizeY(self): # real signature unknown; restored from __doc__
        """
        GetMaximumSizeY() -> int
        
        Gets the maximum window size in the y direction.
        """
        return 0

    def GetMinimumSizeX(self): # real signature unknown; restored from __doc__
        """
        GetMinimumSizeX() -> int
        
        Gets the minimum window size in the x direction.
        """
        return 0

    def GetMinimumSizeY(self): # real signature unknown; restored from __doc__
        """
        GetMinimumSizeY() -> int
        
        Gets the minimum window size in the y direction.
        """
        return 0

    def GetSashVisible(self, edge): # real signature unknown; restored from __doc__
        """
        GetSashVisible(edge) -> bool
        
        Returns true if a sash is visible on the given edge, false otherwise.
        """
        return False

    def GetValidator(self): # real signature unknown; restored from __doc__
        """ GetValidator(self) -> Optional[Validator] """
        pass

    def HasTransparentBackground(self): # real signature unknown; restored from __doc__
        """ HasTransparentBackground(self) -> bool """
        return False

    def InformFirstDirection(self, direction, size, availableOtherDir): # real signature unknown; restored from __doc__
        """ InformFirstDirection(self, direction: int, size: int, availableOtherDir: int) -> bool """
        return False

    def InheritAttributes(self): # real signature unknown; restored from __doc__
        """ InheritAttributes(self) """
        pass

    def InitDialog(self): # real signature unknown; restored from __doc__
        """ InitDialog(self) """
        pass

    def OnInternalIdle(self): # real signature unknown; restored from __doc__
        """ OnInternalIdle(self) """
        pass

    def ProcessEvent(self, event): # real signature unknown; restored from __doc__
        """ ProcessEvent(self, event: Event) -> bool """
        return False

    def RemoveChild(self, child, WindowBase=None): # real signature unknown; restored from __doc__
        """ RemoveChild(self, child: Optional[WindowBase]) """
        pass

    def SashHitTest(self, x, y, tolerance=2): # real signature unknown; restored from __doc__
        """
        SashHitTest(x, y, tolerance=2) -> SashEdgePosition
        
        Tests for x, y over sash.
        """
        return SashEdgePosition

    def SendDestroyEvent(self, *args, **kwargs): # real signature unknown
        pass

    def SetCanFocus(self, canFocus): # real signature unknown; restored from __doc__
        """ SetCanFocus(self, canFocus: bool) """
        pass

    def SetDefaultBorderSize(self, width): # real signature unknown; restored from __doc__
        """
        SetDefaultBorderSize(width) -> None
        
        Sets the default sash border size.
        """
        pass

    def SetExtraBorderSize(self, width): # real signature unknown; restored from __doc__
        """
        SetExtraBorderSize(width) -> None
        
        Sets the additional border size between child and sash window.
        """
        pass

    def SetMaximumSizeX(self, min): # real signature unknown; restored from __doc__
        """
        SetMaximumSizeX(min) -> None
        
        Sets the maximum window size in the x direction.
        """
        pass

    def SetMaximumSizeY(self, min): # real signature unknown; restored from __doc__
        """
        SetMaximumSizeY(min) -> None
        
        Sets the maximum window size in the y direction.
        """
        pass

    def SetMinimumSizeX(self, min): # real signature unknown; restored from __doc__
        """
        SetMinimumSizeX(min) -> None
        
        Sets the minimum window size in the x direction.
        """
        pass

    def SetMinimumSizeY(self, min): # real signature unknown; restored from __doc__
        """
        SetMinimumSizeY(min) -> None
        
        Sets the minimum window size in the y direction.
        """
        pass

    def SetSashVisible(self, edge, visible): # real signature unknown; restored from __doc__
        """
        SetSashVisible(edge, visible) -> None
        
        Call this function to make a sash visible or invisible on a particular
        edge.
        """
        pass

    def SetValidator(self, validator): # real signature unknown; restored from __doc__
        """ SetValidator(self, validator: Validator) """
        pass

    def ShouldInheritColours(self): # real signature unknown; restored from __doc__
        """ ShouldInheritColours(self) -> bool """
        return False

    def SizeWindows(self): # real signature unknown; restored from __doc__
        """
        SizeWindows() -> None
        
        Resizes subwindows.
        """
        pass

    def TransferDataFromWindow(self): # real signature unknown; restored from __doc__
        """ TransferDataFromWindow(self) -> bool """
        return False

    def TransferDataToWindow(self): # real signature unknown; restored from __doc__
        """ TransferDataToWindow(self) -> bool """
        return False

    def TryAfter(self, event): # real signature unknown; restored from __doc__
        """ TryAfter(self, event: Event) -> bool """
        return False

    def TryBefore(self, event): # real signature unknown; restored from __doc__
        """ TryBefore(self, event: Event) -> bool """
        return False

    def Validate(self): # real signature unknown; restored from __doc__
        """ Validate(self) -> bool """
        return False

    def __init__(self, parent=None, id=None, pos=None, size=None, style=None, *args=None, **kwargs=None): # real signature unknown; restored from __doc__ with multiple overloads
        pass

    DefaultBorderSize = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetDefaultBorderSize() -> int

Gets the default sash border size."""

    ExtraBorderSize = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetExtraBorderSize() -> int

Gets the addition border size between child and sash window."""

    MaximumSizeX = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetMaximumSizeX() -> int

Gets the maximum window size in the x direction."""

    MaximumSizeY = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetMaximumSizeY() -> int

Gets the maximum window size in the y direction."""

    MinimumSizeX = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetMinimumSizeX() -> int

Gets the minimum window size in the x direction."""

    MinimumSizeY = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetMinimumSizeY() -> int

Gets the minimum window size in the y direction."""



