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/MultiProject/PropertiesDialog.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_PropertiesDialog(object): def setupUi(self, PropertiesDialog): PropertiesDialog.setObjectName("PropertiesDialog") PropertiesDialog.resize(530, 227) PropertiesDialog.setSizeGripEnabled(True) self.vboxlayout = QtWidgets.QVBoxLayout(PropertiesDialog) self.vboxlayout.setObjectName("vboxlayout") self.gridlayout = QtWidgets.QGridLayout() self.gridlayout.setObjectName("gridlayout") self.descriptionLabel = QtWidgets.QLabel(parent=PropertiesDialog) self.descriptionLabel.setAlignment(QtCore.Qt.AlignmentFlag.AlignTop) self.descriptionLabel.setObjectName("descriptionLabel") self.gridlayout.addWidget(self.descriptionLabel, 0, 0, 1, 1) self.descriptionEdit = EricSpellCheckedTextEdit(parent=PropertiesDialog) self.descriptionEdit.setTabChangesFocus(True) self.descriptionEdit.setAcceptRichText(False) self.descriptionEdit.setObjectName("descriptionEdit") self.gridlayout.addWidget(self.descriptionEdit, 0, 1, 1, 1) self.vboxlayout.addLayout(self.gridlayout) self.buttonBox = QtWidgets.QDialogButtonBox(parent=PropertiesDialog) self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal) self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok) self.buttonBox.setObjectName("buttonBox") self.vboxlayout.addWidget(self.buttonBox) self.descriptionLabel.setBuddy(self.descriptionEdit) self.retranslateUi(PropertiesDialog) self.buttonBox.accepted.connect(PropertiesDialog.accept) # type: ignore self.buttonBox.rejected.connect(PropertiesDialog.reject) # type: ignore QtCore.QMetaObject.connectSlotsByName(PropertiesDialog) PropertiesDialog.setTabOrder(self.descriptionEdit, self.buttonBox) def retranslateUi(self, PropertiesDialog): _translate = QtCore.QCoreApplication.translate PropertiesDialog.setWindowTitle(_translate("PropertiesDialog", "Multiproject Properties")) self.descriptionLabel.setText(_translate("PropertiesDialog", "&Description:")) self.descriptionEdit.setToolTip(_translate("PropertiesDialog", "Enter description")) self.descriptionEdit.setWhatsThis(_translate("PropertiesDialog", "<b>Description</b>\n" "<p>Enter a short description for the multiproject.</p>")) from eric7.EricWidgets.EricSpellCheckedTextEdit import EricSpellCheckedTextEdit