X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/882678ebb43804d34d20ba8781647fe136ae67d9..efb091829601cf07df6c4316a3f6f705aaa81587:/interface/wx/caret.h diff --git a/interface/wx/caret.h b/interface/wx/caret.h index b5d870635e..205543b7e8 100644 --- a/interface/wx/caret.h +++ b/interface/wx/caret.h @@ -60,6 +60,13 @@ public: //@{ /** Get the caret position (in pixels). + + @beginWxPerlOnly + In wxPerl there are two methods instead of a single overloaded + method: + - GetPosition(): returns a Wx::Point object. + - GetPositionXY(): returns a 2-element list (x, y). + @endWxPerlOnly */ void GetPosition(int* x, int* y) const; wxPoint GetPosition() const; @@ -68,6 +75,13 @@ public: //@{ /** Get the caret size. + + @beginWxPerlOnly + In wxPerl there are two methods instead of a single overloaded + method: + - GetSize(): returns a Wx::Size object. + - GetSizeWH(): returns a 2-element list (width, height). + @endWxPerlOnly */ void GetSize(int* width, int* height) const; wxSize GetSize() const;