]> git.saurik.com Git - wxWidgets.git/commitdiff
Add GetHandlers
authorRobin Dunn <robin@alldunn.com>
Sun, 5 Mar 2006 03:59:45 +0000 (03:59 +0000)
committerRobin Dunn <robin@alldunn.com>
Sun, 5 Mar 2006 03:59:45 +0000 (03:59 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37809 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/src/_image.i

index e879cb3b657beb7bf17049c21a72c000f4232781..d3c67d16bb3aa55b37e0a98e2ba4f5a07985dcbe 100644 (file)
@@ -947,6 +947,12 @@ option is not present, the function returns 0.", "
     static void AddHandler( wxImageHandler *handler );
     static void InsertHandler( wxImageHandler *handler );
     static bool RemoveHandler( const wxString& name );
+    %extend {
+        static PyObject* GetHandlers() {
+            wxList& list = wxImage::GetHandlers();
+            return wxPy_ConvertList(&list);
+        }
+    }
     
     DocDeclStr(
         static wxString , GetImageExtWildcard(),