I have calls of gtk_container_class_install_child_property in GTK3, that I want to port to GTK4. How is this following call being done in GTK4 (since there is no more GtkContainer)?
gtk_container_class_install_child_property (container_class,
CHILD_PROP_SOCKET_ID,
g_param_spec_uint ("socketid",
"numeric socket identifier",
"numeric socket identifier",
0, G_MAXUINT, 0,
GTK_NODES_VIEW_PARAM_RW));