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>RectifierUI</class> <widget class="QDialog" name="RectifierUI"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>300</width> <height>175</height> </rect> </property> <property name="minimumSize"> <size> <width>300</width> <height>175</height> </size> </property> <property name="windowTitle"> <string>Rectifier</string> </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>10</x> <y>140</y> <width>281</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="verticalLayoutWidget"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>301</width> <height>131</height> </rect> </property> <layout class="QVBoxLayout" name="verticalLayout" stretch="0,0,0,0,0"> <item> <widget class="QCheckBox" name="cb_condense"> <property name="text"> <string>Condense triangles to quads</string> </property> <property name="checked"> <bool>true</bool> </property> </widget> </item> <item> <widget class="QCheckBox" name="cb_subst"> <property name="text"> <string>Substitute with rect primitives</string> </property> <property name="checked"> <bool>true</bool> </property> </widget> </item> <item> <widget class="QCheckBox" name="cb_condlineCheck"> <property name="text"> <string>Don't replace quads that have adj. cond. lines</string> </property> </widget> </item> <item> <widget class="QCheckBox" name="cb_colorize"> <property name="text"> <string>Colorize result</string> </property> </widget> </item> <item> <layout class="QHBoxLayout" name="horizontalLayout"> <item> <widget class="QLabel" name="label"> <property name="text"> <string>Coplanarity threshold</string> </property> </widget> </item> <item> <widget class="QDoubleSpinBox" name="dsb_coplthres"> <property name="decimals"> <number>3</number> </property> <property name="maximum"> <double>360.000000000000000</double> </property> <property name="singleStep"> <double>0.100000000000000</double> </property> </widget> </item> </layout> </item> </layout> </widget> </widget> <resources/> <connections> <connection> <sender>buttonBox</sender> <signal>accepted()</signal> <receiver>RectifierUI</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>RectifierUI</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>