]> git.saurik.com Git - wxWidgets.git/blobdiff - src/cocoa/utils.mm
Removed useless wxDisplaySize() calls from wxHtmlPrintout.
[wxWidgets.git] / src / cocoa / utils.mm
index a2ae48aa1a9e89da70cc08286dc3bb1874fdcbe7..07deb4696065b9260d0acdeb0bb020c007dc9f81 100644 (file)
@@ -18,6 +18,7 @@
 
 #include "wx/apptrait.h"
 #include "wx/display.h"
+#include "wx/evtloop.h"
 #include "wx/cocoa/private/timer.h"
 
 #include <ctype.h>
 #include <string.h>
 #include <stdarg.h>
 
+#include "wx/cocoa/string.h"
+
+#import <Foundation/NSURL.h>
+#import <AppKit/NSWorkspace.h>
+
 void wxDisplaySize(int *width, int *height)
 {
     // TODO
@@ -67,6 +73,11 @@ wxTimerImpl* wxGUIAppTraits::CreateTimerImpl(wxTimer* timer)
     return new wxCocoaTimerImpl(timer);
 }
 
+wxEventLoopBase* wxGUIAppTraits::CreateEventLoop()
+{
+    return new wxGUIEventLoop;
+}
+
 wxWindow* wxFindWindowAtPoint(const wxPoint& pt)
 {
     return wxGenericFindWindowAtPoint(pt);
@@ -97,6 +108,13 @@ void wxBell()
     // TODO
 }
 
+// Private helper method for wxLaunchDefaultBrowser
+bool wxDoLaunchDefaultBrowser(const wxString& url, int flags)
+{
+    // NOTE: We ignore the flags
+    return [[NSWorkspace sharedWorkspace] openURL: [NSURL URLWithString:wxNSStringWithWxString(url)]] != NO;
+}
+
 #if 0
 // DFE: These aren't even implemented by wxGTK, and no wxWidgets code calls
 // them.  If someone needs them, then they'll get a link error