]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/contrib/gizmos/gizmos.py
Some refinements to my experimental RPM builder script and spec
[wxWidgets.git] / wxPython / contrib / gizmos / gizmos.py
index 079cfd029f343cb98bf1d5fe0976652badbe1cfc..dfb3f66d85825f2b09be7ce8b9c99ad695e403b4 100644 (file)
@@ -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 "<C wxEditableListBox instance at %s>" % (self.this,)
 class wxEditableListBox(wxEditableListBoxPtr):