Files
doc-gtk/examples/tutorials/packing/boxes.phpw
2005-10-19 19:50:06 +00:00

21 lines
440 B
Plaintext

<?php
$w = new GtkWindow();
$w->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();
?>