-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path00005.php
62 lines (47 loc) · 1.45 KB
/
00005.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?php
/**
* PHP-GTK Cookbook
*
* https://andor.com.br/php-gtk/cook/how-to-display-a-tree-structure-with-gtktreeview
*/
Gtk::init();
$window = new \GtkWindow();
$window->set_size_request(500, 500);
$window->set_title("PHP-GTK");
// create a box
$vbox = new \GtkBox(GtkOrientation::VERTICAL);
$vbox->set_border_width(10);
// create the treeview, added it inside a scrolled window, and pack scrolled windows to box
$treeview = new GtkTreeView();
$scroll = new GtkScrolledWindow();
$scroll->add($treeview);
$vbox->pack_start($scroll, TRUE, TRUE, 0);
// columns
$column1 = new GtkTreeViewColumn("Contacts", new GtkCellRendererText(), "text", 0);
$treeview->append_column($column1);
// create model
$model = new GtkTreeStore(GObject::TYPE_STRING);
$treeview->set_model($model);
// add values the root
$iter = $model->append(NULL, ["Pessoal"]);
$model->append($iter, ["Bruno"]);
$model->append($iter, ["Natália"]);
// add sub
$iter = $model->append($iter, ["Mobile"]);
$model->append($iter, ["Maria"]);
$model->append($iter, ["Sven"]);
// add values the root
$iter = $model->append(NULL, ["Professional"]);
$model->append($iter, ["Sven"]);
$model->append($iter, ["Maria"]);
$model->append($iter, ["Bruno"]);
$model->append($iter, ["Natália"]);
// add to window
$window->add($vbox);
// connect to signal that close program
$window->connect("destroy", function() {
Gtk::main_quit();
});
// show all and start
$window->show_all();
Gtk::main();