How to check if the tree view is currently scrolling
Unsolved
General and Desktop
-
Tree View from QAbstract item model.
A view from a model is odd
any function like isScrolling()
Doesn't make much sense, you can get a signal when the value of the scrollbar changes but I'm not sure it's what you are after. What are you trying to do exactly?
-
@summit
Hi
you get to the scrollbar like this
verticalScrollBar() (inside your class)
so you connect its valuechanged signal to your own function.
https://doc.qt.io/qt-5.15/qscrollbar.html#details
or maybe sliderMoved() depending on what you want.