Googling suggests that it should.

But the dragdroprobot example implementation (on the parent Robot object) suggests not:

QRectF Robot::boundingRect() const
{
    return QRectF();
}

Which is correct, or is there something more subtle going on?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

Child items are painted directly by the scene not by the parent, and according to the documentation about boundingRect():

QGraphicsView uses this to determine whether the item requires redrawing.

So, if there is no drawing to do in the parent, there is no need to return a non-null bounding rectangle, even if the parent has child items. And if there is some drawing in the parent, it only needs to contain its own bounding rectangle.

link|improve this answer
Okay, and if the parent has nothing to draw, by extension I can return nothing: but what if I want to allow all the children to be moved together, by setting the movable flag on the parent -- if it has no bounding rect, then mouse events never hit it? – Autopulated Sep 16 '11 at 21:51
2  
Then, for example, in the parent you return a shape or a bounding rect containing the children, you add the flag QGraphicsItem::ItemHasNoContents and you stack the children behind the parent so the parent gets the mouse event before the children. – alexisdm Sep 17 '11 at 1:47
feedback

Under normal usage the children of your QGraphicsItem are contained within its bounding rect, but depending on your implementation I don't believe that this is required.

If you need the bounding rect of an item's children you can simply use

QGraphicsItem::childrenBoundingRect();
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.