# 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 .AuiTabArt import AuiTabArt

class AuiSimpleTabArt(AuiTabArt):
    """
    AuiSimpleTabArt() -> None
    
    Another standard tab art provider for wxAuiNotebook.
    """
    def Clone(self): # real signature unknown; restored from __doc__
        """
        Clone() -> AuiTabArt
        
        Clones the art object.
        """
        return AuiTabArt

    def DrawBackground(self, dc, wnd, rect): # real signature unknown; restored from __doc__
        """
        DrawBackground(dc, wnd, rect) -> None
        
        Draws a background on the given area.
        """
        pass

    def DrawButton(self, dc, wnd, in_rect, bitmap_id, button_state, orientation, out_rect): # real signature unknown; restored from __doc__
        """
        DrawButton(dc, wnd, in_rect, bitmap_id, button_state, orientation, out_rect) -> None
        
        Draws a button.
        """
        pass

    def DrawTab(self, dc, wnd, page, rect, close_button_state, out_tab_rect, out_button_rect, x_extent): # real signature unknown; restored from __doc__
        """
        DrawTab(dc, wnd, page, rect, close_button_state, out_tab_rect, out_button_rect, x_extent) -> None
        
        Draws a tab.
        """
        pass

    def GetBestTabCtrlSize(self): # real signature unknown; restored from __doc__
        """
        GetBestTabCtrlSize() -> int
        
        Returns the tab control size.
        """
        return 0

    def GetIndentSize(self): # real signature unknown; restored from __doc__
        """
        GetIndentSize() -> int
        
        Returns the indent size.
        """
        return 0

    def GetTabSize(self, dc, wnd, caption, bitmap, active, closeButtonState, xExtent): # real signature unknown; restored from __doc__
        """ GetTabSize(dc, wnd, caption, bitmap, active, closeButtonState, xExtent) -> wx.Size """
        pass

    def SetActiveColour(self, colour): # real signature unknown; restored from __doc__
        """
        SetActiveColour(colour) -> None
        
        Sets the colour of the selected tab.
        """
        pass

    def SetColour(self, colour): # real signature unknown; restored from __doc__
        """
        SetColour(colour) -> None
        
        Sets the colour of the inactive tabs.
        """
        pass

    def SetFlags(self, flags): # real signature unknown; restored from __doc__
        """
        SetFlags(flags) -> None
        
        Sets flags.
        """
        pass

    def SetMeasuringFont(self, font): # real signature unknown; restored from __doc__
        """
        SetMeasuringFont(font) -> None
        
        Sets the font used for calculating measurements.
        """
        pass

    def SetNormalFont(self, font): # real signature unknown; restored from __doc__
        """
        SetNormalFont(font) -> None
        
        Sets the normal font for drawing labels.
        """
        pass

    def SetSelectedFont(self, font): # real signature unknown; restored from __doc__
        """
        SetSelectedFont(font) -> None
        
        Sets the font for drawing text for selected UI elements.
        """
        pass

    def SetSizingInfo(self, tab_ctrl_size, tab_count, wnd=None): # real signature unknown; restored from __doc__
        """
        SetSizingInfo(tab_ctrl_size, tab_count, wnd=None) -> None
        
        Sets sizing information.
        """
        pass

    def ShowDropDown(self, wnd, items, activeIdx): # real signature unknown; restored from __doc__
        """ ShowDropDown(wnd, items, activeIdx) -> int """
        return 0

    def __init__(self): # real signature unknown; restored from __doc__
        pass

    IndentSize = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetIndentSize() -> int

Returns the indent size."""



