Mon, 07 Nov 2022 17:19:58 +0100
Corrected/acknowledged some bad import style and removed some obsolete code.
<?xml version="1.0" encoding="UTF-8"?> <ui version="4.0"> <class>MakePropertiesDialog</class> <widget class="QDialog" name="MakePropertiesDialog"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>600</width> <height>266</height> </rect> </property> <property name="windowTitle"> <string>Make Properties</string> </property> <property name="sizeGripEnabled"> <bool>true</bool> </property> <layout class="QVBoxLayout" name="verticalLayout"> <item> <widget class="QLabel" name="label"> <property name="text"> <string>'make' Executable (leave empty to use global 'make'):</string> </property> </widget> </item> <item> <widget class="EricPathPicker" name="makePicker" native="true"> <property name="sizePolicy"> <sizepolicy hsizetype="Expanding" vsizetype="Preferred"> <horstretch>0</horstretch> <verstretch>0</verstretch> </sizepolicy> </property> <property name="focusPolicy"> <enum>Qt::StrongFocus</enum> </property> <property name="toolTip"> <string>Enter the executable name of the make utility</string> </property> </widget> </item> <item> <widget class="QLabel" name="label_2"> <property name="text"> <string>'makefile' path or directory (without file name 'makefile' will be used):</string> </property> </widget> </item> <item> <widget class="EricPathPicker" name="makefilePicker" native="true"> <property name="sizePolicy"> <sizepolicy hsizetype="Expanding" vsizetype="Preferred"> <horstretch>0</horstretch> <verstretch>0</verstretch> </sizepolicy> </property> <property name="focusPolicy"> <enum>Qt::StrongFocus</enum> </property> <property name="toolTip"> <string>Enter the name and/or path of the makefile</string> </property> </widget> </item> <item> <widget class="QLabel" name="label_3"> <property name="text"> <string>Make Target:</string> </property> </widget> </item> <item> <widget class="QLineEdit" name="makeTargetEdit"> <property name="toolTip"> <string>Enter the make target to be built</string> </property> <property name="clearButtonEnabled"> <bool>true</bool> </property> </widget> </item> <item> <widget class="QLabel" name="label_4"> <property name="text"> <string>Make Command Parameters (enclose parameters containing spaces in ""):</string> </property> <property name="wordWrap"> <bool>true</bool> </property> </widget> </item> <item> <widget class="QLineEdit" name="makeParametersEdit"> <property name="toolTip"> <string>Enter the command parameters for make</string> </property> <property name="clearButtonEnabled"> <bool>true</bool> </property> </widget> </item> <item> <widget class="QCheckBox" name="testOnlyCheckBox"> <property name="toolTip"> <string>Select to just test for changes needing a make run</string> </property> <property name="text"> <string>Test for changes only when run automatically</string> </property> </widget> </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> <customwidgets> <customwidget> <class>EricPathPicker</class> <extends>QWidget</extends> <header>eric7/EricWidgets/EricPathPicker.h</header> <container>1</container> </customwidget> </customwidgets> <resources/> <connections> <connection> <sender>buttonBox</sender> <signal>accepted()</signal> <receiver>MakePropertiesDialog</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>MakePropertiesDialog</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>