mirror of
https://github.com/php/doc-gtk.git
synced 2026-03-24 17:12:18 +01:00
22 lines
380 B
Plaintext
22 lines
380 B
Plaintext
<?php
|
|
|
|
class Hello extends GtkWindow
|
|
{
|
|
function __construct()
|
|
{
|
|
parent::__construct();
|
|
$this->set_title('Hello World');
|
|
$this->connect_simple('destroy', array('gtk', 'main_quit'));
|
|
|
|
$label = new GtkLabel("Just wanted to say\r\n'Hello World!'");
|
|
|
|
$this->add($label);
|
|
$this->show_all();
|
|
}
|
|
}
|
|
|
|
new Hello();
|
|
Gtk::main();
|
|
|
|
?>
|