# encoding: utf-8
# module wx._aui
# from D:\project\A_Board\.venv\Lib\site-packages\wx\_aui.cp313-win_amd64.pyd
# by generator 1.147
# no doc

# imports
import sip as __sip
import wx._core as __wx__core


from .AuiDockArt import AuiDockArt

class AuiDefaultDockArt(AuiDockArt):
    """
    AuiDefaultDockArt() -> None
    
    This is the default art provider for wxAuiManager.
    """
    def Clone(self): # real signature unknown; restored from __doc__
        """
        Clone() -> AuiDockArt
        
        Create a copy of this wxAuiDockArt instance.
        """
        return AuiDockArt

    def DrawBackground(self, dc, window, orientation, rect): # real signature unknown; restored from __doc__
        """
        DrawBackground(dc, window, orientation, rect) -> None
        
        Draws a background.
        """
        pass

    def DrawBorder(self, dc, window, rect, pane): # real signature unknown; restored from __doc__
        """
        DrawBorder(dc, window, rect, pane) -> None
        
        Draws a border.
        """
        pass

    def DrawCaption(self, dc, window, text, rect, pane): # real signature unknown; restored from __doc__
        """
        DrawCaption(dc, window, text, rect, pane) -> None
        
        Draws a caption.
        """
        pass

    def DrawGripper(self, dc, window, rect, pane): # real signature unknown; restored from __doc__
        """
        DrawGripper(dc, window, rect, pane) -> None
        
        Draws a gripper.
        """
        pass

    def DrawIcon(self, dc, rect, pane): # real signature unknown; restored from __doc__
        """ DrawIcon(dc, rect, pane) -> None """
        pass

    def DrawPaneButton(self, dc, window, button, button_state, rect, pane): # real signature unknown; restored from __doc__
        """
        DrawPaneButton(dc, window, button, button_state, rect, pane) -> None
        
        Draws a button in the pane's title bar.
        """
        pass

    def DrawSash(self, dc, window, orientation, rect): # real signature unknown; restored from __doc__
        """
        DrawSash(dc, window, orientation, rect) -> None
        
        Draws a sash between two windows.
        """
        pass

    def GetColour(self, id): # real signature unknown; restored from __doc__
        """
        GetColour(id) -> wx.Colour
        
        Get the colour of a certain setting.
        """
        pass

    def GetFont(self, id): # real signature unknown; restored from __doc__
        """
        GetFont(id) -> wx.Font
        
        Get a font setting.
        """
        pass

    def GetMetric(self, id): # real signature unknown; restored from __doc__
        """
        GetMetric(id) -> int
        
        Get the value of a certain setting.
        """
        return 0

    def SetColour(self, id, colour): # real signature unknown; restored from __doc__
        """
        SetColour(id, colour) -> None
        
        Set a certain setting with the value colour.
        """
        pass

    def SetFont(self, id, font): # real signature unknown; restored from __doc__
        """
        SetFont(id, font) -> None
        
        Set a font setting.
        """
        pass

    def SetMetric(self, id, new_val): # real signature unknown; restored from __doc__
        """
        SetMetric(id, new_val) -> None
        
        Set a certain setting with the value new_val.
        """
        pass

    def __init__(self): # real signature unknown; restored from __doc__
        pass


