mirror of https://github.com/PCSX2/pcsx2.git
133 lines
3.3 KiB
XML
133 lines
3.3 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<ui version="4.0">
|
|
<class>DebuggerWindow</class>
|
|
<widget class="QMainWindow" name="DebuggerWindow">
|
|
<property name="geometry">
|
|
<rect>
|
|
<x>0</x>
|
|
<y>0</y>
|
|
<width>800</width>
|
|
<height>600</height>
|
|
</rect>
|
|
</property>
|
|
<property name="windowTitle">
|
|
<string>PCSX2 Debugger</string>
|
|
</property>
|
|
<property name="windowIcon">
|
|
<iconset>
|
|
<normalon>:/icons/AppIcon64.png</normalon>
|
|
</iconset>
|
|
</property>
|
|
<widget class="QWidget" name="centralwidget">
|
|
<layout class="QGridLayout" name="gridLayout">
|
|
<item row="0" column="0">
|
|
<widget class="QTabWidget" name="cpuTabs"/>
|
|
</item>
|
|
</layout>
|
|
</widget>
|
|
<widget class="QToolBar" name="toolBar">
|
|
<property name="contextMenuPolicy">
|
|
<enum>Qt::PreventContextMenu</enum>
|
|
</property>
|
|
<property name="movable">
|
|
<bool>false</bool>
|
|
</property>
|
|
<property name="iconSize">
|
|
<size>
|
|
<width>16</width>
|
|
<height>16</height>
|
|
</size>
|
|
</property>
|
|
<property name="toolButtonStyle">
|
|
<enum>Qt::ToolButtonTextBesideIcon</enum>
|
|
</property>
|
|
<property name="floatable">
|
|
<bool>false</bool>
|
|
</property>
|
|
<attribute name="toolBarArea">
|
|
<enum>TopToolBarArea</enum>
|
|
</attribute>
|
|
<attribute name="toolBarBreak">
|
|
<bool>false</bool>
|
|
</attribute>
|
|
<addaction name="actionRun"/>
|
|
<addaction name="actionStepInto"/>
|
|
<addaction name="actionStepOver"/>
|
|
<addaction name="actionStepOut"/>
|
|
<addaction name="actionAnalyse"/>
|
|
<addaction name="actionOnTop"/>
|
|
</widget>
|
|
<action name="actionRun">
|
|
<property name="icon">
|
|
<iconset theme="play-line">
|
|
<normaloff>.</normaloff>.</iconset>
|
|
</property>
|
|
<property name="text">
|
|
<string>Run</string>
|
|
</property>
|
|
</action>
|
|
<action name="actionStepInto">
|
|
<property name="icon">
|
|
<iconset theme="debug-step-into-line">
|
|
<normaloff>.</normaloff>.</iconset>
|
|
</property>
|
|
<property name="text">
|
|
<string>Step Into</string>
|
|
</property>
|
|
<property name="shortcut">
|
|
<string>F11</string>
|
|
</property>
|
|
</action>
|
|
<action name="actionStepOver">
|
|
<property name="icon">
|
|
<iconset theme="debug-step-over-line">
|
|
<normaloff>.</normaloff>.</iconset>
|
|
</property>
|
|
<property name="text">
|
|
<string>Step Over</string>
|
|
</property>
|
|
<property name="shortcut">
|
|
<string>F10</string>
|
|
</property>
|
|
</action>
|
|
<action name="actionStepOut">
|
|
<property name="icon">
|
|
<iconset theme="debug-step-out-line">
|
|
<normaloff>.</normaloff>.</iconset>
|
|
</property>
|
|
<property name="text">
|
|
<string>Step Out</string>
|
|
</property>
|
|
<property name="shortcut">
|
|
<string>Shift+F11</string>
|
|
</property>
|
|
</action>
|
|
<action name="actionOnTop">
|
|
<property name="checkable">
|
|
<bool>true</bool>
|
|
</property>
|
|
<property name="icon">
|
|
<iconset theme="pin-filled">
|
|
<normaloff>.</normaloff>.</iconset>
|
|
</property>
|
|
<property name="text">
|
|
<string>Always On Top</string>
|
|
</property>
|
|
<property name="toolTip">
|
|
<string>Show this window on top</string>
|
|
</property>
|
|
</action>
|
|
<action name="actionAnalyse">
|
|
<property name="icon">
|
|
<iconset theme="restart-line">
|
|
<normaloff>.</normaloff>.</iconset>
|
|
</property>
|
|
<property name="text">
|
|
<string>Analyze</string>
|
|
</property>
|
|
</action>
|
|
</widget>
|
|
<resources/>
|
|
<connections/>
|
|
</ui>
|