I have a gtk widget (from gtk_dialog_new()) which was created in a different function and bunch of widgets added to it. Now I want to reparent all the children of this widget to another container.
Something like:
get_widget_get_all_childrent(list);
//loop over list and reparent all children
Actually I found the answer after a bit of googling.
First I need to get a list of children: