mirror of
https://github.com/php/doc-gtk.git
synced 2026-03-24 17:12:18 +01:00
21 lines
440 B
Plaintext
21 lines
440 B
Plaintext
<?php
|
|
$w = new GtkWindow();
|
|
$w->set_title('GtkBox test');
|
|
$w->connect_simple('destroy', array('gtk', 'main_quit'));
|
|
|
|
$lbl = new GtkLabel('Your name:');
|
|
$scrwnd = new GtkScrolledWindow();
|
|
$txt = new GtkTextView();
|
|
$scrwnd->add($txt);
|
|
$btn = new GtkButton('Send');
|
|
|
|
$vbox = new GtkVBox();
|
|
$w->add($vbox);
|
|
|
|
$vbox->pack_start($lbl, false);
|
|
$vbox->pack_start($scrwnd, true, true);
|
|
$vbox->pack_start($btn, false);
|
|
|
|
$w->show_all();
|
|
Gtk::main();
|
|
?> |