]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/contrib/stc/gtk/stc_.py
compilation fix
[wxWidgets.git] / wxPython / contrib / stc / gtk / stc_.py
index f2434e55412a2b7ee64d45504987ca7c02a6502f..3e45afeeaa6ec7266c0cd71b3049ebefe827976a 100644 (file)
@@ -15,6 +15,8 @@ from events import *
 
 from streams import *
 
+from utils import *
+
 from mdi import *
 
 from frames import *
@@ -39,8 +41,6 @@ from sizers import *
 
 from filesys import *
 
-from utils import *
-
 def EVT_STC_CHANGE(win, id, func):
     win.Connect(id, -1, wxEVT_STC_CHANGE, func)
 
@@ -933,6 +933,12 @@ class wxStyledTextCtrlPtr(wxControlPtr):
     def SendMsg(self, *_args, **_kwargs):
         val = apply(stc_c.wxStyledTextCtrl_SendMsg,(self,) + _args, _kwargs)
         return val
+    def SetVScrollBar(self, *_args, **_kwargs):
+        val = apply(stc_c.wxStyledTextCtrl_SetVScrollBar,(self,) + _args, _kwargs)
+        return val
+    def SetHScrollBar(self, *_args, **_kwargs):
+        val = apply(stc_c.wxStyledTextCtrl_SetHScrollBar,(self,) + _args, _kwargs)
+        return val
     def __repr__(self):
         return "<C wxStyledTextCtrl instance at %s>" % (self.this,)
 class wxStyledTextCtrl(wxStyledTextCtrlPtr):
@@ -1080,8 +1086,9 @@ class wxStyledTextEventPtr(wxCommandEventPtr):
     def GetAlt(self, *_args, **_kwargs):
         val = apply(stc_c.wxStyledTextEvent_GetAlt,(self,) + _args, _kwargs)
         return val
-    def CopyObject(self, *_args, **_kwargs):
-        val = apply(stc_c.wxStyledTextEvent_CopyObject,(self,) + _args, _kwargs)
+    def Clone(self, *_args, **_kwargs):
+        val = apply(stc_c.wxStyledTextEvent_Clone,(self,) + _args, _kwargs)
+        if val: val = wxEventPtr(val) 
         return val
     def __repr__(self):
         return "<C wxStyledTextEvent instance at %s>" % (self.this,)