-
Notifications
You must be signed in to change notification settings - Fork 0
/
guirefpersys.ui
51 lines (51 loc) · 1.85 KB
/
guirefpersys.ui
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
<?xml version="1.0" encoding="UTF-8"?>
<!-- file RefPerSys/gtk4gui-refpersys/guirefpersys.ui -->
<!-- SPDX-License-Identifier: MIT -->
<!-- © Copyright 2023 Basile Starynkevitch -->
<interface>
<object class="GtkApplicationWindow" id="app_window">
<property name="title" translatable="yes">RefPerSys GUI</property>
<property name="default-width">700</property>
<property name="default-height">500</property>
<property name="hide-on-close">True</property>
<child>
<object class="GtkBox" id="content_box">
<property name="orientation">vertical</property>
<child>
<menu id="menubar">
<submenu>
<attribute name='label' translatable='yes'>_File</attribute>
<section>
<item>
<attribute name='label' translatable='yes'>_New</attribute>
<attribute name='action'>example.new</attribute>
<attribute name='accel'><Primary>n</attribute>
</item>
</section>
<section>
<item>
<attribute name='label' translatable='yes'>_Quit</attribute>
<attribute name='action'>example.quit</attribute>
<attribute name='accel'><Primary>q</attribute>
</item>
</section>
</submenu>
<submenu>
<attribute name='label' translatable='yes'>_Edit</attribute>
<item>
<attribute name='label' translatable='yes'>_Copy</attribute>
<attribute name='action'>example.copy</attribute>
<attribute name='accel'><Primary>c</attribute>
</item>
<item>
<attribute name='label' translatable='yes'>_Paste</attribute>
<attribute name='action'>example.paste</attribute>
<attribute name='accel'><Primary>v</attribute>
</item>
</submenu>
</menu>
</child>
</object>
</child>
</object>
</interface>