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.
# Form implementation generated from reading ui file 'src/eric7/Preferences/ProgramsDialog.ui' # # Created by: PyQt6 UI code generator 6.7.0 # # WARNING: Any manual changes made to this file will be lost when pyuic6 is # run again. Do not edit this file unless you know what you are doing. from PyQt6 import QtCore, QtGui, QtWidgets class Ui_ProgramsDialog(object): def setupUi(self, ProgramsDialog): ProgramsDialog.setObjectName("ProgramsDialog") ProgramsDialog.resize(700, 570) self.verticalLayout = QtWidgets.QVBoxLayout(ProgramsDialog) self.verticalLayout.setObjectName("verticalLayout") self.programsList = QtWidgets.QTreeWidget(parent=ProgramsDialog) self.programsList.setRootIsDecorated(False) self.programsList.setObjectName("programsList") self.verticalLayout.addWidget(self.programsList) self.horizontalLayout = QtWidgets.QHBoxLayout() self.horizontalLayout.setObjectName("horizontalLayout") self.label = QtWidgets.QLabel(parent=ProgramsDialog) self.label.setObjectName("label") self.horizontalLayout.addWidget(self.label) self.showComboBox = QtWidgets.QComboBox(parent=ProgramsDialog) self.showComboBox.setObjectName("showComboBox") self.horizontalLayout.addWidget(self.showComboBox) self.buttonBox = QtWidgets.QDialogButtonBox(parent=ProgramsDialog) self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal) self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Close) self.buttonBox.setObjectName("buttonBox") self.horizontalLayout.addWidget(self.buttonBox) self.verticalLayout.addLayout(self.horizontalLayout) self.retranslateUi(ProgramsDialog) self.buttonBox.accepted.connect(ProgramsDialog.close) # type: ignore self.buttonBox.rejected.connect(ProgramsDialog.close) # type: ignore QtCore.QMetaObject.connectSlotsByName(ProgramsDialog) def retranslateUi(self, ProgramsDialog): _translate = QtCore.QCoreApplication.translate ProgramsDialog.setWindowTitle(_translate("ProgramsDialog", "External Tools")) self.programsList.setSortingEnabled(True) self.programsList.headerItem().setText(0, _translate("ProgramsDialog", "Path")) self.programsList.headerItem().setText(1, _translate("ProgramsDialog", "Version")) self.label.setText(_translate("ProgramsDialog", "Show:")) self.showComboBox.setToolTip(_translate("ProgramsDialog", "Select the kind of tools to show"))