X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/3808e191421b1337b3c688cf6d75efa43582547a..69429a166f8b168228bbb89eb8c52903670f4fd2:/include/wx/evtloop.h diff --git a/include/wx/evtloop.h b/include/wx/evtloop.h index 4e90d3d803..80f0916e85 100644 --- a/include/wx/evtloop.h +++ b/include/wx/evtloop.h @@ -12,7 +12,7 @@ #ifndef _WX_EVTLOOP_H_ #define _WX_EVTLOOP_H_ -#ifdef __GNUG__ +#if defined(__GNUG__) && !defined(__APPLE__) #pragma interface "evtloop.h" #endif @@ -43,10 +43,18 @@ 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; }; #endif // _WX_EVTLOOP_H_