From: Robin Dunn Date: Sat, 14 Jul 2012 21:36:38 +0000 (+0000) Subject: Add missing Calc[Un]ScrolledPosition overloads taking a wxPoint. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/1746d1ba0f43bcfaa4a17e6bf3da178fe893785c Add missing Calc[Un]ScrolledPosition overloads taking a wxPoint. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@72086 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/interface/wx/scrolwin.h b/interface/wx/scrolwin.h index 8a9b909309..2ddfe65021 100644 --- a/interface/wx/scrolwin.h +++ b/interface/wx/scrolwin.h @@ -183,7 +183,6 @@ public: long style = wxHSCROLL | wxVSCROLL, const wxString& name = "scrolledWindow"); - /** Translates the logical coordinates to the device ones. For example, if a window is scrolled 10 pixels to the bottom, the device coordinates of @@ -199,6 +198,7 @@ public: @see CalcUnscrolledPosition() */ void CalcScrolledPosition(int x, int y, int* xx, int* yy) const; + wxPoint CalcScrolledPosition(const wxPoint& pt) const; /** Translates the device coordinates to the logical ones. For example, if @@ -215,6 +215,7 @@ public: @see CalcScrolledPosition() */ void CalcUnscrolledPosition(int x, int y, int* xx, int* yy) const; + wxPoint CalcUnscrolledPosition(const wxPoint& pt) const; /** Creates the window for two-step construction. Derived classes