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
|
<?xml version="1.0" encoding="UTF-8"?>
<interface>
<menu id="header_menu">
<section>
<section>
<submenu>
<attribute name="label" translatable="yes">_Input</attribute>
<item>
<attribute name="label" translatable="yes">_Emulate touch</attribute>
<attribute name="action">app.toggle_emulate_touch</attribute>
</item>
<item>
<attribute name="label" translatable="yes">_Inhibit system shortcuts</attribute>
<attribute name="action">app.toggle_inhibit_system_shortcuts</attribute>
</item>
</submenu>
</section>
<section>
<submenu>
<attribute name="label" translatable="yes">_Launchers</attribute>
<section id="launchers"/>
<section>
<item>
<attribute name="label" translatable="yes">_Edit launchers</attribute>
<attribute name="action">app.edit_launchers</attribute>
</item>
</section>
</submenu>
</section>
<item>
<attribute name="label" translatable="yes">_About Mutter Development Kit</attribute>
<attribute name="action">app.about</attribute>
</item>
</section>
</menu>
<template class="MdkMainWindow" parent="MdkWindow">
<property name="title" translatable="yes">Mutter Development Kit</property>
<child type="titlebar">
<object class="GtkHeaderBar" id="headerbar">
<child type="end">
<object class="GtkMenuButton" id="gear_menu_button">
<property name="valign">center</property>
<property name="menu-model">header_menu</property>
<property name="primary">True</property>
<property name="icon-name">open-menu-symbolic</property>
<accessibility>
<property name="label" translatable="yes">Main Menu</property>
</accessibility>
</object>
</child>
</object>
</child>
</template>
</interface>
|