blob: b51c6975e39dc4235664c4f1ff52ba7fbfa4605f (
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
|
<interface>
<!-- interface-requires gtk+ 3.0 -->
<object class="GtkWindow" id="window1">
<property name="can_focus">False</property>
<property name="type">popup</property>
<child>
<object class="GtkActionBar" id="actionbar">
<property name="visible">True</property>
<child>
<object class="GtkButton" id="button1">
<property name="visible">True</property>
<property name="label">Start 1</property>
</object>
<packing>
<property name="pack-type">start</property>
</packing>
</child>
<child>
<object class="GtkButton" id="button2">
<property name="visible">True</property>
<property name="label">Start 2</property>
</object>
<packing>
<property name="pack-type">start</property>
</packing>
</child>
<child>
<object class="GtkButton" id="button3">
<property name="visible">True</property>
<property name="label">End 1</property>
</object>
<packing>
<property name="pack-type">end</property>
</packing>
</child>
<child>
<object class="GtkButton" id="button4">
<property name="visible">True</property>
<property name="label">End 2</property>
</object>
<packing>
<property name="pack-type">end</property>
</packing>
</child>
<child type="center">
<object class="GtkButton" id="button5">
<property name="visible">True</property>
<property name="label">Center</property>
</object>
</child>
</object>
</child>
</object>
</interface>
|