]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/_xmlhandler.i
SetCanFocus
[wxWidgets.git] / wxPython / src / _xmlhandler.i
index 9ae1038f410671535eb207b5e46ccb1051d8ad33..bf0a5d970b4e1e2248dba4dc182669da1697dae3 100644 (file)
@@ -24,7 +24,7 @@
 class wxPyXmlResourceHandler : public wxXmlResourceHandler {
 public:
     wxPyXmlResourceHandler() : wxXmlResourceHandler() {}
-    //~wxPyXmlResourceHandler();
+    ~wxPyXmlResourceHandler() {}
 
     // Base class virtuals
 
@@ -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); }
 
@@ -140,7 +143,7 @@ IMP_PYCALLBACK_BOOL_NODE_pure(wxPyXmlResourceHandler, wxXmlResourceHandler, CanH
 %rename(XmlResourceHandler) wxPyXmlResourceHandler;
 class wxPyXmlResourceHandler : public wxObject {
 public:
-    %pythonAppend wxPyXmlResourceHandler "self._setCallbackInfo(self, XmlResourceHandler)"
+    %pythonAppend wxPyXmlResourceHandler setCallbackInfo(XmlResourceHandler)
     wxPyXmlResourceHandler() : wxXmlResourceHandler() {}
     ~wxPyXmlResourceHandler();
 
@@ -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);