<?php
$window = &new GtkWindow();
$window->set_title("GtkHPaned");
$window->connect_object("destroy", array("gtk",
"main_quit"));
$hpaned = &new GtkHPaned();
$window->add($hpaned);
$hpaned->show();
$button = &new GtkButton("Widget child1");
$hpaned->pack1($button, false, false);
$button->show();
$label = &new GtkLabel();
$label->set_text("Widget child2");
$hpaned->pack2($label, true, true);
$label->show();
$window->show_all();
gtk::main();
?>
|