// Purpose: XRC resource for bitmap buttons
// Author: Brian Gavin
// Created: 2000/09/09
-// RCS-ID: $Id$
// Copyright: (c) 2000 Brian Gavin
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
button->SetBitmapFocus(GetBitmap(wxT("focus")));
if (GetParamNode(wxT("disabled")))
button->SetBitmapDisabled(GetBitmap(wxT("disabled")));
+ if (GetParamNode(wxT("hover")))
+ button->SetBitmapHover(GetBitmap(wxT("hover")));
return button;
}