Is there a way to put GTK+ widgets in a stack? I.e. put a button over label so that button covers a part of label.
+2
A:
You'd have to use a Canvas control to explicitly set the positions of the controls - GTK+ works hard to not do what you're describing :)
Paul Betts
2009-03-03 00:21:59
+1
A:
Packing inside a GtkTable appears to allow this, though I didn't test very far - just juggled it in glade a little.
I'm curious what you're looking to use this to achieve.
Kim Reece
2009-03-03 00:28:03
+2
A:
You can use GtkFixed as the layout. This will allow you to control exact locations of the child widgets, and they can overlap.
bratsche
2010-06-07 14:13:54