Wed, 08 Jan 2014 13:43:39 +0200
- corrected relationships between documents: opening a main file with the same name as another document is to overload it and editing the document is to invalidate its cache so that it gets rendered properly in other documents possibly referencing it.
<?xml version="1.0" encoding="UTF-8"?> <ui version="4.0"> <class>YtruderUI</class> <widget class="QDialog" name="YtruderUI"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>340</width> <height>170</height> </rect> </property> <property name="windowTitle"> <string>Ytruder</string> </property> <layout class="QVBoxLayout" name="verticalLayout"> <item> <layout class="QHBoxLayout" name="horizontalLayout"> <item> <widget class="QGroupBox" name="groupBox"> <property name="title"> <string>Extrusion Mode</string> </property> <layout class="QVBoxLayout" name="verticalLayout_2"> <item> <widget class="QRadioButton" name="mode_distance"> <property name="text"> <string>Distance</string> </property> <property name="checked"> <bool>true</bool> </property> </widget> </item> <item> <widget class="QRadioButton" name="mode_symmetry"> <property name="text"> <string>Symmetry</string> </property> </widget> </item> <item> <widget class="QRadioButton" name="mode_projection"> <property name="text"> <string>Projection</string> </property> </widget> </item> <item> <widget class="QRadioButton" name="mode_radial"> <property name="text"> <string>Radial</string> </property> </widget> </item> </layout> </widget> </item> <item> <layout class="QVBoxLayout" name="verticalLayout_4"> <item> <widget class="QGroupBox" name="groupBox_2"> <property name="title"> <string>Axis</string> </property> <layout class="QHBoxLayout" name="horizontalLayout_2"> <item> <widget class="QRadioButton" name="axis_x"> <property name="text"> <string>X</string> </property> </widget> </item> <item> <widget class="QRadioButton" name="axis_y"> <property name="text"> <string>Y</string> </property> <property name="checked"> <bool>true</bool> </property> </widget> </item> <item> <widget class="QRadioButton" name="axis_z"> <property name="text"> <string>Z</string> </property> </widget> </item> </layout> </widget> </item> <item> <layout class="QFormLayout" name="formLayout_2"> <item row="0" column="0"> <widget class="QLabel" name="label"> <property name="text"> <string>Plane depth:</string> </property> </widget> </item> <item row="1" column="0"> <widget class="QLabel" name="label_2"> <property name="text"> <string>Line threshold angle:</string> </property> </widget> </item> <item row="0" column="1"> <widget class="QDoubleSpinBox" name="planeDepth"> <property name="minimumSize"> <size> <width>85</width> <height>0</height> </size> </property> <property name="decimals"> <number>3</number> </property> <property name="minimum"> <double>-10000.000000000000000</double> </property> <property name="maximum"> <double>10000.000000000000000</double> </property> </widget> </item> <item row="1" column="1"> <widget class="QDoubleSpinBox" name="condAngle"> <property name="minimumSize"> <size> <width>85</width> <height>0</height> </size> </property> <property name="suffix"> <string>°</string> </property> <property name="decimals"> <number>3</number> </property> <property name="maximum"> <double>360.000000000000000</double> </property> <property name="value"> <double>30.000000000000000</double> </property> </widget> </item> </layout> </item> </layout> </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> <resources/> <connections> <connection> <sender>buttonBox</sender> <signal>accepted()</signal> <receiver>YtruderUI</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>YtruderUI</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>