# 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


from .DateEvent import DateEvent

class CalendarEvent(DateEvent):
    """
    CalendarEvent() -> None
    CalendarEvent(win, dt, type) -> None
    
    The wxCalendarEvent class is used together with wxCalendarCtrl.
    """
    def Clone(self): # real signature unknown; restored from __doc__
        """ Clone(self) -> Optional[Event] """
        pass

    def GetWeekDay(self): # real signature unknown; restored from __doc__
        """
        GetWeekDay() -> wx.DateTime.WeekDay
        
        Returns the week day on which the user clicked in
        EVT_CALENDAR_WEEKDAY_CLICKED handler.
        """
        pass

    def SetWeekDay(self, day): # real signature unknown; restored from __doc__
        """
        SetWeekDay(day) -> None
        
        Sets the week day carried by the event, normally only used by the
        library internally.
        """
        pass

    def __init__(self, win=None, dt=None, type=None): # real signature unknown; restored from __doc__ with multiple overloads
        pass

    WeekDay = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """GetWeekDay() -> wx.DateTime.WeekDay

Returns the week day on which the user clicked in
EVT_CALENDAR_WEEKDAY_CLICKED handler."""



