# 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 CalculateLayoutEvent(__wx__core.Event):
    """
    CalculateLayoutEvent(id=0) -> None
    
    This event is sent by wxLayoutAlgorithm to calculate the amount of the
    remaining client area that the window should occupy.
    """
    def Clone(self): # real signature unknown; restored from __doc__
        """ Clone(self) -> Optional[Event] """
        pass

    def GetFlags(self): # real signature unknown; restored from __doc__
        """
        GetFlags() -> int
        
        Returns the flags associated with this event.
        """
        return 0

    def GetRect(self): # real signature unknown; restored from __doc__
        """
        GetRect() -> wx.Rect
        
        Before the event handler is entered, returns the remaining parent
        client area that the window could occupy.
        """
        pass

    def SetFlags(self, flags): # real signature unknown; restored from __doc__
        """
        SetFlags(flags) -> None
        
        Sets the flags associated with this event.
        """
        pass

    def SetRect(self, rect): # real signature unknown; restored from __doc__
        """
        SetRect(rect) -> None
        
        Call this to specify the new remaining parent client area, after the
        space occupied by the window has been subtracted.
        """
        pass

    def __init__(self, id=0): # real signature unknown; restored from __doc__
        pass

    Flags = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetFlags() -> int

Returns the flags associated with this event."""

    Rect = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetRect() -> wx.Rect

Before the event handler is entered, returns the remaining parent
client area that the window could occupy."""



