]> git.saurik.com Git - wxWidgets.git/blobdiff - tests/testprec.h
adding more native definitions
[wxWidgets.git] / tests / testprec.h
index 84edfc45eb67a2306b9ce2bbe59dd9c8a7ca4fb2..3342bb01a8808481b0a9eb864f4f06c86f3aa860 100644 (file)
@@ -27,3 +27,12 @@ class TestAssertFailure { };
     #define WX_ASSERT_FAILS_WITH_ASSERT(cond) CPPUNIT_ASSERT(!(cond))
 #endif
 
+// these functions can be used to hook into wxApp event processing and are
+// currently used by the events propagation test
+class WXDLLIMPEXP_FWD_BASE wxEvent;
+
+typedef int (*FilterEventFunc)(wxEvent&);
+typedef bool (*ProcessEventFunc)(wxEvent&);
+
+extern void SetFilterEventFunc(FilterEventFunc func);
+extern void SetProcessEventFunc(ProcessEventFunc func);