]> git.saurik.com Git - wxWidgets.git/blobdiff - utils/wxPython/src/controls.i
generated sources update
[wxWidgets.git] / utils / wxPython / src / controls.i
index dbdce2edecb7d2eac435ef503cff9696045a7c9d..5504ddf43bc7328b1476131f974642879928dc9c 100644 (file)
@@ -323,7 +323,8 @@ public:
     %pragma(python) addtomethod = "__init__:wx._StdWindowCallbacks(self)"
 
     bool  IsChecked(int uiIndex);
-    void  Check(int uiIndex, bool bCheck = TRUE);
+    void  Check(int uiIndex, int bCheck = TRUE);
+    void InsertItems(int LCOUNT, wxString* LIST, int pos);
 
     int GetItemHeight();
 };
@@ -375,6 +376,14 @@ public:
     bool CanUndo();
     void GetSelection(long* OUTPUT, long* OUTPUT);
     bool IsEditable();
+    void Undo();
+    void Redo();
+
+    %addmethods {
+        void write(const wxString& text) {
+            self->AppendText(text + '\n');
+        }
+    }
 };
 
 //----------------------------------------------------------------------