Bug free programming with Qt:
-
What do you mean with "memory management things" ? The shared classes ?
-
In the first post, i wrote: "You create an orphan widget, you attach it later to a parent widget. The parent takes ownership and you don’t need to worry anymore about the child life cycle"
I like this idea : you transfer the management of an object to an object owner. And you don't have to manage it yourself .
Do you know if this is a concept, a design pattern or anything which has a name?
Do you know if this coding way is described somewhere? -
So simple? Well, I feel a bit ridiculous...
-
OK, I guess a widget has a container of children widgets which are destroyed by the parent destructor.
However, it must be a little bit more tricky because the ownership can be transfered to another parent widget.