]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/contrib/stc/stc_.py
correction for Mac OS compilation
[wxWidgets.git] / wxPython / contrib / stc / stc_.py
index 28adf75bde96f5c99c528c13afab565e50bf38ae..b77cd7e8d0433361beef04d45e3891dee0392632 100644 (file)
@@ -13,6 +13,8 @@ from clip_dnd import *
 
 from events import *
 
+from streams import *
+
 from mdi import *
 
 from frames import *
@@ -35,6 +37,10 @@ from printfw import *
 
 from sizers import *
 
+from filesys import *
+
+from utils import *
+
 def EVT_STC_CHANGE(win, id, fn):
     win.Connect(id, -1, wxEVT_STC_CHANGE, fn)
 
@@ -762,6 +768,12 @@ class wxStyledTextCtrlPtr(wxControlPtr):
         val = apply(stc_c.wxStyledTextCtrl_PointFromPosition,(self,) + _args, _kwargs)
         if val: val = wxPointPtr(val) ; val.thisown = 1
         return val
+    def ScrollToLine(self, *_args, **_kwargs):
+        val = apply(stc_c.wxStyledTextCtrl_ScrollToLine,(self,) + _args, _kwargs)
+        return val
+    def ScrollToColumn(self, *_args, **_kwargs):
+        val = apply(stc_c.wxStyledTextCtrl_ScrollToColumn,(self,) + _args, _kwargs)
+        return val
     def __repr__(self):
         return "<C wxStyledTextCtrl instance at %s>" % (self.this,)
 class wxStyledTextCtrl(wxStyledTextCtrlPtr):