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?
|
Googling suggests that it should. But the dragdroprobot example implementation (on the parent Robot object) suggests not:
Which is correct, or is there something more subtle going on?
| |||
|
feedback
|
|
Child items are painted directly by the scene not by the parent, and according to the documentation about
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. | |||||||
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
| |||
|
feedback
|