]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/contrib/gizmos/gizmos.i
wx.ProgressDialog.Update now returns two values.
[wxWidgets.git] / wxPython / contrib / gizmos / gizmos.i
index 925d17bff83b7a23c27cfb023d342d1d666c3fe8..825709f528c617d0e91d14071262b238ff5f5d95 100644 (file)
@@ -48,7 +48,7 @@
 MAKE_CONST_WXSTRING2(DynamicSashNameStr,     wxT("dynamicSashWindow"));
 MAKE_CONST_WXSTRING2(EditableListBoxNameStr, wxT("editableListBox"));
 MAKE_CONST_WXSTRING2(TreeListCtrlNameStr,    wxT("treelistctrl"));
-MAKE_CONST_WXSTRING(StaticPictureNameStr);
+MAKE_CONST_WXSTRING(StaticPictureNameStr);                     
     
 MAKE_CONST_WXSTRING_NOSWIG(EmptyString);
 
@@ -582,11 +582,11 @@ public:
     void SetStateImageList(wxImageList *imageList);
     void SetButtonsImageList(wxImageList *imageList);
 
-    %apply SWIGTYPE *DISOWN { wxImageList *imageList };
+    %disownarg( wxImageList *imageList );
     void AssignImageList(wxImageList *imageList);
     void AssignStateImageList(wxImageList *imageList);
     void AssignButtonsImageList(wxImageList *imageList);
-    %clear wxImageList *imageList;
+    %cleardisown( wxImageList *imageList );
 
 
     // adds a column
@@ -768,6 +768,7 @@ public:
                 wxTreeItemId *tii = new wxTreeItemId(array.Item(x));
                 PyObject* item = wxPyConstructObject((void*)tii, wxT("wxTreeItemId"), true);
                 PyList_Append(rval, item);
+                Py_DECREF(item);
             }
             wxPyEndBlockThreads(blocked);
             return rval;
@@ -977,8 +978,8 @@ public:
     %pythonAppend wxStaticPicture         "self._setOORInfo(self)"
     %pythonAppend wxStaticPicture()       ""
 
-    wxStaticPicture( wxWindow* parent, wxWindowID id,
-                     const wxBitmap& label,
+    wxStaticPicture( wxWindow* parent, wxWindowID id=-1,
+                     const wxBitmap& label=wxNullBitmap,
                      const wxPoint& pos = wxDefaultPosition,
                      const wxSize& size = wxDefaultSize,
                      long style = 0,
@@ -986,8 +987,8 @@ public:
 
     %RenameCtor(PreStaticPicture, wxStaticPicture());
 
-    bool Create( wxWindow* parent, wxWindowID id,
-                 const wxBitmap& label,
+    bool Create( wxWindow* parent, wxWindowID id=-1,
+                 const wxBitmap& label=wxNullBitmap,
                  const wxPoint& pos = wxDefaultPosition,
                  const wxSize& size = wxDefaultSize,
                  long style = 0,