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/vcsSubversion/SvnDialog.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_SvnDialog(object): def setupUi(self, SvnDialog): SvnDialog.setObjectName("SvnDialog") SvnDialog.resize(593, 499) SvnDialog.setSizeGripEnabled(True) self.vboxlayout = QtWidgets.QVBoxLayout(SvnDialog) self.vboxlayout.setObjectName("vboxlayout") self.outputGroup = QtWidgets.QGroupBox(parent=SvnDialog) sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Preferred, QtWidgets.QSizePolicy.Policy.Expanding) sizePolicy.setHorizontalStretch(0) sizePolicy.setVerticalStretch(2) sizePolicy.setHeightForWidth(self.outputGroup.sizePolicy().hasHeightForWidth()) self.outputGroup.setSizePolicy(sizePolicy) self.outputGroup.setObjectName("outputGroup") self.vboxlayout1 = QtWidgets.QVBoxLayout(self.outputGroup) self.vboxlayout1.setObjectName("vboxlayout1") self.resultbox = QtWidgets.QTextEdit(parent=self.outputGroup) self.resultbox.setReadOnly(True) self.resultbox.setAcceptRichText(False) self.resultbox.setObjectName("resultbox") self.vboxlayout1.addWidget(self.resultbox) self.vboxlayout.addWidget(self.outputGroup) self.errorGroup = QtWidgets.QGroupBox(parent=SvnDialog) sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Preferred, QtWidgets.QSizePolicy.Policy.Expanding) sizePolicy.setHorizontalStretch(0) sizePolicy.setVerticalStretch(1) sizePolicy.setHeightForWidth(self.errorGroup.sizePolicy().hasHeightForWidth()) self.errorGroup.setSizePolicy(sizePolicy) self.errorGroup.setObjectName("errorGroup") self.vboxlayout2 = QtWidgets.QVBoxLayout(self.errorGroup) self.vboxlayout2.setObjectName("vboxlayout2") self.errors = QtWidgets.QTextEdit(parent=self.errorGroup) self.errors.setReadOnly(True) self.errors.setAcceptRichText(False) self.errors.setObjectName("errors") self.vboxlayout2.addWidget(self.errors) self.vboxlayout.addWidget(self.errorGroup) self.inputGroup = QtWidgets.QGroupBox(parent=SvnDialog) self.inputGroup.setObjectName("inputGroup") self.gridlayout = QtWidgets.QGridLayout(self.inputGroup) self.gridlayout.setObjectName("gridlayout") spacerItem = QtWidgets.QSpacerItem(327, 29, QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Minimum) self.gridlayout.addItem(spacerItem, 1, 1, 1, 1) self.sendButton = QtWidgets.QPushButton(parent=self.inputGroup) self.sendButton.setObjectName("sendButton") self.gridlayout.addWidget(self.sendButton, 1, 2, 1, 1) self.input = QtWidgets.QLineEdit(parent=self.inputGroup) self.input.setObjectName("input") self.gridlayout.addWidget(self.input, 0, 0, 1, 3) self.passwordCheckBox = QtWidgets.QCheckBox(parent=self.inputGroup) self.passwordCheckBox.setObjectName("passwordCheckBox") self.gridlayout.addWidget(self.passwordCheckBox, 1, 0, 1, 1) self.vboxlayout.addWidget(self.inputGroup) self.buttonBox = QtWidgets.QDialogButtonBox(parent=SvnDialog) self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal) self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Close) self.buttonBox.setObjectName("buttonBox") self.vboxlayout.addWidget(self.buttonBox) self.retranslateUi(SvnDialog) QtCore.QMetaObject.connectSlotsByName(SvnDialog) SvnDialog.setTabOrder(self.resultbox, self.errors) SvnDialog.setTabOrder(self.errors, self.input) SvnDialog.setTabOrder(self.input, self.passwordCheckBox) SvnDialog.setTabOrder(self.passwordCheckBox, self.sendButton) SvnDialog.setTabOrder(self.sendButton, self.buttonBox) def retranslateUi(self, SvnDialog): _translate = QtCore.QCoreApplication.translate SvnDialog.setWindowTitle(_translate("SvnDialog", "Subversion")) self.outputGroup.setTitle(_translate("SvnDialog", "Output")) self.errorGroup.setTitle(_translate("SvnDialog", "Errors")) self.inputGroup.setTitle(_translate("SvnDialog", "Input")) self.sendButton.setToolTip(_translate("SvnDialog", "Press to send the input to the subversion process")) self.sendButton.setText(_translate("SvnDialog", "&Send")) self.sendButton.setShortcut(_translate("SvnDialog", "Alt+S")) self.input.setToolTip(_translate("SvnDialog", "Enter data to be sent to the subversion process")) self.passwordCheckBox.setToolTip(_translate("SvnDialog", "Select to switch the input field to password mode")) self.passwordCheckBox.setText(_translate("SvnDialog", "&Password Mode")) self.passwordCheckBox.setShortcut(_translate("SvnDialog", "Alt+P"))