X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c95e68d8c78acef24dbb9f4b638efed1548ba9b8..657865d295e327e679d3ea493cff6fb1ca50cd3c:/utils/wxPython/src/gtk/gdi.py diff --git a/utils/wxPython/src/gtk/gdi.py b/utils/wxPython/src/gtk/gdi.py index 81f3b53819..dac504bd6d 100644 --- a/utils/wxPython/src/gtk/gdi.py +++ b/utils/wxPython/src/gtk/gdi.py @@ -162,6 +162,24 @@ class wxFontPtr : def GetWeight(self): val = gdic.wxFont_GetWeight(self.this) return val + def SetFaceName(self,arg0): + val = gdic.wxFont_SetFaceName(self.this,arg0) + return val + def SetFamily(self,arg0): + val = gdic.wxFont_SetFamily(self.this,arg0) + return val + def SetPointSize(self,arg0): + val = gdic.wxFont_SetPointSize(self.this,arg0) + return val + def SetStyle(self,arg0): + val = gdic.wxFont_SetStyle(self.this,arg0) + return val + def SetUnderlined(self,arg0): + val = gdic.wxFont_SetUnderlined(self.this,arg0) + return val + def SetWeight(self,arg0): + val = gdic.wxFont_SetWeight(self.this,arg0) + return val def __repr__(self): return "" class wxFont(wxFontPtr):