I have now tried for hours to make sense of how QGraphicsItem behaves with respect to children. I create a new QGraphicsItem B (actually an own subclass of it), and then add it to another QGraphicsItem A as child by invoking the setParentItem method on B. Immediately after that A has B as child. I have verified with some debug code that iterates over the children of A. Then A is added to a List of As in a Manager. Some time later in the program, in a QWidget the lists iterator is obtained from the manager. I then iterate over the list of As and check the children for each of them and all of them are gone. I have verified in the debugger that the Manager is really the same instance and the list is also the same instance. Somehow this really puzzles me, who in the Qt FWK decides for me that my A objects do no longer need their children?

I'm a newby to Qt and C++, also with extensive development experience from java to objective-c so I have some hope it is a speciality of Qt I'm not aware of, not entirely my own stupidity...

Best Regards,

André

link|improve this question

0% accept rate
2  
Please post the relevant part of the code where you build that B and add it to A. It could be an object lifetime issue. – Mat Nov 20 '11 at 12:12
It was an object lifetime issue. I stored a reference to a local object and tried to access it in another scope. – André Apr 14 at 10:36
Post your solution/description of the problem as an answer, so it can help others in the future. (And have a look at how does accepting an answer work.) – Mat Apr 14 at 10:38
feedback

1 Answer

FYI: QGraphicsItemGroup specially designed for grouping.

// Group all selected items together

QGraphicsItemGroup *group = scene->createItemGroup(scene->selecteditems());

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.