Sun, 30 Jan 2011 14:02:31 +0100
Added the 'move' refactoring functions.
<?xml version="1.0" encoding="UTF-8"?> <ui version="4.0"> <class>MoveMethodDialog</class> <widget class="QDialog" name="MoveMethodDialog"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>500</width> <height>92</height> </rect> </property> <property name="windowTitle"> <string>Move Method</string> </property> <property name="sizeGripEnabled"> <bool>true</bool> </property> <layout class="QVBoxLayout"> <property name="spacing"> <number>6</number> </property> <property name="margin"> <number>6</number> </property> <item> <layout class="QGridLayout"> <property name="spacing"> <number>6</number> </property> <item row="0" column="0"> <widget class="QLabel" name="label"> <property name="text"> <string>Destination Attribute:</string> </property> </widget> </item> <item row="0" column="1"> <widget class="QLineEdit" name="attributeEdit"> <property name="toolTip"> <string>Enter the name of the attribute to move to</string> </property> </widget> </item> <item row="1" column="0"> <widget class="QLabel" name="label_2"> <property name="text"> <string>New Method Name:</string> </property> </widget> </item> <item row="1" column="1"> <widget class="QLineEdit" name="methodEdit"> <property name="toolTip"> <string>Enter the new method name</string> </property> </widget> </item> </layout> </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>attributeEdit</tabstop> <tabstop>methodEdit</tabstop> <tabstop>buttonBox</tabstop> </tabstops> <resources/> <connections> <connection> <sender>buttonBox</sender> <signal>rejected()</signal> <receiver>MoveMethodDialog</receiver> <slot>reject()</slot> <hints> <hint type="sourcelabel"> <x>292</x> <y>84</y> </hint> <hint type="destinationlabel"> <x>286</x> <y>95</y> </hint> </hints> </connection> </connections> </ui>