]> git.saurik.com Git - wxWidgets.git/blobdiff - src/osx/cocoa/window.mm
use inches2mm instead of literal constant in wxGetDisplayPPI()
[wxWidgets.git] / src / osx / cocoa / window.mm
index 7cff3356c65eb3df0406dc30502f5567729ce6ec..561270d96a63feb0cc1af0f32e97565bdc78274b 100644 (file)
@@ -11,7 +11,9 @@
 
 #include "wx/wxprec.h"
 
-#include <Cocoa/Cocoa.h>
+#ifndef WX_PRECOMP
+#include "wx/nonownedwnd.h"
+#endif
 
 #ifdef __WXMAC__
 #include "wx/osx/private.h"
@@ -322,7 +324,7 @@ void SetupMouseEvent( wxMouseEvent &wxevent , NSEvent * nsEvent )
         
         wxRegion updateRgn;
         const NSRect *rects;
-        int count ;
+        NSInteger count;
 
         [self getRectsBeingDrawn:&rects count:&count];
         for ( int i = 0 ; i < count ; ++i )
@@ -708,6 +710,11 @@ void wxWidgetCocoaImpl::SetControlSize( wxWindowVariant variant )
         [m_osxView setControlSize:size];
 }
 
+void wxWidgetCocoaImpl::SetFont(wxFont const&, wxColour const&, long, bool)
+{
+    // TODO
+}
+
 //
 // Factory methods
 //