X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c95e68d8c78acef24dbb9f4b638efed1548ba9b8..4fa688d8bced718a7ef35d4ebd3c4db6eb2afa7d:/utils/wxPython/src/gtk/gdi.py diff --git a/utils/wxPython/src/gtk/gdi.py b/utils/wxPython/src/gtk/gdi.py index 81f3b53819..05e3e899e9 100644 --- a/utils/wxPython/src/gtk/gdi.py +++ b/utils/wxPython/src/gtk/gdi.py @@ -147,9 +147,6 @@ class wxFontPtr : def GetFamily(self): val = gdic.wxFont_GetFamily(self.this) return val - def GetFontId(self): - val = gdic.wxFont_GetFontId(self.this) - return val def GetPointSize(self): val = gdic.wxFont_GetPointSize(self.this) return val @@ -162,6 +159,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):