hi,
I guess this is incorrect behavior of ItemGroup. Let me explain it.
Consider a group with arbitrary number of items. Now whenever any item within group is selected and dragged using mouse, the group remains stationary through out!
I tried to investigate this issue (at least for me this is an issue) and found out that the MouseGrabber item was the child item of group which was mousePressed but the mouse events were being handled by the group (as it calls setHandlesChildEvents(true) )

To work it around now i am using groupChildItem->setAcceptedMouseButtons(0) for each child of group.

I just wanted to know your opinions on this. Is this bug ?