Discussion:
Scrolling to the bottom of a wxHtmlWindow
(too old to reply)
Razvan Cojocaru
2010-05-14 09:38:48 UTC
Permalink
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?


Thanks,
--
Razvan Cojocaru
KeyID: 0x04CA34DE
Vadim Zeitlin
2010-07-03 11:50:14 UTC
Permalink
Post by Razvan Cojocaru
Hello,
I'd like to scroll to the bottom of a HTML page displayed in a
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/
Loading...