Files
seer/src/SeerArrayVisualizerWidget.ui
T

185 lines
5.0 KiB
XML
Raw Normal View History

2021-11-30 16:59:42 -06:00
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>SeerArrayVisualizerWidgetForm</class>
<widget class="QWidget" name="SeerArrayVisualizerWidgetForm">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>640</width>
<height>657</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="QLineEdit" name="variableNameLineEdit">
<property name="toolTip">
<string>Variable name or expression.</string>
</property>
<property name="placeholderText">
<string>variable name</string>
</property>
<property name="clearButtonEnabled">
<bool>false</bool>
</property>
</widget>
</item>
<item>
<widget class="QLineEdit" name="variableAddressLineEdit">
<property name="toolTip">
<string>Variable address.</string>
</property>
<property name="readOnly">
<bool>true</bool>
</property>
<property name="placeholderText">
<string>variable address</string>
</property>
</widget>
</item>
<item>
<widget class="QLineEdit" name="arrayLengthLineEdit">
<property name="toolTip">
2022-03-14 18:28:46 -05:00
<string>Number of elements to display.</string>
2021-11-30 16:59:42 -06:00
</property>
<property name="inputMask">
<string/>
</property>
<property name="placeholderText">
<string># Elements</string>
</property>
<property name="clearButtonEnabled">
<bool>false</bool>
</property>
</widget>
</item>
<item>
<widget class="QComboBox" name="arrayDisplayFormatComboBox">
<property name="toolTip">
<string>Array display format.</string>
</property>
<item>
<property name="text">
<string>int16</string>
</property>
</item>
<item>
<property name="text">
<string>int32</string>
</property>
</item>
<item>
<property name="text">
<string>int64</string>
</property>
</item>
2022-03-14 18:28:46 -05:00
<item>
<property name="text">
<string>unt16</string>
</property>
</item>
<item>
<property name="text">
<string>uin32</string>
</property>
</item>
<item>
<property name="text">
<string>uin64</string>
</property>
</item>
2021-11-30 16:59:42 -06:00
<item>
<property name="text">
<string>float32</string>
</property>
</item>
<item>
<property name="text">
<string>float64</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="refreshToolButton">
<property name="toolTip">
<string>Refresh the display.</string>
</property>
<property name="text">
<string>...</string>
</property>
<property name="icon">
<iconset resource="resource.qrc">
2022-03-14 18:28:46 -05:00
<normaloff>:/seer/resources/RelaxLightIcons/view-refresh.svg</normaloff>:/seer/resources/RelaxLightIcons/view-refresh.svg</iconset>
2021-11-30 16:59:42 -06:00
</property>
</widget>
</item>
</layout>
</item>
2022-03-19 15:49:40 -05:00
<item row="1" column="0">
<widget class="QSplitter" name="splitter">
<property name="sizePolicy">
<sizepolicy hsizetype="Expanding" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>100</verstretch>
</sizepolicy>
</property>
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<widget class="SeerArrayWidget" name="arrayTableWidget">
<property name="sizePolicy">
<sizepolicy hsizetype="Expanding" vsizetype="Expanding">
<horstretch>25</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
</widget>
<widget class="QZoomChartView" name="arrayChartView">
<property name="sizePolicy">
<sizepolicy hsizetype="Expanding" vsizetype="Expanding">
<horstretch>75</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
</widget>
</widget>
</item>
2021-11-30 16:59:42 -06:00
</layout>
</widget>
<customwidgets>
<customwidget>
2022-03-14 18:28:46 -05:00
<class>SeerArrayWidget</class>
<extends>QTableWidget</extends>
<header location="global">SeerArrayWidget.h</header>
2021-11-30 16:59:42 -06:00
</customwidget>
2022-03-19 15:49:40 -05:00
<customwidget>
<class>QZoomChartView</class>
<extends>QGraphicsView</extends>
<header>QZoomChartView.h</header>
</customwidget>
2021-11-30 16:59:42 -06:00
</customwidgets>
<resources>
<include location="resource.qrc"/>
</resources>
2021-11-30 16:59:42 -06:00
<connections/>
</ui>