]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/evtloop.h
Pressing build-in joystick on WinCE phones fires wxEVT_JOY_BUTTON_DOWN event.
[wxWidgets.git] / include / wx / evtloop.h
index 42b00f2d03f85a03d350f96017cd2848e64c6115..2612ac024c9643a0c40ff0d9238e3f1891cebfd1 100644 (file)
 #ifndef _WX_EVTLOOP_H_
 #define _WX_EVTLOOP_H_
 
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-    #pragma interface "evtloop.h"
-#endif
-
 #include "wx/utils.h"
 
 class WXDLLEXPORT wxEventLoop;
@@ -72,7 +68,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
 
@@ -88,7 +86,7 @@ public:
     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