X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/14cb220a2942ca5ffdf5a4fb32c6c3464154f78a..58211774c81794d1408967203294af1206b29394:/wxPython/src/_xmlhandler.i?ds=sidebyside diff --git a/wxPython/src/_xmlhandler.i b/wxPython/src/_xmlhandler.i index 5269a40d45..984508ed0d 100644 --- a/wxPython/src/_xmlhandler.i +++ b/wxPython/src/_xmlhandler.i @@ -105,6 +105,9 @@ public: wxSize size = wxDefaultSize) { return wxXmlResourceHandler::GetIcon(param, defaultArtClient, size); } + wxAnimation GetAnimation(const wxString& param = wxT("animation")) + { return wxXmlResourceHandler::GetAnimation(param); } + wxFont GetFont(const wxString& param = wxT("font")) { return wxXmlResourceHandler::GetFont(param); } @@ -243,6 +246,9 @@ public: // Gets a font. wxFont GetFont(const wxString& param = wxPyFontString); + // Gets an animation. + wxAnimation GetAnimation(const wxString& param = wxPyAnimationString); + // Sets common window options. void SetupWindow(wxWindow *wnd); @@ -258,6 +264,16 @@ public: // helper wxFileSystem& GetCurFileSystem(); + + %property(Class, GetClass, doc="See `GetClass`"); + %property(CurFileSystem, GetCurFileSystem, doc="See `GetCurFileSystem`"); + %property(ID, GetID, doc="See `GetID`"); + %property(Instance, GetInstance, doc="See `GetInstance`"); + %property(Name, GetName, doc="See `GetName`"); + %property(Node, GetNode, doc="See `GetNode`"); + %property(Parent, GetParent, doc="See `GetParent`"); + %property(ParentAsWindow, GetParentAsWindow, doc="See `GetParentAsWindow`"); + %property(Resource, GetResource, doc="See `GetResource`"); };