Home > General, Programacion > Crear una ventana simple en PHP-GTK2

Crear una ventana simple en PHP-GTK2

March 14th, 2009
< ?php

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

General, Programacion , ,

  1. No comments yet.
  1. No trackbacks yet.