GNOME Bugzilla – Bug 61652
No way to get a child_widget position in the GtkLayout widget.
Last modified: 2004-12-22 21:47:04 UTC
gtk_layout_put (GtkLayout *layout,GtkWidget *child_widget,gint x,gint y) adds child_widget to layout, at position (x,y), but there is no function which gets position (x,y) of child_widget in the layout.
gtk_container_child_get (layout, child, "x", &x, "y", &y, NULL); Is one way. Since this isn't exactly a common operation, I think this is enough.
*** Bug 82281 has been marked as a duplicate of this bug. ***