Sat, 26 Apr 2025 12:34:32 +0200
MicroPython
- Added a configuration option to disable the support for the no longer produced Pimoroni Pico Wireless Pack.
<?xml version="1.0" encoding="UTF-8"?> <ui version="4.0"> <class>EditorSyntaxPage</class> <widget class="QWidget" name="EditorSyntaxPage"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>500</width> <height>500</height> </rect> </property> <property name="windowTitle"> <string notr="true"/> </property> <layout class="QVBoxLayout" name="verticalLayout_3"> <item> <widget class="QLabel" name="headerLabel"> <property name="text"> <string><b>Configure Code Checker settings</b></string> </property> </widget> </item> <item> <widget class="Line" name="line2"> <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="QGroupBox" name="automaticSyntaxCheckCheckBox"> <property name="toolTip"> <string>Select, whether source files should be checked automatically for syntax errors</string> </property> <property name="whatsThis"> <string><b>Automatic Syntax Check</b><p>Select to enable the automatic syntax checker. The syntax is checked, when a file is loaded or saved or the programming language of the editor is selected.</p></string> </property> <property name="title"> <string>Automatic Syntax Check</string> </property> <layout class="QVBoxLayout" name="verticalLayout_2"> <item> <widget class="QGroupBox" name="onlineCheckBox"> <property name="toolTip"> <string>Select to enable the online syntax checker</string> </property> <property name="whatsThis"> <string><b>Online Syntax Check</b><p>Select this to enable syntax checks while typing. The check is performed, if typing is interrupted for the configured timeout period.</p></string> </property> <property name="title"> <string>Online Syntax Check</string> </property> <property name="checkable"> <bool>true</bool> </property> <layout class="QHBoxLayout" name="horizontalLayout"> <item> <widget class="QLabel" name="label"> <property name="text"> <string>Timeout Interval:</string> </property> </widget> </item> <item> <widget class="QSpinBox" name="onlineTimeoutSpinBox"> <property name="toolTip"> <string>Enter the timeout for the online syntax checker</string> </property> <property name="whatsThis"> <string><b>Timeout Interval</b><p>Enter the timeout interval for the online syntax check. The check is performed, if typing is interrupted for the configured timeout period.</p></string> </property> <property name="alignment"> <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set> </property> <property name="buttonSymbols"> <enum>QAbstractSpinBox::PlusMinus</enum> </property> <property name="suffix"> <string> s</string> </property> <property name="value"> <number>5</number> </property> </widget> </item> <item> <spacer name="horizontalSpacer"> <property name="orientation"> <enum>Qt::Horizontal</enum> </property> <property name="sizeHint" stdset="0"> <size> <width>205</width> <height>20</height> </size> </property> </spacer> </item> </layout> </widget> </item> <item> <widget class="QGroupBox" name="groupBox_2"> <property name="title"> <string>PyFlakes</string> </property> <layout class="QVBoxLayout" name="verticalLayout"> <item> <widget class="QCheckBox" name="includeCheckBox"> <property name="toolTip"> <string>Select to include a PyFlakes check after the syntax check</string> </property> <property name="text"> <string>Include PyFlakes Checks after syntax check</string> </property> </widget> </item> <item> <widget class="QCheckBox" name="ignoreStarImportCheckBox"> <property name="toolTip"> <string>Select to suppress star import warnings</string> </property> <property name="text"> <string>Suppress star import warnings</string> </property> </widget> </item> <item> <widget class="QLabel" name="label_2"> <property name="text"> <string>Additional 'builtins' Names:</string> </property> </widget> </item> <item> <widget class="QPlainTextEdit" name="builtinsEdit"> <property name="toolTip"> <string>Enter additional 'builtins' names separated by whitespace.</string> </property> </widget> </item> </layout> </widget> </item> </layout> </widget> </item> <item> <spacer name="verticalSpacer"> <property name="orientation"> <enum>Qt::Vertical</enum> </property> <property name="sizeHint" stdset="0"> <size> <width>20</width> <height>108</height> </size> </property> </spacer> </item> </layout> </widget> <tabstops> <tabstop>automaticSyntaxCheckCheckBox</tabstop> <tabstop>onlineCheckBox</tabstop> <tabstop>onlineTimeoutSpinBox</tabstop> <tabstop>includeCheckBox</tabstop> <tabstop>ignoreStarImportCheckBox</tabstop> <tabstop>builtinsEdit</tabstop> </tabstops> <resources/> <connections/> </ui>