First pass at wxPython for Mac (darwin only so far). It

builds but doesn't run yet.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12177 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2001-10-27 00:08:14 +00:00
parent 35bf863b1c
commit e6056257ab
64 changed files with 147822 additions and 237 deletions

View File

@@ -1002,15 +1002,6 @@ 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
@@ -1062,15 +1053,6 @@ 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
@@ -1619,9 +1601,6 @@ 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 -----------------------