Wed, 08 Jan 2014 13:57:10 +0200
- if loading another file to replace an explicitly loaded file, this file won't get closed automatically and thus needs to be manually closed. We also need to check that it's safe to close before doing this. Also fixed a rather argh problem with ::save not using the proper path...
<?xml version="1.0" encoding="UTF-8"?> <ui version="4.0"> <class>DownloadFrom</class> <widget class="QDialog" name="DownloadFrom"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>546</width> <height>405</height> </rect> </property> <property name="windowTitle"> <string>Download from LDraw.org</string> </property> <layout class="QVBoxLayout" name="verticalLayout"> <item> <widget class="QLabel" name="label"> <property name="font"> <font> <pointsize>11</pointsize> <weight>75</weight> <bold>true</bold> </font> </property> <property name="text"> <string>Download from LDraw.org</string> </property> <property name="alignment"> <set>Qt::AlignCenter</set> </property> </widget> </item> <item> <layout class="QFormLayout" name="formLayout"> <property name="fieldGrowthPolicy"> <enum>QFormLayout::ExpandingFieldsGrow</enum> </property> <item row="0" column="0"> <widget class="QLabel" name="label_2"> <property name="text"> <string>Source:</string> </property> </widget> </item> <item row="0" column="1"> <widget class="QComboBox" name="source"> <property name="sizePolicy"> <sizepolicy hsizetype="MinimumExpanding" vsizetype="Fixed"> <horstretch>0</horstretch> <verstretch>0</verstretch> </sizepolicy> </property> <item> <property name="text"> <string>Parts tracker</string> </property> </item> <item> <property name="text"> <string>Custom URL</string> </property> </item> </widget> </item> <item row="1" column="0"> <widget class="QLabel" name="fileNameLabel"> <property name="text"> <string>File name:</string> </property> </widget> </item> <item row="1" column="1"> <widget class="QLineEdit" name="fname"/> </item> </layout> </item> <item> <widget class="QTableWidget" name="progress"> <property name="enabled"> <bool>false</bool> </property> <property name="editTriggers"> <set>QAbstractItemView::NoEditTriggers</set> </property> <property name="selectionMode"> <enum>QAbstractItemView::NoSelection</enum> </property> <attribute name="verticalHeaderVisible"> <bool>false</bool> </attribute> <column> <property name="text"> <string>File</string> </property> <property name="font"> <font> <weight>50</weight> <bold>false</bold> </font> </property> </column> <column> <property name="text"> <string>Status</string> </property> </column> </widget> </item> <item> <widget class="QDialogButtonBox" name="buttonBox"> <property name="orientation"> <enum>Qt::Horizontal</enum> </property> <property name="standardButtons"> <set>QDialogButtonBox::Abort|QDialogButtonBox::Close</set> </property> </widget> </item> </layout> </widget> <resources/> <connections> <connection> <sender>buttonBox</sender> <signal>rejected()</signal> <receiver>DownloadFrom</receiver> <slot>reject()</slot> <hints> <hint type="sourcelabel"> <x>322</x> <y>312</y> </hint> <hint type="destinationlabel"> <x>286</x> <y>274</y> </hint> </hints> </connection> </connections> </ui>