]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/_textctrl.i
wxListCtrl --> wx.ListCtrl
[wxWidgets.git] / wxPython / src / _textctrl.i
index a12f5b6c6edcb51d1d02c3dddcb358f0011ddaf4..e54457e723087e78df3d7c9ab0d688608640ad76 100644 (file)
@@ -165,6 +165,7 @@ class wxTextCtrl : public wxControl
 public:
     %pythonAppend wxTextCtrl         "self._setOORInfo(self)"
     %pythonAppend wxTextCtrl()       ""
+    %typemap(out) wxTextCtrl*;    // turn off this typemap
 
     wxTextCtrl(wxWindow* parent, wxWindowID id=-1,
                const wxString& value = wxPyEmptyString,
@@ -175,6 +176,9 @@ public:
                const wxString& name = wxPyTextCtrlNameStr);
     %name(PreTextCtrl)wxTextCtrl();
 
+    // Turn it back on again
+    %typemap(out) wxTextCtrl* { $result = wxPyMake_wxObject($1, $owner); }
+
     bool Create(wxWindow* parent, wxWindowID id=-1,
                const wxString& value = wxPyEmptyString,
                const wxPoint& pos = wxDefaultPosition,
@@ -258,10 +262,21 @@ public:
         virtual wxTextCtrlHitTestResult, HitTest(const wxPoint& pt,
                                                  long* OUTPUT, long* OUTPUT) const,
         "HitTest(Point pt) -> (result, row, col)",
-        "Find the character at position given in pixels. NB: pt is in device
-coords but is not adjusted for the client area origin nor scrolling", "");
+        "Find the row, col coresponding to the character at the point given in
+pixels. NB: pt is in device coords but is not adjusted for the client
+area origin nor scrolling.", "");
+
 
+    DocDeclAStrName(
+        virtual wxTextCtrlHitTestResult , HitTest(const wxPoint& pt, long *OUTPUT) const,
+        "HitTestPos(Point pt) -> (result, position)",
+        "Find the character position in the text coresponding to the point
+given in pixels. NB: pt is in device coords but is not adjusted for
+the client area origin nor scrolling. ", "",
+        HitTestPos);
 
+    
+    
     // Clipboard operations
     virtual void Copy();
     virtual void Cut();