wxTE_HT_BEYOND // after [the end of line]
};
+
+enum {
+ wxOutOfRangeTextCoord,
+ wxInvalidTextCoord
+};
+
//---------------------------------------------------------------------------
// wxTextAttr: a structure containing the visual attributes of a text
long style = 0,
const wxValidator& validator = wxDefaultValidator,
const wxString& name = wxPyTextCtrlNameStr);
- %name(PreTextCtrl)wxTextCtrl();
+ %RenameCtor(PreTextCtrl, wxTextCtrl());
// Turn it back on again
%typemap(out) wxTextCtrl* { $result = wxPyMake_wxObject($1, $owner); }
DocDeclAStr(
virtual wxTextCtrlHitTestResult, HitTest(const wxPoint& pt,
long* OUTPUT, long* OUTPUT) const,
- "HitTest(Point pt) -> (result, row, col)",
+ "HitTest(Point pt) -> (result, col, row)",
"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.", "");
#ifdef __WXMSW__
// Caret handling (Windows only)
- bool ShowNativeCaret(bool show = True);
+ bool ShowNativeCaret(bool show = true);
bool HideNativeCaret();
#endif