Re: [pygtk] Terminal Resizing

2007-12-01 Thread Gian Mario Tagliaretti
2007/11/30, Seltzer [EMAIL PROTECTED]: i need the to be able to shrink as much as i need them to. If you use Paned widget set the child property shrink to True, that way the children can be made smaller then they actual requisition. cheers -- Gian Mario Tagliaretti

Re: [pygtk] Terminal Resizing

2007-11-29 Thread Seltzer
hi I tried the solution given, which actually helped another problem i was having... but i'm still having problems getting the terminal windows to resize smaller than the default size they open up as. I cant seem to get them to get any smaller than they want to be. i have tried to set size

Re: [pygtk] Terminal Resizing

2007-11-28 Thread Shalom Kramer
If I understand correctly you want to make the VTE's change their size acording to the users preferences, so that one terminal will expand and the other one shrink. I have done just that using the gtk.VPaned and gtk.HPaned classes. They can hold two widgest each so I just packed gtk.Paned inside

[pygtk] Terminal Resizing

2007-11-27 Thread Seltzer
Hello, i have three vte widgets arranged in a vertical box. each vte widget is inside of an hbox to group it with its scrollbar, and a frame to label it, like so. f_sos_out = gtk.Frame(stream control) term_sos_out = vte.Terminal() hb_sos_out = gtk.HBox() sb_sos_out