#pragma hdrstop
#endif
-#if wxUSE_XRC
+#if wxUSE_XRC && wxUSE_BUTTON
#include "wx/xrc/xh_bttn.h"
if (GetBool(wxT("default"), 0))
button->SetDefault();
+
+ if ( GetParamNode("bitmap") )
+ {
+ button->SetBitmap(GetBitmap("bitmap", wxART_BUTTON),
+ GetDirection("bitmapposition"));
+ }
+
SetupWindow(button);
return button;
return IsOfClass(node, wxT("wxButton"));
}
-#endif // wxUSE_XRC
+#endif // wxUSE_XRC && wxUSE_BUTTON