BitmapString = cvar.BitmapString
IconString = cvar.IconString
FontString = cvar.FontString
+AnimationString = cvar.AnimationString
def EmptyXmlResource(*args, **kwargs):
"""EmptyXmlResource(int flags=XRC_USE_LOCALE, String domain=wxEmptyString) -> XmlResource"""
"""GetFont(self, String param=FontString) -> Font"""
return _xrc.XmlResourceHandler_GetFont(*args, **kwargs)
+ def GetAnimation(*args, **kwargs):
+ """GetAnimation(self, String param=AnimationString) -> wxAnimation"""
+ return _xrc.XmlResourceHandler_GetAnimation(*args, **kwargs)
+
def SetupWindow(*args, **kwargs):
"""SetupWindow(self, Window wnd)"""
return _xrc.XmlResourceHandler_SetupWindow(*args, **kwargs)
def _my_import(name):
- mod = __import__(name)
+ try:
+ mod = __import__(name)
+ except ImportError:
+ import traceback
+ print traceback.format_exc()
+ raise
components = name.split('.')
for comp in components[1:]:
mod = getattr(mod, comp)