mirror of
https://github.com/php/php-gtk-src.git
synced 2026-03-24 09:12:12 +01:00
24 lines
474 B
PHP
24 lines
474 B
PHP
<?php
|
|
/* $Id$ */
|
|
|
|
if (!extension_loaded('gtk')) {
|
|
dl( 'php_gtk.' . PHP_SHLIB_SUFFIX);
|
|
}
|
|
|
|
$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();
|
|
?>
|