#include "wx/image.h"
#endif
-#if wxOSX_USE_COCOA_OR_CARBON
+#include "wx/osx/private.h"
// ----------------------------------------------------------------------------
// wxMacArtProvider
class wxMacArtProvider : public wxArtProvider
{
protected:
+#if wxOSX_USE_COCOA_OR_CARBON
virtual wxIconBundle CreateIconBundle(const wxArtID& id,
const wxArtClient& client);
+#endif
+#if wxOSX_USE_COCOA_OR_IPHONE
+ virtual wxBitmap CreateBitmap(const wxArtID& id,
+ const wxArtClient& client,
+ const wxSize& size)
+ {
+ return wxOSXCreateSystemBitmap(id, client, size);
+ }
+#endif
};
/* static */ void wxArtProvider::InitNativeProvider()
{
- wxArtProvider::Push(new wxMacArtProvider);
+ PushBack(new wxMacArtProvider);
}
+#if wxOSX_USE_COCOA_OR_CARBON
+
// ----------------------------------------------------------------------------
// helper macros
// ----------------------------------------------------------------------------
return wxMacArtProvider_CreateIconBundle(id);
}
+#endif
// ----------------------------------------------------------------------------
// wxArtProvider::GetNativeSizeHint()
return wxDefaultSize;
}
-#endif // wxOSX_USE_COCOA_CARBON