]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/_image.i
log wxChoice events in the same format as wxComboBox ones to make it simpler to compa...
[wxWidgets.git] / 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(),