]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/window.h
Add wxWindow::ProcessWindowEventLocally() and use it in wxMSW MDI code.
[wxWidgets.git] / interface / wx / window.h
index 63b27031912460f5b6f4ac32471ef8c2f52b694b..ffa3548aec30e15c2f321e8d02148d56337a207d 100644 (file)
@@ -1840,6 +1840,19 @@ public:
     */
     bool ProcessWindowEvent(wxEvent& event);
 
+    /**
+        Wrapper for wxEvtHandler::ProcessEventLocally().
+
+        This method is similar to ProcessWindowEvent() but can be used to
+        search for the event handler only in this window and any event handlers
+        pushed on top of it. Unlike ProcessWindowEvent() it won't propagate the
+        event upwards. But unlike wxEvtHandler::ProcessEventHere() it will use
+        the event handlers associated with this window.
+
+        @since 2.9.1
+     */
+    bool ProcessWindowEventLocally(wxEvent& event);
+
     /**
         Removes and returns the top-most event handler on the event handler stack.