diff -r fc72a5b922a6 -r 3be1b4662b48 RefactoringRope/RenameDialog.ui --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/RefactoringRope/RenameDialog.ui Sat Jan 29 15:10:40 2011 +0100 @@ -0,0 +1,149 @@ +<?xml version="1.0" encoding="UTF-8"?> +<ui version="4.0"> + <class>RenameDialog</class> + <widget class="QDialog" name="RenameDialog"> + <property name="geometry"> + <rect> + <x>0</x> + <y>0</y> + <width>500</width> + <height>184</height> + </rect> + </property> + <property name="windowTitle"> + <string>Rename</string> + </property> + <property name="sizeGripEnabled"> + <bool>true</bool> + </property> + <layout class="QVBoxLayout" name="verticalLayout"> + <item> + <layout class="QHBoxLayout"> + <item> + <widget class="QLabel" name="label"> + <property name="text"> + <string>New Name:</string> + </property> + </widget> + </item> + <item> + <widget class="QLineEdit" name="newNameEdit"> + <property name="toolTip"> + <string>Enter the new name</string> + </property> + </widget> + </item> + </layout> + </item> + <item> + <widget class="QCheckBox" name="allCheckBox"> + <property name="toolTip"> + <string>Select to perform the refactoring for all matching methods in class hierarchy</string> + </property> + <property name="text"> + <string>Do for all matching methods in class hierarchy</string> + </property> + </widget> + </item> + <item> + <widget class="QCheckBox" name="stringsCheckBox"> + <property name="toolTip"> + <string>Select to rename occurrences in strings and comments where the name is visible</string> + </property> + <property name="text"> + <string>Rename occurrences in strings and comments</string> + </property> + <property name="checked"> + <bool>true</bool> + </property> + </widget> + </item> + <item> + <widget class="QGroupBox" name="groupBox"> + <property name="title"> + <string>What to do about unsure occurrences?</string> + </property> + <layout class="QHBoxLayout"> + <property name="spacing"> + <number>6</number> + </property> + <property name="margin"> + <number>6</number> + </property> + <item> + <widget class="QRadioButton" name="ignoreButton"> + <property name="toolTip"> + <string>Select to ignore unsure occurrences</string> + </property> + <property name="text"> + <string>Ignore</string> + </property> + <property name="checked"> + <bool>true</bool> + </property> + </widget> + </item> + <item> + <widget class="QRadioButton" name="matchButton"> + <property name="toolTip"> + <string>Select to refactor unsure occurrences</string> + </property> + <property name="text"> + <string>Match</string> + </property> + </widget> + </item> + <item> + <widget class="QRadioButton" name="askButton"> + <property name="toolTip"> + <string>Select to ask for each unsure occurrence</string> + </property> + <property name="text"> + <string>Ask</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>newNameEdit</tabstop> + <tabstop>allCheckBox</tabstop> + <tabstop>stringsCheckBox</tabstop> + <tabstop>ignoreButton</tabstop> + <tabstop>matchButton</tabstop> + <tabstop>askButton</tabstop> + <tabstop>buttonBox</tabstop> + </tabstops> + <resources/> + <connections> + <connection> + <sender>buttonBox</sender> + <signal>rejected()</signal> + <receiver>RenameDialog</receiver> + <slot>reject()</slot> + <hints> + <hint type="sourcelabel"> + <x>316</x> + <y>260</y> + </hint> + <hint type="destinationlabel"> + <x>24</x> + <y>265</y> + </hint> + </hints> + </connection> + </connections> +</ui>