wxCommandEvent event(wxEVT_COMMAND_BUTTON_CLICKED, button->GetId());
event.SetEventObject(button);
- button->GetEventHandler()->ProcessEvent(event);
+ button->HandleWindowEvent(event);
}
}
if (!button->m_hasVMT) return;
if (g_blockEventsOnDrag) return;
- button->HasFocus();
+ button->GTKHasFocus();
}
}
if (!button->m_hasVMT) return;
if (g_blockEventsOnDrag) return;
- button->NotFocus();
+ button->GTKNotFocus();
}
}
if (!button->m_hasVMT) return;
if (g_blockEventsOnDrag) return;
- button->StartSelect();
+ button->GTKStartSelect();
}
}
if (!button->m_hasVMT) return;
if (g_blockEventsOnDrag) return;
- button->EndSelect();
+ button->GTKEndSelect();
}
}
if (!the_one.Ok()) the_one = m_bmpNormal;
if (!the_one.Ok()) return;
- GdkBitmap *mask = (GdkBitmap *) NULL;
- if (the_one.GetMask()) mask = the_one.GetMask()->GetBitmap();
-
GtkWidget *child = GTK_BIN(m_widget)->child;
if (child == NULL)
{
// initial bitmap
- GtkWidget *pixmap;
-
- if (the_one.HasPixbuf())
- pixmap = gtk_image_new_from_pixbuf(the_one.GetPixbuf());
- else
- pixmap = gtk_image_new_from_pixmap(the_one.GetPixmap(), mask);
+ GtkWidget *pixmap =
+ gtk_image_new_from_pixbuf(the_one.GetPixbuf());
gtk_widget_show(pixmap);
gtk_container_add(GTK_CONTAINER(m_widget), pixmap);
else
{ // subsequent bitmaps
GtkImage *pixmap = GTK_IMAGE(child);
- if (the_one.HasPixbuf())
- gtk_image_set_from_pixbuf(pixmap, the_one.GetPixbuf());
- else
- gtk_image_set_from_pixmap(pixmap, the_one.GetPixmap(), mask);
+ gtk_image_set_from_pixbuf(pixmap, the_one.GetPixbuf());
}
}
return true;
}
-void wxBitmapButton::HasFocus()
+void wxBitmapButton::GTKHasFocus()
{
m_hasFocus = true;
OnSetBitmap();
}
-void wxBitmapButton::NotFocus()
+void wxBitmapButton::GTKNotFocus()
{
m_hasFocus = false;
OnSetBitmap();
}
-void wxBitmapButton::StartSelect()
+void wxBitmapButton::GTKStartSelect()
{
m_isSelected = true;
OnSetBitmap();
}
-void wxBitmapButton::EndSelect()
+void wxBitmapButton::GTKEndSelect()
{
m_isSelected = false;
OnSetBitmap();