X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b639c3c5ef53c4bdefd3b27aac1496787f024cb8..71432ef81fcd99814dc5eab49622e7af04c668e1:/utils/wxPython/src/msw/gdi.py diff --git a/utils/wxPython/src/msw/gdi.py b/utils/wxPython/src/msw/gdi.py index 5852c85e3b..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): @@ -422,6 +422,9 @@ class wxDCPtr : def EndPage(self): val = gdic.wxDC_EndPage(self.this) return val + def FloodFill(self,arg0,arg1,arg2,*args): + val = apply(gdic.wxDC_FloodFill,(self.this,arg0,arg1,arg2.this,)+args) + return val def GetBackground(self): val = gdic.wxDC_GetBackground(self.this) val = wxBrushPtr(val)