Sat, 25 Jun 2022 17:55:41 +0200
Compatibility fixes for rope >= 1.2.0.
<?xml version="1.0" encoding="UTF-8"?> <ui version="4.0"> <class>IntroduceFactoryDialog</class> <widget class="QDialog" name="IntroduceFactoryDialog"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>500</width> <height>118</height> </rect> </property> <property name="windowTitle"> <string>Introduce Factory Method</string> </property> <property name="sizeGripEnabled"> <bool>true</bool> </property> <layout class="QVBoxLayout"> <property name="leftMargin"> <number>6</number> </property> <property name="topMargin"> <number>6</number> </property> <property name="rightMargin"> <number>6</number> </property> <property name="bottomMargin"> <number>6</number> </property> <item> <layout class="QHBoxLayout"> <item> <widget class="QLabel" name="label"> <property name="text"> <string>Factory Method Name:</string> </property> </widget> </item> <item> <widget class="QLineEdit" name="nameEdit"> <property name="toolTip"> <string>Enter the name of the factory method</string> </property> <property name="clearButtonEnabled"> <bool>true</bool> </property> </widget> </item> </layout> </item> <item> <widget class="QRadioButton" name="staticButton"> <property name="toolTip"> <string>Select to make the factory method a static method</string> </property> <property name="text"> <string>Use static method</string> </property> <property name="checked"> <bool>true</bool> </property> </widget> </item> <item> <widget class="QRadioButton" name="globalButton"> <property name="toolTip"> <string>Select to make the factory method a global function</string> </property> <property name="text"> <string>Use global function</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> <tabstops> <tabstop>nameEdit</tabstop> <tabstop>staticButton</tabstop> <tabstop>globalButton</tabstop> <tabstop>buttonBox</tabstop> </tabstops> <resources/> <connections> <connection> <sender>buttonBox</sender> <signal>rejected()</signal> <receiver>IntroduceFactoryDialog</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>