]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/grid.i
reSWIGged
[wxWidgets.git] / wxPython / src / grid.i
index 5b466633561705fb3c6fae0b9c604ae7e87ec077..6c07dec0200b9f7b89cb6c78b13f17b672dea16b 100644 (file)
@@ -1592,6 +1592,8 @@ class wxGrid : public wxScrolledWindow
 {
 public:
     %pythonAppend wxGrid "self._setOORInfo(self)"
+    %pythonAppend wxGrid() ""
+    
     %typemap(out) wxGrid*;    // turn off this typemap
 
     wxGrid( wxWindow *parent,
@@ -2010,6 +2012,14 @@ public:
     wxWindow* GetGridColLabelWindow();
     wxWindow* GetGridCornerLabelWindow();
 
+    // Allow adjustment of scroll increment. The default is (15, 15).
+    void SetScrollLineX(int x);
+    void SetScrollLineY(int y);
+    int GetScrollLineX() const;
+    int GetScrollLineY() const;
+
+    int GetScrollX(int x) const;
+    int GetScrollY(int y) const;
 
     static wxVisualAttributes
     GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);