Files
doc-gtk/examples/tutorials/helloglade/loading.phpw
2006-04-27 13:59:50 +00:00

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();
?>