]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/contrib/stc/mac/stc_.py
Applied TRUE/FALSE fix here too.
[wxWidgets.git] / wxPython / contrib / stc / mac / stc_.py
index a7a8e8718a3be8e45ef475d4d6482cf6e82cfd16..4be749e5250fa72a4a8a6fd6ae568e1a3e1d37e0 100644 (file)
@@ -9,6 +9,8 @@ from windows import *
 
 from gdi import *
 
+from fonts import *
+
 from clip_dnd import *
 
 from events import *
@@ -981,6 +983,12 @@ class wxStyledTextCtrlPtr(wxControlPtr):
     def SetHScrollBar(self, *_args, **_kwargs):
         val = apply(stc_c.wxStyledTextCtrl_SetHScrollBar,(self,) + _args, _kwargs)
         return val
+    def GetLastKeydownProcessed(self, *_args, **_kwargs):
+        val = apply(stc_c.wxStyledTextCtrl_GetLastKeydownProcessed,(self,) + _args, _kwargs)
+        return val
+    def SetLastKeydownProcessed(self, *_args, **_kwargs):
+        val = apply(stc_c.wxStyledTextCtrl_SetLastKeydownProcessed,(self,) + _args, _kwargs)
+        return val
     def __repr__(self):
         return "<C wxStyledTextCtrl instance at %s>" % (self.this,)
 class wxStyledTextCtrl(wxStyledTextCtrlPtr):