]> git.saurik.com Git - wxWidgets.git/blobdiff - utils/wxPython/src/msw/controls.py
more tweaks for release
[wxWidgets.git] / utils / wxPython / src / msw / controls.py
index 6a10d4ced2551e1059819e0b5ad92496071a02d7..5cb2cae1a2ab1054bc7e05b95f7b4859c183105b 100644 (file)
@@ -7,6 +7,8 @@ from windows import *
 
 from gdi import *
 
+from clip_dnd import *
+
 from events import *
 import wx
 class wxControlPtr(wxWindowPtr):
@@ -523,6 +525,15 @@ class wxTextCtrlPtr(wxControlPtr):
     def IsEditable(self, *_args, **_kwargs):
         val = apply(controlsc.wxTextCtrl_IsEditable,(self,) + _args, _kwargs)
         return val
+    def Undo(self, *_args, **_kwargs):
+        val = apply(controlsc.wxTextCtrl_Undo,(self,) + _args, _kwargs)
+        return val
+    def Redo(self, *_args, **_kwargs):
+        val = apply(controlsc.wxTextCtrl_Redo,(self,) + _args, _kwargs)
+        return val
+    def write(self, *_args, **_kwargs):
+        val = apply(controlsc.wxTextCtrl_write,(self,) + _args, _kwargs)
+        return val
     def __repr__(self):
         return "<C wxTextCtrl instance at %s>" % (self.this,)
 class wxTextCtrl(wxTextCtrlPtr):