Checkpoint.

This commit is contained in:
Ernie Pasveer
2022-06-11 08:56:59 -05:00
parent ffb8635465
commit 5143456908
2 changed files with 150 additions and 0 deletions
Binary file not shown.

Before

Width:  |  Height:  |  Size: 100 KiB

After

Width:  |  Height:  |  Size: 98 KiB

+150
View File
@@ -0,0 +1,150 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>SeerAssemblyWidgetForm</class>
<widget class="QWidget" name="SeerAssemblyWidgetForm">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>838</width>
<height>720</height>
</rect>
</property>
<property name="windowTitle">
<string>SeerAssemblyWidgetForm</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<widget class="SeerEditorWidgetAssemblyArea" name="assemblyWidget" native="true">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>100</verstretch>
</sizepolicy>
</property>
</widget>
</item>
<item>
<layout class="QHBoxLayout" name="searchBarLayout">
<item>
<widget class="QLineEdit" name="searchTextLineEdit">
<property name="sizePolicy">
<sizepolicy hsizetype="Expanding" vsizetype="Fixed">
<horstretch>80</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="toolTip">
<string>Enter text to search for.</string>
</property>
<property name="placeholderText">
<string>Enter search text</string>
</property>
<property name="clearButtonEnabled">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<widget class="QCheckBox" name="matchCaseCheckBox">
<property name="text">
<string>Match Case</string>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="matchesLabel">
<property name="text">
<string/>
</property>
</widget>
</item>
<item>
<widget class="QToolButton" name="searchDownToolButton">
<property name="toolTip">
<string>Search for the next occurance.</string>
</property>
<property name="text">
<string>...</string>
</property>
<property name="icon">
<iconset resource="resource.qrc">
<normaloff>:/seer/resources/RelaxLightIcons/go-down.svg</normaloff>:/seer/resources/RelaxLightIcons/go-down.svg</iconset>
</property>
</widget>
</item>
<item>
<widget class="QToolButton" name="searchUpToolButton">
<property name="toolTip">
<string>Search for the previous occurance.</string>
</property>
<property name="text">
<string>...</string>
</property>
<property name="icon">
<iconset resource="resource.qrc">
<normaloff>:/seer/resources/RelaxLightIcons/go-up.svg</normaloff>:/seer/resources/RelaxLightIcons/go-up.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="QLineEdit" name="searchAddressLineEdit">
<property name="sizePolicy">
<sizepolicy hsizetype="Expanding" vsizetype="Fixed">
<horstretch>20</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="toolTip">
<string>Scroll to a specific address.</string>
</property>
<property name="placeholderText">
<string>Go to address</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="searchCloseToolButton">
<property name="toolTip">
<string>Close the search bar.</string>
</property>
<property name="text">
<string>...</string>
</property>
<property name="icon">
<iconset resource="resource.qrc">
<normaloff>:/seer/resources/RelaxLightIcons/list-remove.svg</normaloff>:/seer/resources/RelaxLightIcons/list-remove.svg</iconset>
</property>
</widget>
</item>
</layout>
</item>
</layout>
</widget>
<customwidgets>
<customwidget>
<class>SeerEditorWidgetAssemblyArea</class>
<extends>QWidget</extends>
<header location="global">SeerEditorWidget.h</header>
<container>1</container>
</customwidget>
</customwidgets>
<resources>
<include location="resource.qrc"/>
</resources>
<connections/>
</ui>