Login  Register

Re: Question about RS_EntityContainer

Posted by dxli on Dec 29, 2024; 8:09pm
URL: https://forum.librecad.org/Question-about-RS-EntityContainer-tp5725899p5725902.html

Our containers can have two roles, and it might be a good thing to separate the features to separate classes:

1, the container is the owner of containing entities;
2, the container is only a collection, but not owning the entities.

When reparenting, reparenting the contains meaning overriding the case 1, and enforcing for case 2.


sand1024 wrote
well, that's a good question indeed...

The only thing I can imagine for such implementation - is something as following:

1) container is created
2) entities are added into it (and they may be either without parent or have old parent)
3) everything is reparented to the new parent.

Yet even with such scenario - it's more natural to force children be reparented to the container itself, not to the parent of the container...

The current implementation flatten the hierarchy, and I can't say right now what is specific reason for this.
I think for proper addressing your question, it is necessary to revise all methods that deals with hierarchical child->parent logic.

I suspect that some subtle side effects may occur there if this implementation is changed, so this issue definitely requires deeper investigations.