X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/be4d9c1faf22d57098d17a578d218514598c9ce5..a91b47e800c78dbf8e91191ce3977d148a13f1fe:/utils/wxPython/src/msw/gdi.py diff --git a/utils/wxPython/src/msw/gdi.py b/utils/wxPython/src/msw/gdi.py index 3f2305b969..868a287116 100644 --- a/utils/wxPython/src/msw/gdi.py +++ b/utils/wxPython/src/msw/gdi.py @@ -244,13 +244,6 @@ class wxPenPtr : val = gdic.wxPen_GetColour(self.this) val = wxColourPtr(val) return val - def GetDashes(self,arg0): - val = gdic.wxPen_GetDashes(self.this,arg0) - return val - def GetStipple(self): - val = gdic.wxPen_GetStipple(self.this) - val = wxBitmapPtr(val) - return val def GetJoin(self): val = gdic.wxPen_GetJoin(self.this) return val @@ -269,12 +262,6 @@ class wxPenPtr : def SetColour(self,arg0): val = gdic.wxPen_SetColour(self.this,arg0.this) return val - def SetDashes(self,arg0,*args): - val = apply(gdic.wxPen_SetDashes,(self.this,arg0,)+args) - return val - def SetStipple(self,arg0): - val = gdic.wxPen_SetStipple(self.this,arg0.this) - return val def SetJoin(self,arg0): val = gdic.wxPen_SetJoin(self.this,arg0) return val @@ -284,6 +271,19 @@ class wxPenPtr : def SetWidth(self,arg0): val = gdic.wxPen_SetWidth(self.this,arg0) return val + def GetDashes(self,arg0): + val = gdic.wxPen_GetDashes(self.this,arg0) + return val + def GetStipple(self): + val = gdic.wxPen_GetStipple(self.this) + val = wxBitmapPtr(val) + return val + def SetDashes(self,arg0,*args): + val = apply(gdic.wxPen_SetDashes,(self.this,arg0,)+args) + return val + def SetStipple(self,arg0): + val = gdic.wxPen_SetStipple(self.this,arg0.this) + return val def __repr__(self): return "" class wxPen(wxPenPtr):