I have two items of type QGraphicsRectItem. One over the other.
The first one is a custom class called Wall. Inside the wall there are windows and doors. In fact, i have a list of Doors and Windows inside this custom Wall class.
The Doors are Items too, and are drawn inside the wall.
When i move the mouse over the door, the hover function of the wall is emited, but the hover of the door is not. Both of them correctly copied one from each other as virtual void protected.
Why is that happening? How can i make the door and window items realize about the hover?.
I have tried with a custom
QGraphicsItem
instead of a customQGraphicsRectItem
. It seems the hover event handler is successfully called for bothWall
andDoor
. This is happening when explicitly settingQGraphicsItem
withsetAcceptHoverEvents(true)
. This is not tested with customQGraphicsRectItem
.