SWIGged code updates for wxMAC

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13400 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2002-01-06 01:14:26 +00:00
parent b5a5d6473c
commit 6abe8375ac
20 changed files with 2103 additions and 264 deletions

View File

@@ -1008,6 +1008,15 @@ class wxStyledTextEventPtr(wxCommandEventPtr):
def SetY(self, *_args, **_kwargs):
val = apply(stc_c.wxStyledTextEvent_SetY,(self,) + _args, _kwargs)
return val
def SetDragText(self, *_args, **_kwargs):
val = apply(stc_c.wxStyledTextEvent_SetDragText,(self,) + _args, _kwargs)
return val
def SetDragAllowMove(self, *_args, **_kwargs):
val = apply(stc_c.wxStyledTextEvent_SetDragAllowMove,(self,) + _args, _kwargs)
return val
def SetDragResult(self, *_args, **_kwargs):
val = apply(stc_c.wxStyledTextEvent_SetDragResult,(self,) + _args, _kwargs)
return val
def GetPosition(self, *_args, **_kwargs):
val = apply(stc_c.wxStyledTextEvent_GetPosition,(self,) + _args, _kwargs)
return val
@@ -1059,6 +1068,15 @@ class wxStyledTextEventPtr(wxCommandEventPtr):
def GetY(self, *_args, **_kwargs):
val = apply(stc_c.wxStyledTextEvent_GetY,(self,) + _args, _kwargs)
return val
def GetDragText(self, *_args, **_kwargs):
val = apply(stc_c.wxStyledTextEvent_GetDragText,(self,) + _args, _kwargs)
return val
def GetDragAllowMove(self, *_args, **_kwargs):
val = apply(stc_c.wxStyledTextEvent_GetDragAllowMove,(self,) + _args, _kwargs)
return val
def GetDragResult(self, *_args, **_kwargs):
val = apply(stc_c.wxStyledTextEvent_GetDragResult,(self,) + _args, _kwargs)
return val
def GetShift(self, *_args, **_kwargs):
val = apply(stc_c.wxStyledTextEvent_GetShift,(self,) + _args, _kwargs)
return val
@@ -1608,6 +1626,9 @@ wxEVT_STC_USERLISTSELECTION = stc_c.wxEVT_STC_USERLISTSELECTION
wxEVT_STC_URIDROPPED = stc_c.wxEVT_STC_URIDROPPED
wxEVT_STC_DWELLSTART = stc_c.wxEVT_STC_DWELLSTART
wxEVT_STC_DWELLEND = stc_c.wxEVT_STC_DWELLEND
wxEVT_STC_START_DRAG = stc_c.wxEVT_STC_START_DRAG
wxEVT_STC_DRAG_OVER = stc_c.wxEVT_STC_DRAG_OVER
wxEVT_STC_DO_DROP = stc_c.wxEVT_STC_DO_DROP
#-------------- USER INCLUDE -----------------------