X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ab2208b54e16b9aec14a20c041031ac40890c161..b51b78a9c7b50053cdcf4a22d2222500a20eb8ee:/utils/wxPython/src/gtk/stattool.py diff --git a/utils/wxPython/src/gtk/stattool.py b/utils/wxPython/src/gtk/stattool.py index 1c54ead378..f9cc36b5f9 100644 --- a/utils/wxPython/src/gtk/stattool.py +++ b/utils/wxPython/src/gtk/stattool.py @@ -27,14 +27,11 @@ class wxStatusBarPtr(wxWindowPtr): def GetStatusText(self, *_args, **_kwargs): val = apply(stattoolc.wxStatusBar_GetStatusText,(self,) + _args, _kwargs) return val - def DrawField(self, *_args, **_kwargs): - val = apply(stattoolc.wxStatusBar_DrawField,(self,) + _args, _kwargs) + def GetBorderX(self, *_args, **_kwargs): + val = apply(stattoolc.wxStatusBar_GetBorderX,(self,) + _args, _kwargs) return val - def DrawFieldText(self, *_args, **_kwargs): - val = apply(stattoolc.wxStatusBar_DrawFieldText,(self,) + _args, _kwargs) - return val - def InitColours(self, *_args, **_kwargs): - val = apply(stattoolc.wxStatusBar_InitColours,(self,) + _args, _kwargs) + def GetBorderY(self, *_args, **_kwargs): + val = apply(stattoolc.wxStatusBar_GetBorderY,(self,) + _args, _kwargs) return val def SetFieldsCount(self, *_args, **_kwargs): val = apply(stattoolc.wxStatusBar_SetFieldsCount,(self,) + _args, _kwargs) @@ -45,6 +42,9 @@ class wxStatusBarPtr(wxWindowPtr): def SetStatusWidths(self, *_args, **_kwargs): val = apply(stattoolc.wxStatusBar_SetStatusWidths,(self,) + _args, _kwargs) return val + def SetMinHeight(self, *_args, **_kwargs): + val = apply(stattoolc.wxStatusBar_SetMinHeight,(self,) + _args, _kwargs) + return val def __repr__(self): return "" % (self.this,) class wxStatusBar(wxStatusBarPtr):