Wed 28 Aug 21:38:52 CEST 2024

This commit is contained in:
sbosse 2024-08-28 21:41:27 +02:00
parent 61784acfd0
commit 86f3d5bb1c

View File

@ -0,0 +1,234 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>runSimulationDialog</class>
<widget class="QDialog" name="runSimulationDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>275</width>
<height>340</height>
</rect>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Minimum">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>275</width>
<height>340</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>275</width>
<height>340</height>
</size>
</property>
<property name="windowTitle">
<string>Dialog</string>
</property>
<property name="windowIcon">
<iconset resource="resources.qrc">
<normaloff>:/runGL.png</normaloff>:/runGL.png</iconset>
</property>
<property name="sizeGripEnabled">
<bool>false</bool>
</property>
<widget class="QWidget" name="verticalLayoutWidget">
<property name="geometry">
<rect>
<x>10</x>
<y>10</y>
<width>251</width>
<height>326</height>
</rect>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<property name="spacing">
<number>15</number>
</property>
<property name="topMargin">
<number>10</number>
</property>
<item>
<widget class="QCheckBox" name="viewCheckBox">
<property name="text">
<string>Enable View-Mode Simulation</string>
</property>
</widget>
</item>
<item>
<widget class="QCheckBox" name="receiverCheckBox">
<property name="text">
<string>Enable View-Mode Receiver Signal</string>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="snapshotsPushButton">
<property name="minimumSize">
<size>
<width>0</width>
<height>40</height>
</size>
</property>
<property name="toolTip">
<string>Enable Snapshots</string>
</property>
<property name="text">
<string>Enable Snapshots</string>
</property>
<property name="icon">
<iconset resource="resources.qrc">
<normaloff>:/snapshots.png</normaloff>:/snapshots.png</iconset>
</property>
<property name="iconSize">
<size>
<width>20</width>
<height>20</height>
</size>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="stepsLabel">
<property name="text">
<string>Simulation Time Steps:</string>
</property>
</widget>
</item>
<item>
<layout class="QFormLayout" name="formLayout">
<property name="fieldGrowthPolicy">
<enum>QFormLayout::FieldsStayAtSizeHint</enum>
</property>
<item row="0" column="0">
<widget class="QLabel" name="snapshotStepLabel">
<property name="text">
<string>Snapshot Step</string>
</property>
</widget>
</item>
<item row="0" column="1">
<widget class="QSpinBox" name="snapshotStepSpinBox">
<property name="minimum">
<number>1</number>
</property>
<property name="maximum">
<number>1000</number>
</property>
<property name="singleStep">
<number>1</number>
</property>
<property name="value">
<number>100</number>
</property>
</widget>
</item>
<item row="1" column="0">
<widget class="QLabel" name="visualizacionRangeLabel">
<property name="text">
<string>VIsualizacion Range</string>
</property>
</widget>
</item>
<item row="1" column="1">
<widget class="QSpinBox" name="visualizacionRangeSpinBox">
<property name="suffix">
<string>dB</string>
</property>
<property name="minimum">
<number>10</number>
</property>
<property name="maximum">
<number>80</number>
</property>
<property name="singleStep">
<number>10</number>
</property>
<property name="value">
<number>60</number>
</property>
</widget>
</item>
<item row="2" column="0">
<widget class="QLabel" name="enableSavingFieldsLabel">
<property name="text">
<string>Enable Saving Vx, Vy Fields</string>
</property>
</widget>
</item>
<item row="2" column="1">
<widget class="QCheckBox" name="enableSavingFieldsCheckBox"/>
</item>
</layout>
</item>
<item>
<layout class="QHBoxLayout" name="colormapLayout">
<item>
<widget class="QComboBox" name="colormapComboBox">
<property name="maximumSize">
<size>
<width>80</width>
<height>16777215</height>
</size>
</property>
</widget>
</item>
</layout>
</item>
<item>
<widget class="QDialogButtonBox" name="buttonBox">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="standardButtons">
<set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
</property>
</widget>
</item>
</layout>
</widget>
</widget>
<resources>
<include location="resources.qrc"/>
</resources>
<connections>
<connection>
<sender>buttonBox</sender>
<signal>accepted()</signal>
<receiver>runSimulationDialog</receiver>
<slot>accept()</slot>
<hints>
<hint type="sourcelabel">
<x>248</x>
<y>254</y>
</hint>
<hint type="destinationlabel">
<x>157</x>
<y>274</y>
</hint>
</hints>
</connection>
<connection>
<sender>buttonBox</sender>
<signal>rejected()</signal>
<receiver>runSimulationDialog</receiver>
<slot>reject()</slot>
<hints>
<hint type="sourcelabel">
<x>316</x>
<y>260</y>
</hint>
<hint type="destinationlabel">
<x>286</x>
<y>274</y>
</hint>
</hints>
</connection>
</connections>
</ui>