X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/eaca2a2cfcdd82a877c966b4f702a5a460c8c4c4..45a9a13763b650a823cfd9c1683900558f67a514:/include/wx/evtloop.h?ds=inline diff --git a/include/wx/evtloop.h b/include/wx/evtloop.h index bc8ea3d077..cb2de4ac71 100644 --- a/include/wx/evtloop.h +++ b/include/wx/evtloop.h @@ -39,10 +39,10 @@ public: // exit from the loop with the given exit code virtual void Exit(int rc = 0) = 0; - // return TRUE if any events are available + // return true if any events are available virtual bool Pending() const = 0; - // dispatch a single event, return FALSE if we should exit from the loop + // dispatch a single event, return false if we should exit from the loop virtual bool Dispatch() = 0; // is the event loop running now? @@ -72,7 +72,9 @@ protected: // can sometimes be very useful (e.g. under MSW this is necessary for // integration with MFC) but currently this is done for MSW only, other ports // should follow a.s.a.p. -#ifdef __WXMSW__ +#if defined(__WXPALMOS__) + #include "wx/palmos/evtloop.h" +#elif defined(__WXMSW__) #include "wx/msw/evtloop.h" #else @@ -83,12 +85,12 @@ class WXDLLEXPORT wxEventLoop : public wxEventLoopBase public: wxEventLoop() { m_impl = NULL; } virtual ~wxEventLoop(); - + virtual int Run(); virtual void Exit(int rc = 0); virtual bool Pending() const; virtual bool Dispatch(); - virtual bool IsRunning() const { return m_impl != NULL; } + virtual bool IsRunning() const { return GetActive() == this; } protected: // the pointer to the port specific implementation class