// Name: src/gtk1/bmpbuttn.cpp
// Purpose:
// Author: Robert Roebling
-// Id: $Id$
// Copyright: (c) 1998 Robert Roebling
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
if (!button->m_hasVMT) return;
if (g_blockEventsOnDrag) return;
- wxCommandEvent event(wxEVT_COMMAND_BUTTON_CLICKED, button->GetId());
+ wxCommandEvent event(wxEVT_BUTTON, button->GetId());
event.SetEventObject(button);
button->HandleWindowEvent(event);
}
// wxBitmapButton
//-----------------------------------------------------------------------------
-IMPLEMENT_DYNAMIC_CLASS(wxBitmapButton,wxButton)
-
void wxBitmapButton::Init()
{
m_hasFocus =
return false;
}
- m_bmpNormal = bitmap;
+ m_bitmaps[State_Normal] = bitmap;
m_widget = gtk_button_new();
if (style & wxNO_BORDER)
gtk_button_set_relief( GTK_BUTTON(m_widget), GTK_RELIEF_NONE );
- if (m_bmpNormal.Ok())
+ if (bitmap.IsOk())
{
OnSetBitmap();
}
wxBitmap the_one;
if (!IsThisEnabled())
- the_one = m_bmpDisabled;
- else if (m_isSelected)
- the_one = m_bmpSelected;
- else if (m_hasFocus)
- the_one = m_bmpFocus;
- else
- the_one = m_bmpNormal;
-
- if (!the_one.Ok()) the_one = m_bmpNormal;
- if (!the_one.Ok()) return;
+ the_one = GetBitmapDisabled();
+ else if (m_isSelected)
+ the_one = GetBitmapPressed();
+ else if (HasFocus())
+ the_one = GetBitmapFocus();
+
+ if (!the_one.IsOk())
+ {
+ the_one = GetBitmapLabel();
+ if (!the_one.IsOk())
+ return;
+ }
GdkBitmap *mask = NULL;
if (the_one.GetMask()) mask = the_one.GetMask()->GetBitmap();