-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmainWindow.xml
More file actions
88 lines (80 loc) · 3.13 KB
/
mainWindow.xml
File metadata and controls
88 lines (80 loc) · 3.13 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<interface>
<menu id='menubar'>
<submenu>
<attribute name='label' translatable='yes'>_File</attribute>
<item>
<attribute name='label' translatable='yes'>_New</attribute>
<attribute name='action'>example.new</attribute>
<attribute name='accel'><Primary>n</attribute>
</item>
<item>
<attribute name='label' translatable='yes'>_Save</attribute>
<attribute name='action'>example.save</attribute>
<attribute name='accel'><Primary>s</attribute>
</item>
<item>
<attribute name='label' translatable='yes'>files_Dialog</attribute>
<attribute name='action'>example.files-dialog</attribute>
<attribute name='accel'><Primary>o</attribute>
</item>
<item>
<attribute name='label' translatable='yes'>_Quit</attribute>
<attribute name='action'>example.quit</attribute>
<attribute name='accel'><Primary>q</attribute>
</item>
</submenu>
</menu>
<object class='GtkBox' id='toolbar'>
<property name='can_focus'>False</property>
<child>
<object class='GtkButton' id='toolbutton_new'>
<property name='can_focus'>False</property>
<property name='tooltip_text' translatable='yes'>New</property>
<property name='action_name'>example.new</property>
<property name='icon_name'>document-new</property>
<property name='hexpand'>False</property>
<property name='vexpand'>False</property>
</object>
</child>
<child>
<object class='GtkButton' id='toolbutton_save'>
<property name='can_focus'>False</property>
<property name='tooltip_text' translatable='yes'>Save</property>
<property name='action_name'>example.save</property>
<property name='icon_name'>document-save</property>
<property name='hexpand'>False</property>
<property name='vexpand'>False</property>
</object>
</child>
<child>
<object class='GtkButton' id='toolbutton_open'>
<property name='can_focus'>False</property>
<property name='tooltip_text' translatable='yes'>Open</property>
<property name='action_name'>example.files-dialog</property>
<property name='icon_name'>document-open</property>
<property name='hexpand'>False</property>
<property name='vexpand'>False</property>
</object>
</child>
<child>
<object class='GtkButton' id='toolbutton_quit'>
<property name='can_focus'>False</property>
<property name='tooltip_text' translatable='yes'>Quit</property>
<property name='action_name'>example.quit</property>
<property name='icon_name'>application-exit</property>
<property name='hexpand'>False</property>
<property name='vexpand'>False</property>
</object>
</child>
</object>
<object class='GtkBox' id='tabBox'>
<property name='hexpand'>True</property>
<property name='vexpand'>False</property>
<child>
</child>
</object>
<object class='GtkBox' id='tabContents'>
<property name='hexpand'>True</property>
<property name='vexpand'>True</property>
</object>
</interface>