Mon, 17 Oct 2022 16:45:23 +0200
Enhanced the default configuration handling (for refactoring and code assist).
<?xml version="1.0" encoding="UTF-8"?> <ui version="4.0"> <class>AutoCompletionRopePage</class> <widget class="QWidget" name="AutoCompletionRopePage"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>440</width> <height>350</height> </rect> </property> <layout class="QVBoxLayout" name="verticalLayout"> <item> <widget class="QLabel" name="headerLabel"> <property name="text"> <string><b>Configure Rope Autocompletion</b></string> </property> </widget> </item> <item> <widget class="Line" name="line15"> <property name="frameShape"> <enum>QFrame::HLine</enum> </property> <property name="frameShadow"> <enum>QFrame::Sunken</enum> </property> <property name="orientation"> <enum>Qt::Horizontal</enum> </property> </widget> </item> <item> <layout class="QGridLayout" name="gridLayout"> <item row="0" column="0" colspan="3"> <widget class="QCheckBox" name="ropeAutocompletionCheckBox"> <property name="toolTip"> <string>Select, whether the rope autocompletion support shall be enabled.</string> </property> <property name="text"> <string>Enable autocompletion</string> </property> </widget> </item> <item row="1" column="0"> <widget class="QLabel" name="label"> <property name="text"> <string>Number of errors to fix:</string> </property> </widget> </item> <item row="1" column="1"> <widget class="QSpinBox" name="acMaxfixesSpinBox"> <property name="toolTip"> <string>Enter the number of errors to fix before giving up</string> </property> <property name="alignment"> <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set> </property> <property name="buttonSymbols"> <enum>QAbstractSpinBox::PlusMinus</enum> </property> <property name="minimum"> <number>1</number> </property> <property name="maximum"> <number>1000</number> </property> </widget> </item> <item row="1" column="2"> <spacer> <property name="orientation"> <enum>Qt::Horizontal</enum> </property> <property name="sizeHint" stdset="0"> <size> <width>111</width> <height>23</height> </size> </property> </spacer> </item> </layout> </item> <item> <spacer> <property name="orientation"> <enum>Qt::Vertical</enum> </property> <property name="sizeHint" stdset="0"> <size> <width>221</width> <height>82</height> </size> </property> </spacer> </item> <item> <widget class="QPushButton" name="editPython3Button"> <property name="toolTip"> <string>Press to edit the rope configuration for Python3</string> </property> <property name="text"> <string>Edit Python 3 rope configuration</string> </property> </widget> </item> <item> <widget class="QPushButton" name="createPython3Button"> <property name="toolTip"> <string>Press to create a new rope default configuration for Python3</string> </property> <property name="text"> <string>Create a Python3 rope configuration</string> </property> </widget> </item> </layout> </widget> <tabstops> <tabstop>ropeAutocompletionCheckBox</tabstop> <tabstop>acMaxfixesSpinBox</tabstop> <tabstop>editPython3Button</tabstop> <tabstop>createPython3Button</tabstop> </tabstops> <resources/> <connections/> </ui>