RefactoringRope/GetterSetterDialog.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>GetterSetterDialog</class>
 <widget class="QDialog" name="GetterSetterDialog">
  <property name="geometry">
   <rect>
    <x>0</x>
    <y>0</y>
    <width>500</width>
    <height>132</height>
   </rect>
  </property>
  <property name="windowTitle">
   <string>Getter and Setter Method Names</string>
  </property>
  <layout class="QGridLayout">
   <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 row="0" column="0" colspan="2">
    <widget class="QCheckBox" name="typeCheckBox">
     <property name="toolTip">
      <string>Select to create getter and setter method names with an underscore</string>
     </property>
     <property name="text">
      <string>Use underscore as separator</string>
     </property>
    </widget>
   </item>
   <item row="1" column="0">
    <widget class="QLabel" name="label">
     <property name="text">
      <string>Getter:</string>
     </property>
    </widget>
   </item>
   <item row="1" column="1">
    <widget class="QLineEdit" name="getterEdit">
     <property name="toolTip">
      <string>Enter the name of the getter method</string>
     </property>
     <property name="clearButtonEnabled">
      <bool>true</bool>
     </property>
    </widget>
   </item>
   <item row="2" column="0">
    <widget class="QLabel" name="label_2">
     <property name="text">
      <string>Setter:</string>
     </property>
    </widget>
   </item>
   <item row="2" column="1">
    <widget class="QLineEdit" name="setterEdit">
     <property name="toolTip">
      <string>Enter the name of the setter method</string>
     </property>
     <property name="clearButtonEnabled">
      <bool>true</bool>
     </property>
    </widget>
   </item>
   <item row="3" column="0" colspan="2">
    <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>typeCheckBox</tabstop>
  <tabstop>getterEdit</tabstop>
  <tabstop>setterEdit</tabstop>
  <tabstop>buttonBox</tabstop>
 </tabstops>
 <resources/>
 <connections>
  <connection>
   <sender>buttonBox</sender>
   <signal>accepted()</signal>
   <receiver>GetterSetterDialog</receiver>
   <slot>accept()</slot>
   <hints>
    <hint type="sourcelabel">
     <x>224</x>
     <y>113</y>
    </hint>
    <hint type="destinationlabel">
     <x>157</x>
     <y>131</y>
    </hint>
   </hints>
  </connection>
  <connection>
   <sender>buttonBox</sender>
   <signal>rejected()</signal>
   <receiver>GetterSetterDialog</receiver>
   <slot>reject()</slot>
   <hints>
    <hint type="sourcelabel">
     <x>292</x>
     <y>119</y>
    </hint>
    <hint type="destinationlabel">
     <x>286</x>
     <y>131</y>
    </hint>
   </hints>
  </connection>
 </connections>
</ui>

eric ide

mercurial