git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32622
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
int bmp_w = bmp.GetWidth();
int bmp_h = bmp.GetHeight();
// want default size but it's smaller, paste into transparent image
int bmp_w = bmp.GetWidth();
int bmp_h = bmp.GetHeight();
// want default size but it's smaller, paste into transparent image
- if ((reqSize == wxDefaultSize) &&
+ if ((reqSize == wxDefaultSize) &&
(bmp_h < bestSize.x) && (bmp_w < bestSize.y))
{
wxPoint offset((bestSize.x - bmp_w)/2, (bestSize.y - bmp_h)/2);
(bmp_h < bestSize.x) && (bmp_w < bestSize.y))
{
wxPoint offset((bestSize.x - bmp_w)/2, (bestSize.y - bmp_h)/2);
+#if defined(__WXGTK20__) && !defined(__WXUNIVERSAL__)
#include <gtk/gtk.h>
extern GtkIconSize wxArtClientToIconSize(const wxArtClient& client);
#endif // __WXGTK__
#include <gtk/gtk.h>
extern GtkIconSize wxArtClientToIconSize(const wxArtClient& client);
#endif // __WXGTK__
-/*static*/ wxSize wxArtProvider::GetSize(const wxArtClient& client,
+/*static*/ wxSize wxArtProvider::GetSize(const wxArtClient& client,
bool platform_dependent)
{
if (!platform_dependent)
bool platform_dependent)
{
if (!platform_dependent)
wxArtProvidersList::compatibility_iterator node = sm_providers->GetFirst();
if (node)
return node->GetData()->DoGetSize(client);
wxArtProvidersList::compatibility_iterator node = sm_providers->GetFirst();
if (node)
return node->GetData()->DoGetSize(client);
// else return platform dependent size
// else return platform dependent size
+ }
+
+#if defined(__WXGTK20__) && !defined(__WXUNIVERSAL__)
GtkIconSize gtk_size = wxArtClientToIconSize(client);
gint width, height;
gtk_icon_size_lookup( gtk_size, &width, &height);
return wxSize(width, height);
GtkIconSize gtk_size = wxArtClientToIconSize(client);
gint width, height;
gtk_icon_size_lookup( gtk_size, &width, &height);
return wxSize(width, height);
if (client == wxART_TOOLBAR)
return wxSize(32, 32);
else if (client == wxART_MENU)
if (client == wxART_TOOLBAR)
return wxSize(32, 32);
else if (client == wxART_MENU)
else if (client == wxART_BUTTON)
return wxSize(16, 15);
else
else if (client == wxART_BUTTON)
return wxSize(16, 15);
else
- return wxSize(16, 15); // this is arbitrary
-#endif
+ return wxSize(16, 15); // this is arbitrary
+#endif // GTK+ 2/else