blob: 2faa9a0117b4186451f224f45954d79cd1f9c9b3 (
plain)
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
63
64
65
66
|
<?xml version="1.0" encoding="UTF-8"?>
<interface>
<object class="GtkWindow" id="window1">
<property name="type">popup</property>
<child>
<object class="GtkBox" id="box">
<property name="orientation">vertical</property>
<child>
<object class="GtkBox" id="box0">
<property name="spacing">20</property>
<child>
<object class="GtkLabel" id="one">
<property name="label">One</property>
</object>
</child>
<child>
<object class="GtkLabel" id="two">
<property name="label">Two</property>
</object>
</child>
<child>
<object class="GtkLabel" id="three">
<property name="label">Three</property>
</object>
</child>
</object>
</child>
<child>
<object class="GtkBox" id="box1">
<property name="homogeneous">1</property>
<child>
<object class="GtkLabel" id="long">
<property name="label">Verylongtext</property>
</object>
</child>
<child>
<object class="GtkLabel" id="short">
<property name="label">Short</property>
</object>
</child>
</object>
</child>
<child>
<object class="GtkBox" id="box2">
<child>
<object class="GtkLabel" id="a">
<property name="label">A</property>
</object>
</child>
<child>
<object class="GtkLabel" id="b">
<property name="label">B</property>
<property name="hexpand">1</property>
</object>
</child>
<child>
<object class="GtkLabel" id="c">
<property name="label">C</property>
</object>
</child>
</object>
</child>
</object>
</child>
</object>
</interface>
|