#include "wx/scrolwin.h"
#include "wx/panel.h"
#include "wx/timer.h"
+#include "wx/sizer.h"
#ifdef __WXMSW__
#include <windows.h> // for DLGC_WANTARROWS
*y = m_yScrollPosition;
}
-void wxScrollHelper::CalcScrolledPosition(int x, int y, int *xx, int *yy) const
+void wxScrollHelper::DoCalcScrolledPosition(int x, int y, int *xx, int *yy) const
{
if ( xx )
*xx = x - m_xScrollPosition * m_xScrollPixelsPerLine;
*yy = y - m_yScrollPosition * m_yScrollPixelsPerLine;
}
-void wxScrollHelper::CalcUnscrolledPosition(int x, int y, int *xx, int *yy) const
+void wxScrollHelper::DoCalcUnscrolledPosition(int x, int y, int *xx, int *yy) const
{
if ( xx )
*xx = x + m_xScrollPosition * m_xScrollPixelsPerLine;
GetSizer()->SetDimension(x, y, w, h);
return TRUE;
}
- else
- return wxPanel::Layout(); // fall back to default for LayoutConstraints
+
+ // fall back to default for LayoutConstraints
+ return wxPanel::Layout();
}
void wxGenericScrolledWindow::OnPaint(wxPaintEvent& event)