]> git.saurik.com Git - wxWidgets.git/blobdiff - src/osx/carbon/evtloop.cpp
avoiding warning because of missing define
[wxWidgets.git] / src / osx / carbon / evtloop.cpp
index 681564bffae0dc11a557cabcc089e382962fc8b1..deee02fdce49fe6f2b64b763495977716e1d6815 100644 (file)
     #include "wx/app.h"
 #endif // WX_PRECOMP
 
-#ifdef __DARWIN__
+#if wxOSX_USE_CARBON
     #include <Carbon/Carbon.h>
 #else
-    #include <Carbon.h>
+    #include <CoreFoundation/CoreFoundation.h>
 #endif
 // ============================================================================
 // wxEventLoop implementation
@@ -43,6 +43,8 @@
 // high level functions for RunApplicationEventLoop() case
 // ----------------------------------------------------------------------------
 
+
+
 #if wxMAC_USE_RUN_APP_EVENT_LOOP
 
 int wxGUIEventLoop::Run()
@@ -84,6 +86,7 @@ void wxGUIEventLoop::WakeUp()
 
 bool wxGUIEventLoop::Pending() const
 {
+#if wxOSX_USE_CARBON
     EventRef theEvent;
 
     return ReceiveNextEvent
@@ -94,16 +97,23 @@ bool wxGUIEventLoop::Pending() const
             false,      // don't remove the event from queue
             &theEvent
            ) == noErr;
+#else
+    return true; // TODO
+#endif
 }
 
 bool wxGUIEventLoop::Dispatch()
 {
-    // TODO: we probably should do the dispatching directly from here but for
-    //       now it's easier to forward to wxApp which has all the code to do
-    //       it
     if ( !wxTheApp )
         return false;
 
+#if wxOSX_USE_CARBON
+    // TODO: we probably should do the dispatching directly from here but for
+    //       now it's easier to forward to wxApp which has all the code to do
+    //       it
     wxTheApp->MacDoOneEvent();
+#else
+    CFRunLoopRunInMode(kCFRunLoopDefaultMode, 0, 0);
+#endif
     return true;
 }