add convenient GetViewStart() and Scroll() overloads taking wxPoint instead of 2 int[ pointer]s

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@57527 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2008-12-24 15:11:00 +00:00
parent 9675a49d4e
commit 0b0f6f87d5
6 changed files with 44 additions and 36 deletions

View File

@@ -27,7 +27,6 @@ public:
int xPos = 0, int yPos = 0,
bool noRefresh = false);
virtual void AdjustScrollbars();
virtual void Scroll(int x, int y);
protected:
// this does (each) half of AdjustScrollbars() work
@@ -60,10 +59,12 @@ protected:
}
// and this does the same for Scroll()
void DoScroll(int orient,
int pos,
int pixelsPerLine,
int *posOld);
void DoScrollOneDir(int orient,
int pos,
int pixelsPerLine,
int *posOld);
virtual void DoScroll(int x, int y);
private:
DECLARE_NO_COPY_CLASS(wxScrollHelperNative)