On 11 April 2012 05:37, Douglas Scott <[email protected]> wrote: > > I do not understand where I can intercept the setting of the object's > position on the screen. I thought I could redefined > QGraphicsItem::itemChange() and watch for ItemPositionChange and HasChanged > -- but I never get any of these notifications.
That's the proper way. But note that you need QGraphicsItem::ItemSendsGeometryChanges set for it to work. -- Giuseppe D'Angelo _______________________________________________ Interest mailing list [email protected] http://lists.qt-project.org/mailman/listinfo/interest
