mirror of
https://github.com/php/doc-gtk.git
synced 2026-03-24 09:02:08 +01:00
15 lines
340 B
Plaintext
15 lines
340 B
Plaintext
<?php
|
|
if (!class_exists('gtk')) {
|
|
die("Please load the php-gtk2 module in your php.ini\r\n");
|
|
}
|
|
|
|
$wnd = new GtkWindow();
|
|
$wnd->set_title('Hello world');
|
|
$wnd->connect_simple('destroy', array('gtk', 'main_quit'));
|
|
|
|
$lblHello = new GtkLabel("Just wanted to say\r\n'Hello world!'");
|
|
$wnd->add($lblHello);
|
|
|
|
$wnd->show_all();
|
|
Gtk::main();
|
|
?> |