Hello guys,

I need to do custom processing for and item every time when mouse enters the visible region of an item. Also I need to do some processing when the item is left by the mouse. I found QAbstractItemView::entered signal, which looks exactly what I want. However I could not find corresponding QAbstractItemView::left signal.

I've done some searching and found people suggested to remember current item and do the "leave event" processing for current item each time when the mouse enters visible region of the other item. This unfortunately does not work for me, because if mouse leaves an item it does not always mean that it enters the other item. It is possible for me that there is no current item at all.

How can I do this ? Please help.