X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6187ec8f45926aac5d4e03cc794bd0b1fe9d91ea..357262e4a1ba5b056fde35a4d3e552a0e14db938:/wxPython/contrib/gizmos/gizmos.py?ds=sidebyside diff --git a/wxPython/contrib/gizmos/gizmos.py b/wxPython/contrib/gizmos/gizmos.py index 079cfd029f..dfb3f66d85 100644 --- a/wxPython/contrib/gizmos/gizmos.py +++ b/wxPython/contrib/gizmos/gizmos.py @@ -9,6 +9,8 @@ from windows import * from gdi import * +from fonts import * + from clip_dnd import * from events import * @@ -117,6 +119,24 @@ class wxEditableListBoxPtr(wxPanelPtr): def GetStrings(self, *_args, **_kwargs): val = apply(gizmosc.wxEditableListBox_GetStrings,(self,) + _args, _kwargs) return val + def GetListCtrl(self, *_args, **_kwargs): + val = apply(gizmosc.wxEditableListBox_GetListCtrl,(self,) + _args, _kwargs) + return val + def GetDelButton(self, *_args, **_kwargs): + val = apply(gizmosc.wxEditableListBox_GetDelButton,(self,) + _args, _kwargs) + return val + def GetNewButton(self, *_args, **_kwargs): + val = apply(gizmosc.wxEditableListBox_GetNewButton,(self,) + _args, _kwargs) + return val + def GetUpButton(self, *_args, **_kwargs): + val = apply(gizmosc.wxEditableListBox_GetUpButton,(self,) + _args, _kwargs) + return val + def GetDownButton(self, *_args, **_kwargs): + val = apply(gizmosc.wxEditableListBox_GetDownButton,(self,) + _args, _kwargs) + return val + def GetEditButton(self, *_args, **_kwargs): + val = apply(gizmosc.wxEditableListBox_GetEditButton,(self,) + _args, _kwargs) + return val def __repr__(self): return "" % (self.this,) class wxEditableListBox(wxEditableListBoxPtr):