+// ----------------------------------------------------------------------------
+// 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;
+}