Wed 28 Aug 21:38:52 CEST 2024

This commit is contained in:
sbosse 2024-08-28 21:41:31 +02:00
parent 2a3eef9347
commit 8e30c86882

View File

@ -0,0 +1,248 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>addEllipseDialog</class>
<widget class="QDialog" name="addEllipseDialog">
<property name="windowModality">
<enum>Qt::WindowModal</enum>
</property>
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>254</width>
<height>258</height>
</rect>
</property>
<property name="minimumSize">
<size>
<width>254</width>
<height>258</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>254</width>
<height>258</height>
</size>
</property>
<property name="windowTitle">
<string>Add Ellipse</string>
</property>
<property name="windowIcon">
<iconset resource="resources.qrc">
<normaloff>:/ellipse.png</normaloff>:/ellipse.png</iconset>
</property>
<property name="toolTip">
<string>Add Ellipse</string>
</property>
<property name="statusTip">
<string>Add Elipse</string>
</property>
<property name="locale">
<locale language="English" country="UnitedStates"/>
</property>
<property name="sizeGripEnabled">
<bool>false</bool>
</property>
<property name="modal">
<bool>false</bool>
</property>
<widget class="QDialogButtonBox" name="buttonBox">
<property name="geometry">
<rect>
<x>50</x>
<y>220</y>
<width>191</width>
<height>32</height>
</rect>
</property>
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="standardButtons">
<set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
</property>
</widget>
<widget class="QWidget" name="formLayoutWidget">
<property name="geometry">
<rect>
<x>9</x>
<y>19</y>
<width>233</width>
<height>181</height>
</rect>
</property>
<layout class="QGridLayout" name="gridLayout">
<item row="0" column="0">
<widget class="QLabel" name="centerXLabel">
<property name="text">
<string>Center X (mm)</string>
</property>
</widget>
</item>
<item row="0" column="1">
<widget class="QLineEdit" name="centerXLineEdit">
<property name="minimumSize">
<size>
<width>80</width>
<height>0</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>80</width>
<height>21</height>
</size>
</property>
</widget>
</item>
<item row="1" column="0">
<widget class="QLabel" name="centerYLabel">
<property name="text">
<string>Center Y (mm)</string>
</property>
</widget>
</item>
<item row="1" column="1">
<widget class="QLineEdit" name="centerYLineEdit">
<property name="minimumSize">
<size>
<width>80</width>
<height>0</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>80</width>
<height>16777215</height>
</size>
</property>
</widget>
</item>
<item row="2" column="0">
<widget class="QLabel" name="semiMajorAxisLabel">
<property name="text">
<string>Semi-Major Axis (mm)</string>
</property>
</widget>
</item>
<item row="2" column="1">
<widget class="QLineEdit" name="semiMajorAxisLineEdit">
<property name="minimumSize">
<size>
<width>80</width>
<height>0</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>80</width>
<height>16777215</height>
</size>
</property>
</widget>
</item>
<item row="3" column="0">
<widget class="QLabel" name="semiMinorAxisLabel">
<property name="text">
<string>Semi-Minor Axis (mm)</string>
</property>
</widget>
</item>
<item row="3" column="1">
<widget class="QLineEdit" name="semiMinorAxisLineEdit">
<property name="minimumSize">
<size>
<width>80</width>
<height>0</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>80</width>
<height>16777215</height>
</size>
</property>
</widget>
</item>
<item row="4" column="0">
<widget class="QLabel" name="angleLabel">
<property name="text">
<string>Angle</string>
</property>
</widget>
</item>
<item row="4" column="1">
<widget class="QLineEdit" name="angleLineEdit">
<property name="minimumSize">
<size>
<width>80</width>
<height>0</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>80</width>
<height>16777215</height>
</size>
</property>
</widget>
</item>
<item row="5" column="0">
<widget class="QLabel" name="labelLabel">
<property name="text">
<string>Label</string>
</property>
</widget>
</item>
<item row="5" column="1">
<widget class="QSpinBox" name="labelSpinBox">
<property name="maximum">
<number>240</number>
</property>
<property name="singleStep">
<number>40</number>
</property>
</widget>
</item>
</layout>
</widget>
</widget>
<resources>
<include location="resources.qrc"/>
</resources>
<connections>
<connection>
<sender>buttonBox</sender>
<signal>accepted()</signal>
<receiver>addEllipseDialog</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>addEllipseDialog</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>