Fri, 16 Feb 2024 16:48:32 +0100
Made the coverage and file system server interfaces more resilient against not being connected.
<?xml version="1.0" encoding="UTF-8"?> <ui version="4.0"> <class>EricServerConnectionDialog</class> <widget class="QDialog" name="EricServerConnectionDialog"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>400</width> <height>169</height> </rect> </property> <property name="windowTitle"> <string>eric-ide Server Connection</string> </property> <property name="sizeGripEnabled"> <bool>true</bool> </property> <layout class="QGridLayout" name="gridLayout"> <item row="0" column="0"> <widget class="QLabel" name="nameLabel"> <property name="text"> <string>Name:</string> </property> </widget> </item> <item row="0" column="1" colspan="2"> <widget class="QLineEdit" name="nameEdit"> <property name="toolTip"> <string>Enter the name for the eric-ide server connection profile.</string> </property> <property name="clearButtonEnabled"> <bool>true</bool> </property> </widget> </item> <item row="1" column="0"> <widget class="QLabel" name="label"> <property name="text"> <string>Hostname:</string> </property> </widget> </item> <item row="1" column="1" colspan="2"> <widget class="QLineEdit" name="hostnameEdit"> <property name="toolTip"> <string>Enter the hostname or IP address of the eric-ide server to connect to.</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>Port:</string> </property> </widget> </item> <item row="2" column="1"> <widget class="QSpinBox" name="portSpinBox"> <property name="toolTip"> <string>Enter the port number the eric-ide server listens on (default: 42024).</string> </property> <property name="wrapping"> <bool>true</bool> </property> <property name="alignment"> <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set> </property> <property name="specialValueText"> <string>default</string> </property> <property name="accelerated"> <bool>true</bool> </property> <property name="showGroupSeparator" stdset="0"> <bool>true</bool> </property> <property name="minimum"> <number>1024</number> </property> <property name="maximum"> <number>65535</number> </property> <property name="value"> <number>1024</number> </property> </widget> </item> <item row="2" column="2"> <spacer name="horizontalSpacer"> <property name="orientation"> <enum>Qt::Horizontal</enum> </property> <property name="sizeHint" stdset="0"> <size> <width>240</width> <height>20</height> </size> </property> </spacer> </item> <item row="3" column="0"> <widget class="QLabel" name="label_3"> <property name="text"> <string>Timeout:</string> </property> </widget> </item> <item row="3" column="1"> <widget class="QSpinBox" name="timeoutSpinBox"> <property name="alignment"> <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set> </property> <property name="specialValueText"> <string>default</string> </property> <property name="suffix"> <string> s</string> </property> <property name="maximum"> <number>60</number> </property> </widget> </item> <item row="4" column="0" colspan="3"> <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>nameEdit</tabstop> <tabstop>hostnameEdit</tabstop> <tabstop>portSpinBox</tabstop> <tabstop>timeoutSpinBox</tabstop> </tabstops> <resources/> <connections> <connection> <sender>buttonBox</sender> <signal>accepted()</signal> <receiver>EricServerConnectionDialog</receiver> <slot>accept()</slot> <hints> <hint type="sourcelabel"> <x>248</x> <y>254</y> </hint> <hint type="destinationlabel"> <x>157</x> <y>274</y> </hint> </hints> </connection> <connection> <sender>buttonBox</sender> <signal>rejected()</signal> <receiver>EricServerConnectionDialog</receiver> <slot>reject()</slot> <hints> <hint type="sourcelabel"> <x>316</x> <y>260</y> </hint> <hint type="destinationlabel"> <x>286</x> <y>274</y> </hint> </hints> </connection> </connections> </ui>