set_title('GtkBox test'); $w->connect_simple('destroy', array('gtk', 'main_quit')); $lbl = new GtkLabel('Your name:'); $scrwnd = new GtkScrolledWindow(); $txt = new GtkTextView(); $scrwnd->add($txt); $btn = new GtkButton('Send'); $vbox = new GtkVBox(); $w->add($vbox); $vbox->pack_start($lbl, false); $vbox->pack_start($scrwnd, true, true); $vbox->pack_start($btn, false); $w->show_all(); Gtk::main(); ?>