mirror of
https://github.com/php/doc-gtk.git
synced 2026-03-25 09:32:13 +01:00
8 lines
173 B
Plaintext
8 lines
173 B
Plaintext
<?php
|
|
//Create a new glade instance, load the
|
|
// widgets from the file passed as parameter
|
|
$glade = new GladeXML('helloglade.glade');
|
|
|
|
//Start the main loop
|
|
Gtk::main();
|
|
?> |