]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/evtloop.h
added some trivial macros for exception handling
[wxWidgets.git] / include / wx / evtloop.h
index 4e90d3d80326a5c662a4c1305517fc039d8feb88..95e2fce43e26f0e6e63c0c6cec7354812f1d4393 100644 (file)
@@ -12,7 +12,7 @@
 #ifndef _WX_EVTLOOP_H_
 #define _WX_EVTLOOP_H_
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
     #pragma interface "evtloop.h"
 #endif
 
@@ -44,9 +44,19 @@ public:
     // is the event loop running now?
     virtual bool IsRunning() const;
 
+    // return currently active (running) event loop, may be NULL
+    static wxEventLoop *GetActive() { return ms_activeLoop; }
+
+    // set currently active (running) event loop
+    static void SetActive(wxEventLoop* loop) { ms_activeLoop = loop; }
+
 protected:
     // the pointer to the port specific implementation class
     class WXDLLEXPORT wxEventLoopImpl *m_impl;
+    // the pointer to currently active loop
+    static wxEventLoop *ms_activeLoop;
+
+    DECLARE_NO_COPY_CLASS(wxEventLoop)
 };
 
 #endif // _WX_EVTLOOP_H_