Re: [pygtk] Glade HIG compliance tips?

2004-11-25 Thread jbowtie
Quoting Kai Weber <[EMAIL PROTECTED]>: > To my knowledge, you have to do it manually in your application: > > sizegroup = gtk.SizeGroup(gtk.SIZE_GROUP_HORIZONTAL) > sizegroup.add_widget(label1) > sizegroup.add_widget(label2) > Well, that's what I've been doing. I was wondering if maybe there was

Re: [pygtk] Glade HIG compliance tips?

2004-11-25 Thread Kai Weber
* [EMAIL PROTECTED] <[EMAIL PROTECTED]>: > However, Control 1 and 2 do not align when the labels are different sizes. > There > does not seem to be a way to create a Gtk.SizeGroup in Glade. To my knowledge, you have to do it manually in your application: sizegroup = gtk.SizeGroup(gtk.SIZE_GROUP

[pygtk] Glade HIG compliance tips?

2004-11-24 Thread jbowtie
I'm trying to HIG-ify my Glade files, and am wondering if there are any tips or hints on how to comply. As a concrete example, I'm currently doing label/control pairs as: VBox; spacing = 6 - HBox; spacing=12 - Label 1 - Control 1 - HBox; spacing=12 - Label 2 - Control 2 - HButtonB