implemented wxEventLoop for wxMac

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36846 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2006-01-12 20:09:00 +00:00
parent 25e2f480a7
commit 4d90072c22
10 changed files with 194 additions and 104 deletions

View File

@@ -75,7 +75,9 @@ protected:
#include "wx/palmos/evtloop.h"
#elif defined(__WXMSW__)
#include "wx/msw/evtloop.h"
#else
#elif defined(__WXMAC__)
#include "wx/mac/evtloop.h"
#else // other platform
class WXDLLEXPORT wxEventLoopImpl;
@@ -95,9 +97,9 @@ protected:
wxEventLoopImpl *m_impl;
DECLARE_NO_COPY_CLASS(wxEventLoop)
};
};
#endif // __WXMSW__/!__WXMSW__
#endif // platforms
inline bool wxEventLoopBase::IsRunning() const { return GetActive() == this; }