-void wxButton::SetBackgroundColour( const wxColour &colour )
-{
- wxCHECK_RET( m_widget != NULL, "invalid button" );
-
- wxControl::SetBackgroundColour( colour );
-
- if (!m_backgroundColour.Ok()) return;
-
- gtk_widget_set_style( m_widget, m_widgetStyle );
-}
-
-void wxButton::SetForegroundColour( const wxColour &colour )
-{
- wxCHECK_RET( m_widget != NULL, "invalid button" );
-
- wxControl::SetForegroundColour( colour );
-
- if (!m_foregroundColour.Ok()) return;
-
- gtk_widget_set_style( GTK_BUTTON(m_widget)->child, m_widgetStyle );
-}