Hi,
Do you mean for a QGraphicsItem ?
If yes, you can call
void QGraphicsItem::setEnabled ( bool enabled )
And to activate the event later, as the item doesn't receive events any more, you have to pass by the Scene, because you can't receive directly event on the item.
If your problem is not using GraphicsView Frameworks, but other part of qt, it's almost the same process :
You can call :
QWidget::setEnabled(false) //like Massimo said
In order to reactive the widget, just detect press event inside an object in your application to be able to call `setEnable(true) on your widget !
Hope it helps !
`