Files
php-gtk-src/test/scrollpane.php
2001-12-07 00:08:51 +00:00

22 lines
490 B
PHP

<?php
if (!extension_loaded('gtk'))
dl( 'php_gtk.' . (strstr( PHP_OS, 'WIN') ? 'dll' : 'so'));
$w = &new GtkWindow;
$w->set_title('Testing GtkScrollPane');
$w->set_border_width(10);
$w->connect('destroy', create_function('','Gtk::main_quit();'));
$x = &new GtkAdjustment(1.0, 0.0, 10.0, 0.1, 0.1, 2.0);
$y = &new GtkAdjustment(1.0, 0.0, 10.0, 0.1, 0.1, 2.0);
$sp = &new GtkScrollPane($x, $y, 0);
$w->add($sp);
$w->show_all();
Gtk::main();
?>