/////////////////////////////////////////////////////////////////////////////
-// Name: src/cocoa/utils.cpp
+// Name: src/cocoa/utils.mm
// Purpose: Various utilities
// Author: David Elliott
// Created: 2003/??/??
#include "wx/apptrait.h"
#include "wx/display.h"
+#include "wx/evtloop.h"
#include "wx/cocoa/private/timer.h"
#include <ctype.h>
return new wxCocoaTimerImpl(timer);
}
+wxEventLoopBase* wxGUIAppTraits::CreateEventLoop()
+{
+ return new wxGUIEventLoop;
+}
+
wxWindow* wxFindWindowAtPoint(const wxPoint& pt)
{
return wxGenericFindWindowAtPoint(pt);
}
// Private helper method for wxLaunchDefaultBrowser
-bool wxCocoaLaunchDefaultBrowser(const wxString& url, int flags)
+bool wxDoLaunchDefaultBrowser(const wxString& url, int flags)
{
// NOTE: We ignore the flags
return [[NSWorkspace sharedWorkspace] openURL: [NSURL URLWithString:wxNSStringWithWxString(url)]] != NO;