# 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


class AuiToolBarEvent(__wx__core.NotifyEvent):
    """
    AuiToolBarEvent(commandType=wx.wxEVT_NULL, winId=0) -> None
    AuiToolBarEvent(c) -> None
    
    wxAuiToolBarEvent is used for the events generated by wxAuiToolBar.
    """
    def Clone(self): # real signature unknown; restored from __doc__
        """ Clone(self) -> Optional[Event] """
        pass

    def GetClickPoint(self): # real signature unknown; restored from __doc__
        """
        GetClickPoint() -> wx.Point
        
        Returns the point where the user clicked with the mouse.
        """
        pass

    def GetItemRect(self): # real signature unknown; restored from __doc__
        """
        GetItemRect() -> wx.Rect
        
        Returns the wxAuiToolBarItem rectangle bounding the mouse click point.
        """
        pass

    def GetToolId(self): # real signature unknown; restored from __doc__
        """
        GetToolId() -> int
        
        Returns the wxAuiToolBarItem identifier.
        """
        return 0

    def IsDropDownClicked(self): # real signature unknown; restored from __doc__
        """
        IsDropDownClicked() -> bool
        
        Returns whether the drop down menu has been clicked.
        """
        return False

    def SetClickPoint(self, p): # real signature unknown; restored from __doc__
        """ SetClickPoint(p) -> None """
        pass

    def SetDropDownClicked(self, c): # real signature unknown; restored from __doc__
        """ SetDropDownClicked(c) -> None """
        pass

    def SetItemRect(self, r): # real signature unknown; restored from __doc__
        """ SetItemRect(r) -> None """
        pass

    def SetToolId(self, toolId): # real signature unknown; restored from __doc__
        """ SetToolId(toolId) -> None """
        pass

    def __init__(self, *__args): # real signature unknown; restored from __doc__ with multiple overloads
        pass

    ClickPoint = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetClickPoint() -> wx.Point

Returns the point where the user clicked with the mouse."""

    ItemRect = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetItemRect() -> wx.Rect

Returns the wxAuiToolBarItem rectangle bounding the mouse click point."""

    ToolId = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetToolId() -> int

Returns the wxAuiToolBarItem identifier."""



