QListView hover event?

I want to do something when a certain list view item freezes. I tried to enter the input (QModelIndex) signal, but it does not seem to be emitted when the cursor moves over the elements (even if they are highlighted when the cursor moves over them). Is there any other signal to indicate this? I see only activated (), pressed () and pressed () here http://qt-project.org/doc/qt-4.8/qabstractitemview.html#signals that seem relevant.

+5
source share
1 answer

And, there is the mouseTracking property for QListView, which should be set to true, then the entered () behaves as I expected.

+8
source

All Articles