RefactoringRope/RenameDialog.ui

Sat, 25 Jun 2022 17:55:41 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sat, 25 Jun 2022 17:55:41 +0200
branch
eric7
changeset 385
9bbd74b51d88
parent 365
f740b50380df
permissions
-rw-r--r--

Compatibility fixes for rope >= 1.2.0.

<?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>
       <property name="clearButtonEnabled">
        <bool>true</bool>
       </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="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>
       <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>

eric ide

mercurial