]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/_evthandler.i
use the right number in the tarball filename
[wxWidgets.git] / wxPython / src / _evthandler.i
index 8b39ea8a5ecc4f1182e88777adf766d2a6461b22..8820696dcf06e552146638d48b8fb9eeb3a84381 100644 (file)
@@ -22,6 +22,7 @@ public:
     // turn off this typemap
     %typemap(out) wxEvtHandler*;    
 
+    %pythonAppend wxEvtHandler         "self._setOORInfo(self)"
     wxEvtHandler();
 
     // Turn it back on again
@@ -45,6 +46,11 @@ public:
     // process all pending events
     void ProcessPendingEvents();
 
+    // reentrance guard
+    void AllowReentrance( bool allow = true );
+    bool IsReentranceAllowed();
+    bool IsEventHandlingInProgress();
+
     %extend {
         // Dynamic association of a member function handler with the event handler
         void Connect( int id, int lastId, int eventType, PyObject* func) {