361 lines
16 KiB
Plaintext
361 lines
16 KiB
Plaintext
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<!--
|
||
|
|
||
|
The MIT License (MIT)
|
||
|
|
||
|
Copyright (c) 2015-2019 Lior Halphon
|
||
|
|
||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||
|
of this software and associated documentation files (the "Software"), to deal
|
||
|
in the Software without restriction, including without limitation the rights
|
||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||
|
copies of the Software, and to permit persons to whom the Software is
|
||
|
furnished to do so, subject to the following conditions:
|
||
|
|
||
|
The above copyright notice and this permission notice shall be included in
|
||
|
all copies or substantial portions of the Software.
|
||
|
|
||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||
|
THE SOFTWARE.
|
||
|
|
||
|
Author: Maximilian Mader
|
||
|
|
||
|
-->
|
||
|
<interface>
|
||
|
<requires lib="gtk+" version="3.22"/>
|
||
|
<!-- interface-license-type mit -->
|
||
|
<!-- interface-name SameBoy -->
|
||
|
<!-- interface-description SameBoy is an open source Game Boy (DMG) and Game Boy Color (CGB) emulator, written in portable C. -->
|
||
|
<!-- interface-copyright 2015-2021 Lior Halphon -->
|
||
|
<!-- interface-authors Maximilian Mader -->
|
||
|
<template class="MainWindow">
|
||
|
<object class="GtkMenuBar" id="main_menu">
|
||
|
<property name="visible">True</property>
|
||
|
<property name="can_focus">False</property>
|
||
|
<child>
|
||
|
<object class="GtkMenuItem">
|
||
|
<property name="visible">True</property>
|
||
|
<property name="can_focus">False</property>
|
||
|
<property name="label" translatable="yes">_File</property>
|
||
|
<property name="use_underline">True</property>
|
||
|
<child type="submenu">
|
||
|
<object class="GtkMenu">
|
||
|
<property name="visible">True</property>
|
||
|
<property name="can_focus">False</property>
|
||
|
<child>
|
||
|
<object class="GtkMenuItem">
|
||
|
<property name="visible">True</property>
|
||
|
<property name="can_focus">False</property>
|
||
|
<property name="action_name">app.open</property>
|
||
|
<property name="label" translatable="yes">_Open</property>
|
||
|
<property name="use_underline">True</property>
|
||
|
</object>
|
||
|
</child>
|
||
|
<child>
|
||
|
<object class="GtkMenuItem">
|
||
|
<property name="visible">True</property>
|
||
|
<property name="can_focus">False</property>
|
||
|
<property name="label" translatable="yes">_Recent files</property>
|
||
|
<property name="use_underline">True</property>
|
||
|
<child type="submenu">
|
||
|
<object class="GtkRecentChooserMenu">
|
||
|
<property name="visible">True</property>
|
||
|
<property name="can_focus">False</property>
|
||
|
<property name="filter">recent_files_filter</property>
|
||
|
<property name="limit">10</property>
|
||
|
<property name="sort_type">mru</property>
|
||
|
<signal name="item-activated" handler="on_open_recent_activate" swapped="no"/>
|
||
|
</object>
|
||
|
</child>
|
||
|
</object>
|
||
|
</child>
|
||
|
<child>
|
||
|
<object class="GtkMenuItem">
|
||
|
<property name="visible">True</property>
|
||
|
<property name="can_focus">False</property>
|
||
|
<property name="action_name">app.close</property>
|
||
|
<property name="label" translatable="yes">_Close</property>
|
||
|
<property name="use_underline">True</property>
|
||
|
</object>
|
||
|
</child>
|
||
|
<child>
|
||
|
<object class="GtkSeparatorMenuItem">
|
||
|
<property name="visible">True</property>
|
||
|
<property name="can_focus">False</property>
|
||
|
</object>
|
||
|
</child>
|
||
|
<child>
|
||
|
<object class="GtkMenuItem">
|
||
|
<property name="visible">True</property>
|
||
|
<property name="can_focus">False</property>
|
||
|
<property name="action_name">app.quit</property>
|
||
|
<property name="label" translatable="yes">_Quit</property>
|
||
|
<property name="use_underline">True</property>
|
||
|
</object>
|
||
|
</child>
|
||
|
</object>
|
||
|
</child>
|
||
|
</object>
|
||
|
</child>
|
||
|
<child>
|
||
|
<object class="GtkMenuItem">
|
||
|
<property name="visible">True</property>
|
||
|
<property name="can_focus">False</property>
|
||
|
<property name="label" translatable="yes">_Edit</property>
|
||
|
<property name="use_underline">True</property>
|
||
|
<child type="submenu">
|
||
|
<object class="GtkMenu">
|
||
|
<property name="visible">True</property>
|
||
|
<property name="can_focus">False</property>
|
||
|
<child>
|
||
|
<object class="GtkMenuItem">
|
||
|
<property name="visible">True</property>
|
||
|
<property name="can_focus">False</property>
|
||
|
<property name="action_name">app.preferences</property>
|
||
|
<property name="label" translatable="yes">_Preferences</property>
|
||
|
<property name="use_underline">True</property>
|
||
|
</object>
|
||
|
</child>
|
||
|
</object>
|
||
|
</child>
|
||
|
</object>
|
||
|
</child>
|
||
|
<child>
|
||
|
<object class="GtkMenuItem">
|
||
|
<property name="visible">True</property>
|
||
|
<property name="can_focus">False</property>
|
||
|
<property name="label" translatable="yes">E_mulation</property>
|
||
|
<property name="use_underline">True</property>
|
||
|
<child type="submenu">
|
||
|
<object class="GtkMenu">
|
||
|
<property name="visible">True</property>
|
||
|
<property name="can_focus">False</property>
|
||
|
<child>
|
||
|
<object class="GtkMenuItem">
|
||
|
<property name="visible">True</property>
|
||
|
<property name="can_focus">False</property>
|
||
|
<property name="action_name">app.reset</property>
|
||
|
<property name="label" translatable="yes">_Reset</property>
|
||
|
<property name="use_underline">True</property>
|
||
|
</object>
|
||
|
</child>
|
||
|
<child>
|
||
|
<object class="GtkCheckMenuItem">
|
||
|
<property name="visible">True</property>
|
||
|
<property name="can_focus">False</property>
|
||
|
<property name="action_name">app.pause</property>
|
||
|
<property name="label" translatable="yes">Pause</property>
|
||
|
<property name="use_underline">True</property>
|
||
|
</object>
|
||
|
</child>
|
||
|
<child>
|
||
|
<object class="GtkSeparatorMenuItem">
|
||
|
<property name="visible">True</property>
|
||
|
<property name="can_focus">False</property>
|
||
|
</object>
|
||
|
</child>
|
||
|
<child>
|
||
|
<object class="GtkMenuItem">
|
||
|
<property name="visible">True</property>
|
||
|
<property name="can_focus">False</property>
|
||
|
<property name="action_name">app.save_state</property>
|
||
|
<property name="label" translatable="yes">Save State</property>
|
||
|
<property name="use_underline">True</property>
|
||
|
</object>
|
||
|
</child>
|
||
|
<child>
|
||
|
<object class="GtkMenuItem">
|
||
|
<property name="visible">True</property>
|
||
|
<property name="can_focus">False</property>
|
||
|
<property name="action_name">app.load_state</property>
|
||
|
<property name="label" translatable="yes">Load State</property>
|
||
|
<property name="use_underline">True</property>
|
||
|
</object>
|
||
|
</child>
|
||
|
<child>
|
||
|
<object class="GtkSeparatorMenuItem" id="before_model_changer">
|
||
|
<property name="visible">True</property>
|
||
|
<property name="can_focus">False</property>
|
||
|
</object>
|
||
|
</child>
|
||
|
<child>
|
||
|
<object class="GtkSeparatorMenuItem">
|
||
|
<property name="visible">True</property>
|
||
|
<property name="can_focus">False</property>
|
||
|
</object>
|
||
|
</child>
|
||
|
<child>
|
||
|
<object class="GtkCheckMenuItem">
|
||
|
<property name="visible">True</property>
|
||
|
<property name="can_focus">False</property>
|
||
|
<property name="action_name">app.toggle_mute</property>
|
||
|
<property name="label" translatable="yes">Mute Sound</property>
|
||
|
<property name="use_underline">True</property>
|
||
|
</object>
|
||
|
</child>
|
||
|
</object>
|
||
|
</child>
|
||
|
</object>
|
||
|
</child>
|
||
|
<child>
|
||
|
<object class="GtkMenuItem">
|
||
|
<property name="visible">True</property>
|
||
|
<property name="can_focus">False</property>
|
||
|
<property name="label" translatable="yes">_Link</property>
|
||
|
<property name="use_underline">True</property>
|
||
|
<child type="submenu">
|
||
|
<object class="GtkMenu" id="link_menu">
|
||
|
<property name="visible">True</property>
|
||
|
<property name="can_focus">False</property>
|
||
|
</object>
|
||
|
</child>
|
||
|
</object>
|
||
|
</child>
|
||
|
<child>
|
||
|
<object class="GtkMenuItem">
|
||
|
<property name="visible">True</property>
|
||
|
<property name="can_focus">False</property>
|
||
|
<property name="label" translatable="yes">_Develop</property>
|
||
|
<property name="use_underline">True</property>
|
||
|
<child type="submenu">
|
||
|
<object class="GtkMenu">
|
||
|
<property name="visible">True</property>
|
||
|
<property name="can_focus">False</property>
|
||
|
<child>
|
||
|
<object class="GtkCheckMenuItem">
|
||
|
<property name="visible">True</property>
|
||
|
<property name="can_focus">False</property>
|
||
|
<property name="action_name">app.toggle_developer_mode</property>
|
||
|
<property name="label" translatable="yes">Developer Mode</property>
|
||
|
<property name="use_underline">True</property>
|
||
|
</object>
|
||
|
</child>
|
||
|
<child>
|
||
|
<object class="GtkSeparatorMenuItem">
|
||
|
<property name="visible">True</property>
|
||
|
<property name="can_focus">False</property>
|
||
|
</object>
|
||
|
</child>
|
||
|
<child>
|
||
|
<object class="GtkMenuItem">
|
||
|
<property name="visible">True</property>
|
||
|
<property name="can_focus">False</property>
|
||
|
<property name="action_name">app.show_console</property>
|
||
|
<property name="label" translatable="yes">Show Console</property>
|
||
|
<property name="use_underline">True</property>
|
||
|
</object>
|
||
|
</child>
|
||
|
<child>
|
||
|
<object class="GtkMenuItem">
|
||
|
<property name="visible">True</property>
|
||
|
<property name="can_focus">False</property>
|
||
|
<property name="action_name">app.clear_console</property>
|
||
|
<property name="label" translatable="yes">Clear Console</property>
|
||
|
<property name="use_underline">True</property>
|
||
|
</object>
|
||
|
</child>
|
||
|
<child>
|
||
|
<object class="GtkSeparatorMenuItem">
|
||
|
<property name="visible">True</property>
|
||
|
<property name="can_focus">False</property>
|
||
|
</object>
|
||
|
</child>
|
||
|
<child>
|
||
|
<object class="GtkMenuItem">
|
||
|
<property name="visible">True</property>
|
||
|
<property name="can_focus">False</property>
|
||
|
<property name="action_name">app.break_debugger</property>
|
||
|
<property name="label" translatable="yes">Break Debugger</property>
|
||
|
<property name="use_underline">True</property>
|
||
|
</object>
|
||
|
</child>
|
||
|
<child>
|
||
|
<object class="GtkSeparatorMenuItem">
|
||
|
<property name="visible">True</property>
|
||
|
<property name="can_focus">False</property>
|
||
|
</object>
|
||
|
</child>
|
||
|
<child>
|
||
|
<object class="GtkMenuItem">
|
||
|
<property name="visible">True</property>
|
||
|
<property name="can_focus">False</property>
|
||
|
<property name="action_name">app.open_memory_viewer</property>
|
||
|
<property name="label" translatable="yes">Show Memory Viewer</property>
|
||
|
<property name="use_underline">True</property>
|
||
|
</object>
|
||
|
</child>
|
||
|
<child>
|
||
|
<object class="GtkMenuItem">
|
||
|
<property name="visible">True</property>
|
||
|
<property name="can_focus">False</property>
|
||
|
<property name="action_name">app.open_vram_viewer</property>
|
||
|
<property name="label" translatable="yes">Show VRAM Viewer</property>
|
||
|
<property name="use_underline">True</property>
|
||
|
</object>
|
||
|
</child>
|
||
|
<child>
|
||
|
<object class="GtkSeparatorMenuItem">
|
||
|
<property name="visible">True</property>
|
||
|
<property name="can_focus">False</property>
|
||
|
</object>
|
||
|
</child>
|
||
|
<child>
|
||
|
<object class="GtkMenuItem">
|
||
|
<property name="visible">True</property>
|
||
|
<property name="can_focus">False</property>
|
||
|
<property name="action_name">app.open_gtk_debugger</property>
|
||
|
<property name="label" translatable="yes">Show GTK Debugger</property>
|
||
|
<property name="use_underline">True</property>
|
||
|
</object>
|
||
|
</child>
|
||
|
</object>
|
||
|
</child>
|
||
|
</object>
|
||
|
</child>
|
||
|
<child>
|
||
|
<object class="GtkMenuItem">
|
||
|
<property name="visible">True</property>
|
||
|
<property name="can_focus">False</property>
|
||
|
<property name="label" translatable="yes">_Help</property>
|
||
|
<property name="use_underline">True</property>
|
||
|
<child type="submenu">
|
||
|
<object class="GtkMenu">
|
||
|
<property name="visible">True</property>
|
||
|
<property name="can_focus">False</property>
|
||
|
<child>
|
||
|
<object class="GtkMenuItem">
|
||
|
<property name="visible">True</property>
|
||
|
<property name="can_focus">False</property>
|
||
|
<property name="action_name">app.about</property>
|
||
|
<property name="label">_About</property>
|
||
|
<property name="use_underline">True</property>
|
||
|
</object>
|
||
|
</child>
|
||
|
</object>
|
||
|
</child>
|
||
|
</object>
|
||
|
</child>
|
||
|
</object>
|
||
|
</template>
|
||
|
|
||
|
<object class="GtkRecentFilter" id="recent_files_filter">
|
||
|
<mime-types>
|
||
|
<mime-type>application/x-gameboy-rom</mime-type>
|
||
|
<mime-type>application/x-gameboy-color-rom</mime-type>
|
||
|
</mime-types>
|
||
|
<patterns>
|
||
|
<pattern>*.gb</pattern>
|
||
|
<pattern>*.gbc</pattern>
|
||
|
<pattern>*.isx</pattern>
|
||
|
</patterns>
|
||
|
<applications>
|
||
|
<application>sameboy</application>
|
||
|
</applications>
|
||
|
</object>
|
||
|
</interface>
|