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/Plugins/VcsPlugins/vcsPySvn/SvnChangeListsDialog.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_SvnChangeListsDialog(object): def setupUi(self, SvnChangeListsDialog): SvnChangeListsDialog.setObjectName("SvnChangeListsDialog") SvnChangeListsDialog.resize(519, 494) SvnChangeListsDialog.setSizeGripEnabled(True) self.verticalLayout = QtWidgets.QVBoxLayout(SvnChangeListsDialog) self.verticalLayout.setObjectName("verticalLayout") self.label = QtWidgets.QLabel(parent=SvnChangeListsDialog) self.label.setObjectName("label") self.verticalLayout.addWidget(self.label) self.changeLists = QtWidgets.QListWidget(parent=SvnChangeListsDialog) sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Expanding) sizePolicy.setHorizontalStretch(0) sizePolicy.setVerticalStretch(1) sizePolicy.setHeightForWidth(self.changeLists.sizePolicy().hasHeightForWidth()) self.changeLists.setSizePolicy(sizePolicy) self.changeLists.setAlternatingRowColors(True) self.changeLists.setObjectName("changeLists") self.verticalLayout.addWidget(self.changeLists) self.filesLabel = QtWidgets.QLabel(parent=SvnChangeListsDialog) self.filesLabel.setText("") self.filesLabel.setWordWrap(True) self.filesLabel.setObjectName("filesLabel") self.verticalLayout.addWidget(self.filesLabel) self.filesList = QtWidgets.QListWidget(parent=SvnChangeListsDialog) sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Expanding) sizePolicy.setHorizontalStretch(0) sizePolicy.setVerticalStretch(2) sizePolicy.setHeightForWidth(self.filesList.sizePolicy().hasHeightForWidth()) self.filesList.setSizePolicy(sizePolicy) self.filesList.setAlternatingRowColors(True) self.filesList.setObjectName("filesList") self.verticalLayout.addWidget(self.filesList) self.buttonBox = QtWidgets.QDialogButtonBox(parent=SvnChangeListsDialog) self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal) self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Close) self.buttonBox.setObjectName("buttonBox") self.verticalLayout.addWidget(self.buttonBox) self.retranslateUi(SvnChangeListsDialog) self.buttonBox.accepted.connect(SvnChangeListsDialog.accept) # type: ignore self.buttonBox.rejected.connect(SvnChangeListsDialog.reject) # type: ignore QtCore.QMetaObject.connectSlotsByName(SvnChangeListsDialog) SvnChangeListsDialog.setTabOrder(self.changeLists, self.filesList) SvnChangeListsDialog.setTabOrder(self.filesList, self.buttonBox) def retranslateUi(self, SvnChangeListsDialog): _translate = QtCore.QCoreApplication.translate SvnChangeListsDialog.setWindowTitle(_translate("SvnChangeListsDialog", "Subversion Change Lists")) self.label.setText(_translate("SvnChangeListsDialog", "Change Lists:")) self.changeLists.setWhatsThis(_translate("SvnChangeListsDialog", "<b>Change Lists</b>\n" "<p>Select a change list here to see the associated files in the list below.</p>")) self.filesList.setWhatsThis(_translate("SvnChangeListsDialog", "<b>Files</b>\n" "<p>This shows a list of files associated with the change list selected above.</p>"))