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>MoveDialog</class> <widget class="QDialog" name="MoveDialog"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>500</width> <height>108</height> </rect> </property> <property name="sizeGripEnabled"> <bool>true</bool> </property> <layout class="QVBoxLayout" name="verticalLayout"> <item> <widget class="QStackedWidget" name="moveStackWidget"> <property name="currentIndex"> <number>2</number> </property> <widget class="QWidget" name="frontPage"/> <widget class="QWidget" name="moveMethodPage"> <layout class="QGridLayout" name="gridLayout"> <property name="leftMargin"> <number>0</number> </property> <property name="topMargin"> <number>0</number> </property> <property name="rightMargin"> <number>0</number> </property> <property name="bottomMargin"> <number>0</number> </property> <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> <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> </layout> </widget> <widget class="QWidget" name="moveGlobalMethodOrModulePage"> <layout class="QVBoxLayout" name="verticalLayout_2"> <property name="leftMargin"> <number>0</number> </property> <property name="topMargin"> <number>0</number> </property> <property name="rightMargin"> <number>0</number> </property> <property name="bottomMargin"> <number>0</number> </property> <item> <layout class="QHBoxLayout" name="horizontalLayout"> <item> <widget class="QLabel" name="destinationLabel"/> </item> <item> <widget class="QLineEdit" name="destinationEdit"> <property name="clearButtonEnabled"> <bool>true</bool> </property> </widget> </item> <item> <widget class="QPushButton" name="selectButton"> <property name="text"> <string>...</string> </property> </widget> </item> </layout> </item> <item> <spacer name="verticalSpacer"> <property name="orientation"> <enum>Qt::Vertical</enum> </property> <property name="sizeHint" stdset="0"> <size> <width>20</width> <height>21</height> </size> </property> </spacer> </item> </layout> </widget> </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>attributeEdit</tabstop> <tabstop>methodEdit</tabstop> <tabstop>destinationEdit</tabstop> <tabstop>selectButton</tabstop> </tabstops> <resources/> <connections> <connection> <sender>buttonBox</sender> <signal>rejected()</signal> <receiver>MoveDialog</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>