Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?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("hello world");
- $wnd->add($lblHello);
- $wnd->show_all();
- Gtk::main();
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement