123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- <?xml version="1.0" encoding="UTF-8"?>
- <ui version="4.0">
- <class>DialogSelGaussianNoise</class>
- <widget class="QDialog" name="DialogSelGaussianNoise">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>400</width>
- <height>300</height>
- </rect>
- </property>
- <property name="windowTitle">
- <string>Dialog</string>
- </property>
- <widget class="QPushButton" name="pushButtonOk">
- <property name="geometry">
- <rect>
- <x>290</x>
- <y>250</y>
- <width>81</width>
- <height>22</height>
- </rect>
- </property>
- <property name="text">
- <string>Ok</string>
- </property>
- </widget>
- <widget class="QTextEdit" name="textEditMean">
- <property name="geometry">
- <rect>
- <x>250</x>
- <y>80</y>
- <width>121</width>
- <height>31</height>
- </rect>
- </property>
- </widget>
- <widget class="QTextEdit" name="textEditVariance">
- <property name="geometry">
- <rect>
- <x>250</x>
- <y>140</y>
- <width>121</width>
- <height>31</height>
- </rect>
- </property>
- </widget>
- <widget class="QLabel" name="label">
- <property name="geometry">
- <rect>
- <x>50</x>
- <y>80</y>
- <width>161</width>
- <height>31</height>
- </rect>
- </property>
- <property name="text">
- <string>Insert the desired Mean</string>
- </property>
- </widget>
- <widget class="QLabel" name="label_2">
- <property name="geometry">
- <rect>
- <x>40</x>
- <y>140</y>
- <width>181</width>
- <height>31</height>
- </rect>
- </property>
- <property name="text">
- <string>Insert the desired Variance</string>
- </property>
- </widget>
- <widget class="QLabel" name="label_3">
- <property name="geometry">
- <rect>
- <x>60</x>
- <y>10</y>
- <width>291</width>
- <height>51</height>
- </rect>
- </property>
- <property name="font">
- <font>
- <weight>75</weight>
- <bold>true</bold>
- </font>
- </property>
- <property name="text">
- <string>Insert the Gaussian Noise Parameters</string>
- </property>
- </widget>
- <widget class="QLabel" name="label_4">
- <property name="geometry">
- <rect>
- <x>30</x>
- <y>190</y>
- <width>361</width>
- <height>31</height>
- </rect>
- </property>
- <property name="font">
- <font>
- <italic>true</italic>
- </font>
- </property>
- <property name="text">
- <string>If no value is inserted, the default parameters
- are set to mean=0 and variance=100</string>
- </property>
- </widget>
- </widget>
- <resources/>
- <connections>
- <connection>
- <sender>pushButtonOk</sender>
- <signal>clicked()</signal>
- <receiver>DialogSelGaussianNoise</receiver>
- <slot>accept()</slot>
- <hints>
- <hint type="sourcelabel">
- <x>320</x>
- <y>230</y>
- </hint>
- <hint type="destinationlabel">
- <x>199</x>
- <y>149</y>
- </hint>
- </hints>
- </connection>
- </connections>
- </ui>
|