Files
seer/src/SeerMemoryVisualizerWidget.ui
T
2022-10-30 13:16:36 -05:00

267 lines
7.8 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>SeerMemoryVisualizerWidgetForm</class>
<widget class="QWidget" name="SeerMemoryVisualizerWidgetForm">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>899</width>
<height>683</height>
</rect>
</property>
<property name="windowTitle">
<string>Form</string>
</property>
<layout class="QGridLayout" name="gridLayout">
<item row="0" column="0">
<layout class="QHBoxLayout" name="horizontalLayout">
<item>
<widget class="QHistoryLineEdit" name="variableNameLineEdit">
<property name="toolTip">
<string>Variable expression resulting in an address.</string>
</property>
<property name="placeholderText">
<string>Starting address</string>
</property>
<property name="clearButtonEnabled">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<widget class="QLineEdit" name="variableAddressLineEdit">
<property name="toolTip">
<string>Memory address.</string>
</property>
<property name="readOnly">
<bool>true</bool>
</property>
<property name="placeholderText">
<string>Memory address</string>
</property>
</widget>
</item>
<item>
<widget class="QHistoryLineEdit" name="memoryLengthLineEdit">
<property name="toolTip">
<string>Number of bytes to display.</string>
</property>
<property name="inputMask">
<string/>
</property>
<property name="placeholderText">
<string># Bytes (default 256)</string>
</property>
<property name="clearButtonEnabled">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<widget class="QComboBox" name="memoryDisplayFormatComboBox">
<property name="toolTip">
<string>Memory display format.</string>
</property>
<item>
<property name="text">
<string>hex</string>
</property>
</item>
<item>
<property name="text">
<string>octal</string>
</property>
</item>
<item>
<property name="text">
<string>binary</string>
</property>
</item>
<item>
<property name="text">
<string>decimal</string>
</property>
</item>
</widget>
</item>
<item>
<widget class="QComboBox" name="charDisplayFormatComboBox">
<property name="toolTip">
<string>Character display format.</string>
</property>
<item>
<property name="text">
<string>ascii</string>
</property>
</item>
<item>
<property name="text">
<string>ebcdic</string>
</property>
</item>
</widget>
</item>
<item>
<widget class="QSpinBox" name="columnCountSpinBox">
<property name="toolTip">
<string>Number of columns in display.</string>
</property>
<property name="minimum">
<number>1</number>
</property>
<property name="value">
<number>10</number>
</property>
</widget>
</item>
<item>
<widget class="QToolButton" name="printToolButton">
<property name="toolTip">
<string>Print the display.</string>
</property>
<property name="text">
<string>...</string>
</property>
<property name="icon">
<iconset resource="resource.qrc">
<normaloff>:/seer/resources/RelaxLightIcons/document-print.svg</normaloff>:/seer/resources/RelaxLightIcons/document-print.svg</iconset>
</property>
</widget>
</item>
<item>
<widget class="QToolButton" name="saveToolButton">
<property name="toolTip">
<string>Save the display to a file.</string>
</property>
<property name="text">
<string>...</string>
</property>
<property name="icon">
<iconset resource="resource.qrc">
<normaloff>:/seer/resources/RelaxLightIcons/document-save-as.svg</normaloff>:/seer/resources/RelaxLightIcons/document-save-as.svg</iconset>
</property>
</widget>
</item>
<item>
<widget class="Line" name="line_1">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
</widget>
</item>
<item>
<widget class="QToolButton" name="refreshToolButton">
<property name="toolTip">
<string>Refresh the display.</string>
</property>
<property name="text">
<string>...</string>
</property>
<property name="icon">
<iconset resource="resource.qrc">
<normaloff>:/seer/resources/RelaxLightIcons/view-refresh.svg</normaloff>:/seer/resources/RelaxLightIcons/view-refresh.svg</iconset>
</property>
</widget>
</item>
<item>
<widget class="QCheckBox" name="autoRefreshCheckBox">
<property name="toolTip">
<string>Automatically refresh after each stopping point.</string>
</property>
<property name="text">
<string>Auto</string>
</property>
</widget>
</item>
<item>
<widget class="Line" name="line_2">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
</widget>
</item>
<item>
<widget class="QToolButton" name="helpToolButton">
<property name="toolTip">
<string>Help on Memory Visualizer</string>
</property>
<property name="text">
<string/>
</property>
<property name="icon">
<iconset resource="resource.qrc">
<normaloff>:/seer/resources/RelaxLightIcons/help-about.svg</normaloff>:/seer/resources/RelaxLightIcons/help-about.svg</iconset>
</property>
</widget>
</item>
</layout>
</item>
<item row="1" column="0">
<widget class="QTabWidget" name="tabWidget">
<property name="currentIndex">
<number>0</number>
</property>
<widget class="QWidget" name="hex_tab">
<attribute name="title">
<string>Memory</string>
</attribute>
<layout class="QGridLayout" name="gridLayout_1">
<item row="0" column="0">
<widget class="SeerHexWidget" name="memoryHexEditor" native="true">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>100</verstretch>
</sizepolicy>
</property>
</widget>
</item>
</layout>
</widget>
<widget class="QWidget" name="asm_tab">
<attribute name="title">
<string>Disassembly</string>
</attribute>
<layout class="QGridLayout" name="gridLayout_2">
<item row="0" column="0">
<widget class="SeerAsmWidget" name="memoryAsmEditor" native="true">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>100</verstretch>
</sizepolicy>
</property>
</widget>
</item>
</layout>
</widget>
</widget>
</item>
</layout>
</widget>
<customwidgets>
<customwidget>
<class>SeerHexWidget</class>
<extends>QWidget</extends>
<header location="global">SeerHexWidget.h</header>
<container>1</container>
</customwidget>
<customwidget>
<class>SeerAsmWidget</class>
<extends>QWidget</extends>
<header location="global">SeerAsmWidget.h</header>
<container>1</container>
</customwidget>
<customwidget>
<class>QHistoryLineEdit</class>
<extends>QLineEdit</extends>
<header location="global">QHistoryLineEdit.h</header>
</customwidget>
</customwidgets>
<resources>
<include location="resource.qrc"/>
</resources>
<connections/>
</ui>