135 lines
3.2 KiB
XML
135 lines
3.2 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<ui version="4.0">
|
|
<class>MainWindow</class>
|
|
<widget class="QMainWindow" name="MainWindow">
|
|
<property name="geometry">
|
|
<rect>
|
|
<x>0</x>
|
|
<y>0</y>
|
|
<width>800</width>
|
|
<height>600</height>
|
|
</rect>
|
|
</property>
|
|
<property name="windowTitle">
|
|
<string>Kaizen</string>
|
|
</property>
|
|
<widget class="QWidget" name="centralwidget">
|
|
<layout class="QVBoxLayout" name="verticalLayout">
|
|
<property name="spacing">
|
|
<number>0</number>
|
|
</property>
|
|
<property name="leftMargin">
|
|
<number>0</number>
|
|
</property>
|
|
<property name="topMargin">
|
|
<number>0</number>
|
|
</property>
|
|
<property name="rightMargin">
|
|
<number>0</number>
|
|
</property>
|
|
<property name="bottomMargin">
|
|
<number>0</number>
|
|
</property>
|
|
<item>
|
|
<widget class="RenderWidget" name="vulkanWidget"/>
|
|
</item>
|
|
</layout>
|
|
</widget>
|
|
<widget class="QMenuBar" name="menubar">
|
|
<property name="geometry">
|
|
<rect>
|
|
<x>0</x>
|
|
<y>0</y>
|
|
<width>800</width>
|
|
<height>21</height>
|
|
</rect>
|
|
</property>
|
|
<widget class="QMenu" name="menuFile">
|
|
<property name="title">
|
|
<string>File</string>
|
|
</property>
|
|
<addaction name="actionOpen"/>
|
|
<addaction name="actionExit"/>
|
|
</widget>
|
|
<widget class="QMenu" name="menuEmulation">
|
|
<property name="title">
|
|
<string>Emulation</string>
|
|
</property>
|
|
<addaction name="actionPause"/>
|
|
<addaction name="actionReset"/>
|
|
<addaction name="actionStop"/>
|
|
</widget>
|
|
<widget class="QMenu" name="menuAbout">
|
|
<property name="title">
|
|
<string>Help</string>
|
|
</property>
|
|
<addaction name="actionAbout"/>
|
|
</widget>
|
|
<addaction name="menuFile"/>
|
|
<addaction name="menuEmulation"/>
|
|
<addaction name="menuAbout"/>
|
|
</widget>
|
|
<widget class="QStatusBar" name="statusbar"/>
|
|
<action name="actionAbout">
|
|
<property name="text">
|
|
<string>About Kaizen</string>
|
|
</property>
|
|
<property name="statusTip">
|
|
<string>About this emulator</string>
|
|
</property>
|
|
</action>
|
|
<action name="actionOpen">
|
|
<property name="text">
|
|
<string>Open...</string>
|
|
</property>
|
|
<property name="statusTip">
|
|
<string>Open a ROM</string>
|
|
</property>
|
|
<property name="shortcut">
|
|
<string>Ctrl+O</string>
|
|
</property>
|
|
</action>
|
|
<action name="actionExit">
|
|
<property name="text">
|
|
<string>Exit</string>
|
|
</property>
|
|
<property name="statusTip">
|
|
<string>Quit the emulator</string>
|
|
</property>
|
|
</action>
|
|
<action name="actionPause">
|
|
<property name="text">
|
|
<string>Pause</string>
|
|
</property>
|
|
<property name="statusTip">
|
|
<string>Pause the emulation</string>
|
|
</property>
|
|
</action>
|
|
<action name="actionReset">
|
|
<property name="text">
|
|
<string>Reset</string>
|
|
</property>
|
|
<property name="statusTip">
|
|
<string>Reset the emulation</string>
|
|
</property>
|
|
</action>
|
|
<action name="actionStop">
|
|
<property name="text">
|
|
<string>Stop</string>
|
|
</property>
|
|
<property name="statusTip">
|
|
<string>Stop the emulation</string>
|
|
</property>
|
|
</action>
|
|
</widget>
|
|
<customwidgets>
|
|
<customwidget>
|
|
<class>Renderer</class>
|
|
<extends>QWidget</extends>
|
|
<header>RenderWidget.hpp</header>
|
|
</customwidget>
|
|
</customwidgets>
|
|
<resources/>
|
|
<connections/>
|
|
</ui>
|