#include "wx/bmpbuttn.h"
-#include <gdk/gdk.h>
-#include <gtk/gtk.h>
+#include "wx/gtk/private.h"
//-----------------------------------------------------------------------------
// classes
void wxBitmapButton::ApplyWidgetStyle()
{
- if (GTK_BUTTON(m_widget)->child == NULL) return;
+ if ( !BUTTON_CHILD(m_widget) )
+ return;
wxButton::ApplyWidgetStyle();
}
GdkBitmap *mask = (GdkBitmap *) NULL;
if (the_one.GetMask()) mask = the_one.GetMask()->GetBitmap();
- GtkButton *bin = GTK_BUTTON(m_widget);
- if (bin->child == NULL)
+ GtkWidget *child = BUTTON_CHILD(m_widget);
+ if (child == NULL)
{
// initial bitmap
GtkWidget *pixmap = gtk_pixmap_new(the_one.GetPixmap(), mask);
}
else
{ // subsequent bitmaps
- GtkPixmap *g_pixmap = GTK_PIXMAP(bin->child);
+ GtkPixmap *g_pixmap = GTK_PIXMAP(child);
gtk_pixmap_set(g_pixmap, the_one.GetPixmap(), mask);
}
}