Re: GTK+- widget packing question

2006-04-26 Thread BobS0327
The posts have been extremely helpful. I now have a good understanding of packing. THANX ALL!!! -- View this message in context: http://www.nabble.com/GTK%2B--widget-packing-question-t1508706.html#a4107268 Sent from the Gtk+ - Apps Dev forum at Nabble.com.

Re: GTK+- widget packing question

2006-04-26 Thread Tristan Van Berkom
BobS0327 wrote: I'm using gtk_vbox_new and gtk_hbox_new to pack widgets on a window. My problem is that the packing is too uniform. Every widget is assigned the same uniform box size. In other words, my first horizontal wdget would be a text box, the next widget would be a listview and the third

Re: GTK+- widget packing question

2006-04-26 Thread James Allen
There are various options you have, when you create the boxes and when you pack widgets into them, which allow you to control how the widgets are packed, whether they are stretched etc. These are passed as TRUE or FALSE arguments to the functions. The GTK tutorial has a pretty good section desc

GTK+- widget packing question

2006-04-25 Thread BobS0327
I'm using gtk_vbox_new and gtk_hbox_new to pack widgets on a window. My problem is that the packing is too uniform. Every widget is assigned the same uniform box size. In other words, my first horizontal wdget would be a text box, the next widget would be a listview and the third horizontal widge