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
This commit is contained in:
Robin Dunn
2012-07-14 21:36:38 +00:00
parent e83c4d4012
commit 1746d1ba0f

View File

@@ -183,7 +183,6 @@ public:
long style = wxHSCROLL | wxVSCROLL, long style = wxHSCROLL | wxVSCROLL,
const wxString& name = "scrolledWindow"); const wxString& name = "scrolledWindow");
/** /**
Translates the logical coordinates to the device ones. For example, if Translates the logical coordinates to the device ones. For example, if
a window is scrolled 10 pixels to the bottom, the device coordinates of a window is scrolled 10 pixels to the bottom, the device coordinates of
@@ -199,6 +198,7 @@ public:
@see CalcUnscrolledPosition() @see CalcUnscrolledPosition()
*/ */
void CalcScrolledPosition(int x, int y, int* xx, int* yy) const; 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 Translates the device coordinates to the logical ones. For example, if
@@ -215,6 +215,7 @@ public:
@see CalcScrolledPosition() @see CalcScrolledPosition()
*/ */
void CalcUnscrolledPosition(int x, int y, int* xx, int* yy) const; 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 Creates the window for two-step construction. Derived classes