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>HgQueuesRenamePatchDialog</class> <widget class="QDialog" name="HgQueuesRenamePatchDialog"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>400</width> <height>174</height> </rect> </property> <property name="windowTitle"> <string>Rename Patch</string> </property> <property name="sizeGripEnabled"> <bool>true</bool> </property> <layout class="QVBoxLayout" name="verticalLayout_2"> <item> <layout class="QHBoxLayout" name="horizontalLayout"> <item> <widget class="QLabel" name="label"> <property name="text"> <string>New Name:</string> </property> </widget> </item> <item> <widget class="QLineEdit" name="nameEdit"> <property name="toolTip"> <string>Enter the new name for the selected patch</string> </property> </widget> </item> </layout> </item> <item> <widget class="QGroupBox" name="groupBox"> <property name="title"> <string>Patch</string> </property> <layout class="QVBoxLayout" name="verticalLayout"> <item> <widget class="QRadioButton" name="currentButton"> <property name="toolTip"> <string>Select to rename the current patch</string> </property> <property name="text"> <string notr="true">Current Patch</string> </property> <property name="checked"> <bool>true</bool> </property> </widget> </item> <item> <widget class="QRadioButton" name="namedButton"> <property name="toolTip"> <string>Select to rename the selected named patch</string> </property> <property name="text"> <string>Named Patch</string> </property> </widget> </item> <item> <widget class="QComboBox" name="nameCombo"> <property name="enabled"> <bool>false</bool> </property> <property name="toolTip"> <string>Select the patch to be renamed</string> </property> </widget> </item> </layout> </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> <tabstops> <tabstop>nameEdit</tabstop> <tabstop>currentButton</tabstop> <tabstop>namedButton</tabstop> <tabstop>nameCombo</tabstop> <tabstop>buttonBox</tabstop> </tabstops> <resources/> <connections> <connection> <sender>buttonBox</sender> <signal>accepted()</signal> <receiver>HgQueuesRenamePatchDialog</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>HgQueuesRenamePatchDialog</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> <connection> <sender>namedButton</sender> <signal>toggled(bool)</signal> <receiver>nameCombo</receiver> <slot>setEnabled(bool)</slot> <hints> <hint type="sourcelabel"> <x>59</x> <y>106</y> </hint> <hint type="destinationlabel"> <x>63</x> <y>136</y> </hint> </hints> </connection> </connections> </ui>