]> git.saurik.com Git - wxWidgets.git/blobdiff - src/osx/artmac.cpp
Forgot header with OSX prefix
[wxWidgets.git] / src / osx / artmac.cpp
index 548eb2ce970c42f56f936e40c1be247701e31f33..37a2f3e2027a5cbd9705c355ef8ca70b78c8b113 100644 (file)
     #pragma hdrstop
 #endif
 
+#include "wx/artprov.h"
+
 #ifndef WX_PRECOMP
     #include "wx/image.h"
 #endif
 
-#if !defined(__WXUNIVERSAL__)
-
-#include "wx/artprov.h"
-#include "wx/image.h"
+#if wxOSX_USE_CARBON
 
 // ----------------------------------------------------------------------------
 // wxMacArtProvider
@@ -109,6 +108,22 @@ wxBitmap wxMacArtProvider::CreateBitmap(const wxArtID& id,
     return wxNullBitmap;
 }
 
-#endif // !defined(__WXUNIVERSAL__)
 
+// ----------------------------------------------------------------------------
+// wxArtProvider::GetNativeSizeHint()
+// ----------------------------------------------------------------------------
+
+/*static*/
+wxSize wxArtProvider::GetNativeSizeHint(const wxArtClient& client)
+{
+    if ( client == wxART_TOOLBAR )
+    {
+        // See http://developer.apple.com/documentation/UserExperience/Conceptual/AppleHIGuidelines/XHIGIcons/chapter_15_section_9.html:
+        // "32 x 32 pixels is the recommended size"
+        return wxSize(32, 32);
+    }
+
+    return wxDefaultSize;
+}
 
+#endif // wxOSX_USE_CARBON