Hi,

I'm currently drawing some graphics items (actually QGraphicsPixmapItem) to a scene being shown by a view. I set each item to be movable, as follows

this->setFlag( QGraphicsItem::ItemIsMovable, true );

And it works fine. I'd like to be able to know when they are actually being moved, like call a function. It seems they they do not have signals/slots, nor can I get events to work. What is the best way to accomplish this?

Thanks!