Proof of concept. I can pack two vte widgets in and they are totally usable. woo!

This commit is contained in:
Chris Jones 2006-11-08 18:09:44 -08:00
parent fdc0d5fe2f
commit 5906085998
1 changed files with 6 additions and 0 deletions

View File

@ -89,13 +89,19 @@ if __name__ == '__main__':
visible = not visible
window = gtk.Window()
terminal = maketerm()
terminal2 = maketerm()
scrollbar = gtk.VScrollbar()
scrollbar.set_adjustment(terminal.get_adjustment())
scrollbar2 = gtk.VScrollbar()
scrollbar2.set_adjustment(terminal.get_adjustment())
box = gtk.HBox()
box.pack_start(terminal)
box.pack_start(scrollbar)
box.pack_start(terminal2)
box.pack_start(scrollbar2)
window.add(box)
window.show_all()