mirror of
https://github.com/php/php-gtk-src.git
synced 2026-03-26 18:22:09 +01:00
22 lines
490 B
PHP
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();
|
|
?>
|