How to detect when the user has scrolled to the bottom in a QScrollArea / QListwidget etc?
Any help is appreciated, thanks!
How to detect when the user has scrolled to the bottom in a QScrollArea / QListwidget etc?
Any help is appreciated, thanks!
Get the vertical slider from the scroll area and listen for one of its signals.
thanks
could you tell me the name of that please?
I was guessing verticalScrollbar but didn't see any signals available for that
You've got to look at the superclasses: http://doc.qt.nokia.com/4.6-snapshot...actslider.html
See sliderMoved() and valueChanged(). Compare the value you get from one of those to maximum().