mirror of
https://github.com/php/php-gtk-src.git
synced 2026-03-25 01:32:15 +01:00
14 lines
310 B
Plaintext
14 lines
310 B
Plaintext
<?php
|
|
$win = new GtkWindow();
|
|
$source = new GtkSourceView();
|
|
$source->set_show_line_numbers(true);
|
|
$source->set_show_line_markers(true);
|
|
|
|
$win->add($source);
|
|
$win->maximize();
|
|
$win->show_all();
|
|
$win->set_title("GtkSourceView Demo");
|
|
$win->connect_simple("destroy", array("Gtk", "main_quit"));
|
|
|
|
Gtk::main();
|
|
?> |