@maxsivkov
Scenario is to have several elements (images with attached mouseareas (to change image source when mouse is inside the image)
and also show hints (tooltips) for listview's item.
So its better no to do it when the ListView scrolls and only when user hovers mouse over that particular Item
To show tooltip my idea was to sit on a onPositionChanged event and restart timer, stop it in onExited event.
I think better to use onEntered and onExited. Using onPositionChanged will continuously restart it as mouse moves. Also hide it after a particular timeout instead of only in onExited.