Sat, 28 Feb 2015 15:09:53 +0100
Ported the code completion and calltips support of the eric4 variant of this plug-in.
<?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>400</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> <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> <layout class="QGridLayout"> <item row="0" column="0"> <widget class="QLabel" name="label"> <property name="text"> <string>Number of errors to fix:</string> </property> </widget> </item> <item row="0" 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="0" 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> <item row="1" column="0"> <widget class="QLabel" name="label_2"> <property name="text"> <string>Time to wait for code assist:</string> </property> </widget> </item> <item row="1" column="1"> <widget class="QSpinBox" name="codeAssistTimeoutSpinBox"> <property name="toolTip"> <string>Enter the time in milliseconds after which a list with completion proposals shall be shown</string> </property> <property name="alignment"> <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set> </property> <property name="buttonSymbols"> <enum>QAbstractSpinBox::PlusMinus</enum> </property> <property name="correctionMode"> <enum>QAbstractSpinBox::CorrectToNearestValue</enum> </property> <property name="suffix"> <string> ms</string> </property> <property name="minimum"> <number>0</number> </property> <property name="maximum"> <number>999</number> </property> <property name="singleStep"> <number>10</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>40</width> <height>20</height> </size> </property> </spacer> </item> </layout> </item> <item> <widget class="QCheckBox" name="qscintillaCheckBox"> <property name="toolTip"> <string>Select to show QScintilla completions, if this plug-in fails</string> </property> <property name="text"> <string>Show QScintilla completions, if plug-in fails</string> </property> </widget> </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> </layout> </widget> <tabstops> <tabstop>ropeAutocompletionCheckBox</tabstop> <tabstop>acMaxfixesSpinBox</tabstop> <tabstop>codeAssistTimeoutSpinBox</tabstop> <tabstop>qscintillaCheckBox</tabstop> </tabstops> <resources/> <connections/> </ui>