"""SetDomain(self, String domain)"""
return _xrc.XmlResource_SetDomain(*args, **kwargs)
+ Domain = property(GetDomain,SetDomain,doc="See `GetDomain` and `SetDomain`")
+ Flags = property(GetFlags,SetFlags,doc="See `GetFlags` and `SetFlags`")
+ Version = property(GetVersion,doc="See `GetVersion`")
_xrc.XmlResource_swigregister(XmlResource)
cvar = _xrc.cvar
UTF8String = cvar.UTF8String
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"""
"""SetNext(self, XmlProperty next)"""
return _xrc.XmlProperty_SetNext(*args, **kwargs)
+ Name = property(GetName,SetName,doc="See `GetName` and `SetName`")
+ Next = property(GetNext,SetNext,doc="See `GetNext` and `SetNext`")
+ Value = property(GetValue,SetValue,doc="See `GetValue` and `SetValue`")
_xrc.XmlProperty_swigregister(XmlProperty)
class XmlNode(object):
"""GetContent(self) -> String"""
return _xrc.XmlNode_GetContent(*args, **kwargs)
+ def IsWhitespaceOnly(*args, **kwargs):
+ """IsWhitespaceOnly(self) -> bool"""
+ return _xrc.XmlNode_IsWhitespaceOnly(*args, **kwargs)
+
+ def GetDepth(*args, **kwargs):
+ """GetDepth(self, XmlNode grandparent=None) -> int"""
+ return _xrc.XmlNode_GetDepth(*args, **kwargs)
+
+ def GetNodeContent(*args, **kwargs):
+ """GetNodeContent(self) -> String"""
+ return _xrc.XmlNode_GetNodeContent(*args, **kwargs)
+
def GetParent(*args, **kwargs):
"""GetParent(self) -> XmlNode"""
return _xrc.XmlNode_GetParent(*args, **kwargs)
"""SetProperties(self, XmlProperty prop)"""
return _xrc.XmlNode_SetProperties(*args, **kwargs)
+ Children = property(GetChildren,SetChildren,doc="See `GetChildren` and `SetChildren`")
+ Content = property(GetContent,SetContent,doc="See `GetContent` and `SetContent`")
+ Name = property(GetName,SetName,doc="See `GetName` and `SetName`")
+ Next = property(GetNext,SetNext,doc="See `GetNext` and `SetNext`")
+ Parent = property(GetParent,SetParent,doc="See `GetParent` and `SetParent`")
+ Properties = property(GetProperties,SetProperties,doc="See `GetProperties` and `SetProperties`")
+ Type = property(GetType,SetType,doc="See `GetType` and `SetType`")
_xrc.XmlNode_swigregister(XmlNode)
def XmlNodeEasy(*args, **kwargs):
val = _xrc.new_XmlNodeEasy(*args, **kwargs)
return val
+XML_NO_INDENTATION = _xrc.XML_NO_INDENTATION
+XMLDOC_NONE = _xrc.XMLDOC_NONE
+XMLDOC_KEEP_WHITESPACE_NODES = _xrc.XMLDOC_KEEP_WHITESPACE_NODES
class XmlDocument(_core.Object):
"""Proxy of C++ XmlDocument class"""
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
__swig_destroy__ = _xrc.delete_XmlDocument
__del__ = lambda self : None;
def Load(*args, **kwargs):
- """Load(self, String filename, String encoding=UTF8String) -> bool"""
+ """Load(self, String filename, String encoding=UTF8String, int flags=XMLDOC_NONE) -> bool"""
return _xrc.XmlDocument_Load(*args, **kwargs)
def LoadFromStream(*args, **kwargs):
- """LoadFromStream(self, InputStream stream, String encoding=UTF8String) -> bool"""
+ """LoadFromStream(self, InputStream stream, String encoding=UTF8String, int flags=XMLDOC_NONE) -> bool"""
return _xrc.XmlDocument_LoadFromStream(*args, **kwargs)
def Save(*args, **kwargs):
- """Save(self, String filename) -> bool"""
+ """Save(self, String filename, int indentstep=1) -> bool"""
return _xrc.XmlDocument_Save(*args, **kwargs)
def SaveToStream(*args, **kwargs):
- """SaveToStream(self, OutputStream stream) -> bool"""
+ """SaveToStream(self, OutputStream stream, int indentstep=1) -> bool"""
return _xrc.XmlDocument_SaveToStream(*args, **kwargs)
def IsOk(*args, **kwargs):
"""SetFileEncoding(self, String encoding)"""
return _xrc.XmlDocument_SetFileEncoding(*args, **kwargs)
+ FileEncoding = property(GetFileEncoding,SetFileEncoding,doc="See `GetFileEncoding` and `SetFileEncoding`")
+ Root = property(GetRoot,SetRoot,doc="See `GetRoot` and `SetRoot`")
+ Version = property(GetVersion,SetVersion,doc="See `GetVersion` and `SetVersion`")
_xrc.XmlDocument_swigregister(XmlDocument)
def XmlDocumentFromStream(*args, **kwargs):
_xrc.XmlResourceHandler_swiginit(self,_xrc.new_XmlResourceHandler(*args, **kwargs))
self._setCallbackInfo(self, XmlResourceHandler)
+ __swig_destroy__ = _xrc.delete_XmlResourceHandler
+ __del__ = lambda self : None;
def _setCallbackInfo(*args, **kwargs):
"""_setCallbackInfo(self, PyObject self, PyObject _class)"""
return _xrc.XmlResourceHandler__setCallbackInfo(*args, **kwargs)
"""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)
"""GetCurFileSystem(self) -> FileSystem"""
return _xrc.XmlResourceHandler_GetCurFileSystem(*args, **kwargs)
+ Class = property(GetClass,doc="See `GetClass`")
+ CurFileSystem = property(GetCurFileSystem,doc="See `GetCurFileSystem`")
+ ID = property(GetID,doc="See `GetID`")
+ Instance = property(GetInstance,doc="See `GetInstance`")
+ Name = property(GetName,doc="See `GetName`")
+ Node = property(GetNode,doc="See `GetNode`")
+ Parent = property(GetParent,doc="See `GetParent`")
+ ParentAsWindow = property(GetParentAsWindow,doc="See `GetParentAsWindow`")
+ Resource = property(GetResource,doc="See `GetResource`")
_xrc.XmlResourceHandler_swigregister(XmlResourceHandler)
#----------------------------------------------------------------------------