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
|
<?xml version="1.0" encoding="UTF-8"?>
<!--
SPDX-License-Identifier: CC-BY-SA-4.0
SPDX-FileCopyrightText: Michael Terry
-->
<interface>
<!-- interface-requires gtk+ 3.17 -->
<object class="GtkShortcutsWindow" id="help_overlay">
<property name="modal">true</property>
<child>
<object class="GtkShortcutsSection">
<property name="section-name">shortcuts</property>
<property name="max-height">10</property>
<child>
<object class="GtkShortcutsGroup">
<property name="title" translatable="yes" context="shortcut window">General</property>
<child>
<object class="GtkShortcutsShortcut">
<property name="action-name">app.new-game</property>
<property name="title" translatable="yes" context="shortcut window">New Game</property>
</object>
</child>
<child>
<object class="GtkShortcutsShortcut">
<property name="action-name">app.hint</property>
<property name="title" translatable="yes" context="shortcut window">Reveal a Random Digit</property>
</object>
</child>
<child>
<object class="GtkShortcutsShortcut">
<property name="accelerator"><Control>Q</property>
<property name="title" translatable="yes" context="shortcut window">Quit</property>
</object>
</child>
<child>
<object class="GtkShortcutsShortcut">
<property name="action-name">win.show-help-overlay</property>
<property name="title" translatable="yes" context="shortcut window">Shortcuts</property>
</object>
</child>
</object>
</child>
</object>
</child>
</object>
</interface>
|