diff -r 8cee612bcc28 -r 0fdfae822ca7 RefactoringRope/IntroduceFactoryDialog.ui --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/RefactoringRope/IntroduceFactoryDialog.ui Sun Jan 30 14:49:37 2011 +0100 @@ -0,0 +1,101 @@ +<?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="margin"> + <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> + </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>