]> git.saurik.com Git - wxWidgets.git/blobdiff - tests/test.cpp
Removing more CodeWarrior project files.
[wxWidgets.git] / tests / test.cpp
index cc84f279253fa7207dab7922a47d4b37aecb59b6..00d746b2f8db510bdd5b72d47d87ae270ac8d598 100644 (file)
@@ -92,6 +92,24 @@ public:
     virtual int  OnRun();
     virtual int  OnExit();
 
     virtual int  OnRun();
     virtual int  OnExit();
 
+    // used by events propagation test
+    virtual int FilterEvent(wxEvent& event);
+    virtual bool ProcessEvent(wxEvent& event);
+
+    void SetFilterEventFunc(FilterEventFunc f) { m_filterEventFunc = f; }
+    void SetProcessEventFunc(ProcessEventFunc f) { m_processEventFunc = f; }
+
+#ifdef __WXDEBUG__
+    virtual void OnAssertFailure(const wxChar *,
+                                 int,
+                                 const wxChar *,
+                                 const wxChar *,
+                                 const wxChar *)
+    {
+        throw TestAssertFailure();
+    }
+#endif // __WXDEBUG__
+
 private:
     void List(Test *test, const string& parent = "") const;
 
 private:
     void List(Test *test, const string& parent = "") const;
 
@@ -101,6 +119,10 @@ private:
     bool m_detail;
     bool m_timing;
     vector<string> m_registries;
     bool m_detail;
     bool m_timing;
     vector<string> m_registries;
+
+    // event handling hooks
+    FilterEventFunc m_filterEventFunc;
+    ProcessEventFunc m_processEventFunc;
 };
 
 IMPLEMENT_APP_CONSOLE(TestApp)
 };
 
 IMPLEMENT_APP_CONSOLE(TestApp)
@@ -109,6 +131,8 @@ TestApp::TestApp()
   : m_list(false),
     m_longlist(false)
 {
   : m_list(false),
     m_longlist(false)
 {
+    m_filterEventFunc = NULL;
+    m_processEventFunc = NULL;
 }
 
 // Init
 }
 
 // Init
@@ -174,6 +198,33 @@ bool TestApp::OnCmdLineParsed(wxCmdLineParser& parser)
     return TestAppBase::OnCmdLineParsed(parser);
 }
 
     return TestAppBase::OnCmdLineParsed(parser);
 }
 
+// Event handling
+int TestApp::FilterEvent(wxEvent& event)
+{
+    if ( m_filterEventFunc )
+        return (*m_filterEventFunc)(event);
+
+    return TestAppBase::FilterEvent(event);
+}
+
+bool TestApp::ProcessEvent(wxEvent& event)
+{
+    if ( m_processEventFunc )
+        return (*m_processEventFunc)(event);
+
+    return TestAppBase::ProcessEvent(event);
+}
+
+extern void SetFilterEventFunc(FilterEventFunc func)
+{
+    wxGetApp().SetFilterEventFunc(func);
+}
+
+extern void SetProcessEventFunc(ProcessEventFunc func)
+{
+    wxGetApp().SetProcessEventFunc(func);
+}
+
 // Run
 //
 int TestApp::OnRun()
 // Run
 //
 int TestApp::OnRun()