1 ///////////////////////////////////////////////////////////////////////////// 
   2 // Name:        src/xrc/xh_animatctrl.cpp 
   3 // Purpose:     XML resource handler for wxAnimationCtrl 
   4 // Author:      Francesco Montorsi 
   7 // Copyright:   (c) 2006 Francesco Montorsi 
   8 // Licence:     wxWindows licence 
   9 ///////////////////////////////////////////////////////////////////////////// 
  11 // For compilers that support precompilation, includes "wx.h". 
  12 #include "wx/wxprec.h" 
  18 #if wxUSE_XRC && wxUSE_ANIMATIONCTRL 
  20 #include "wx/xrc/xh_animatctrl.h" 
  21 #include "wx/animate.h" 
  23 IMPLEMENT_DYNAMIC_CLASS(wxAnimationCtrlXmlHandler
, wxXmlResourceHandler
) 
  25 wxAnimationCtrlXmlHandler::wxAnimationCtrlXmlHandler() : wxXmlResourceHandler() 
  27     XRC_ADD_STYLE(wxAC_NO_AUTORESIZE
); 
  28     XRC_ADD_STYLE(wxAC_DEFAULT_STYLE
); 
  32 wxObject 
*wxAnimationCtrlXmlHandler::DoCreateResource() 
  34     XRC_MAKE_INSTANCE(ctrl
, wxAnimationCtrl
) 
  36     ctrl
->Create(m_parentAsWindow
, 
  38                   GetAnimation(wxT("animation")), 
  39                   GetPosition(), GetSize(), 
  40                   GetStyle(_T("style"), wxAC_DEFAULT_STYLE
), 
  43     // if no inactive-bitmap has been provided, GetBitmap() will return wxNullBitmap 
  44     // which just tells wxAnimationCtrl to use the default for inactive status 
  45     ctrl
->SetInactiveBitmap(GetBitmap(wxT("inactive-bitmap"))); 
  52 bool wxAnimationCtrlXmlHandler::CanHandle(wxXmlNode 
*node
) 
  54     return IsOfClass(node
, wxT("wxAnimationCtrl")); 
  57 #endif // wxUSE_XRC && wxUSE_ANIMATIONCTRL