Hi.
I want to move multiple QGraphicsItems, but with some boundary conditions.

1.) I need to preserve the z-values of all items.
2.) I need to preserve the boundary of all items.
-> I can't use QGraphicsItemGroup, because as a shape of the group item I get a box around all items, but I need something like the union of all items shapes. Secondly I get a z-value of the group.
So I tried to use "selectable", and then selected all items to move together. That works quite nice, the z-values of the items are preserved and clicking on translucent areas of the items don't select the item. But every selected item gets a black border... I'm also not sure how to implement, that all items of one group are selected when I click on one item of the group.

I forgot, I use Qt4.2...