X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/21f8d7ea6b728d473045198304592b61c610e49a..98d3fdbedde0fb8fc0c70c3e9c384b59ecbeedac:/utils/wxPython/src/gtk/gdi.py diff --git a/utils/wxPython/src/gtk/gdi.py b/utils/wxPython/src/gtk/gdi.py index 724c81dd9a..75790253bb 100644 --- a/utils/wxPython/src/gtk/gdi.py +++ b/utils/wxPython/src/gtk/gdi.py @@ -344,6 +344,9 @@ class wxDCPtr : def DrawArc(self,arg0,arg1,arg2,arg3,arg4,arg5): val = gdic.wxDC_DrawArc(self.this,arg0,arg1,arg2,arg3,arg4,arg5) return val + def DrawCircle(self,arg0,arg1,arg2): + val = gdic.wxDC_DrawCircle(self.this,arg0,arg1,arg2) + return val def DrawEllipse(self,arg0,arg1,arg2,arg3): val = gdic.wxDC_DrawEllipse(self.this,arg0,arg1,arg2,arg3) return val @@ -440,8 +443,13 @@ class wxDCPtr : val = wxColourPtr(val) val.thisown = 1 return val + def GetSizeTuple(self): + val = gdic.wxDC_GetSizeTuple(self.this) + return val def GetSize(self): val = gdic.wxDC_GetSize(self.this) + val = wxSizePtr(val) + val.thisown = 1 return val def GetTextBackground(self): val = gdic.wxDC_GetTextBackground(self.this)