Prev: Updated Eclipse CDT MSYS/MinGW Guide for wxWidgets - Xerces-Cadded
Next: Nnative widgets overlapping custom control with gradient background in wxPython
From: Vadim Zeitlin on 3 Jul 2010 07:50 On 2010-05-14, Razvan Cojocaru <razvanco(a)gmx.net> wrote: > Hello, > > I'd like to scroll to the bottom of a HTML page displayed in a > wxHtmlWindow-derived UI component. My quick-and-dirty solution was this: > > GetVirtualSize(&x, &y); > GetScrollPixelsPerUnit(&xUnit, &yUnit); > Scroll(0, y / yUnit); > > It does work in all my tests, but doesn't quite feel right. I was hoping > for better, more "official" way of scrolling to the bottom of a > wxHtmlWindow. Is there one? I don't think so. The above looks correct to me and while I guess it could be a good idea to add a small helper function to do this to wxScrolledWindow itself it wouldn't really do anything different anyhow. Regards, VZ -- TT-Solutions: wxWidgets consultancy and technical support http://www.tt-solutions.com/ |