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/SvnCopyDialog.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_SvnCopyDialog(object): def setupUi(self, SvnCopyDialog): SvnCopyDialog.setObjectName("SvnCopyDialog") SvnCopyDialog.resize(409, 120) SvnCopyDialog.setSizeGripEnabled(True) self.gridLayout = QtWidgets.QGridLayout(SvnCopyDialog) self.gridLayout.setObjectName("gridLayout") self.textLabel1 = QtWidgets.QLabel(parent=SvnCopyDialog) self.textLabel1.setObjectName("textLabel1") self.gridLayout.addWidget(self.textLabel1, 0, 0, 1, 1) self.sourceEdit = QtWidgets.QLineEdit(parent=SvnCopyDialog) self.sourceEdit.setReadOnly(True) self.sourceEdit.setObjectName("sourceEdit") self.gridLayout.addWidget(self.sourceEdit, 0, 1, 1, 1) self.textLabel2 = QtWidgets.QLabel(parent=SvnCopyDialog) self.textLabel2.setObjectName("textLabel2") self.gridLayout.addWidget(self.textLabel2, 1, 0, 1, 1) self.targetPicker = EricPathPicker(parent=SvnCopyDialog) sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Preferred) sizePolicy.setHorizontalStretch(0) sizePolicy.setVerticalStretch(0) sizePolicy.setHeightForWidth(self.targetPicker.sizePolicy().hasHeightForWidth()) self.targetPicker.setSizePolicy(sizePolicy) self.targetPicker.setFocusPolicy(QtCore.Qt.FocusPolicy.StrongFocus) self.targetPicker.setObjectName("targetPicker") self.gridLayout.addWidget(self.targetPicker, 1, 1, 1, 1) self.forceCheckBox = QtWidgets.QCheckBox(parent=SvnCopyDialog) self.forceCheckBox.setObjectName("forceCheckBox") self.gridLayout.addWidget(self.forceCheckBox, 2, 0, 1, 2) self.buttonBox = QtWidgets.QDialogButtonBox(parent=SvnCopyDialog) self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal) self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok) self.buttonBox.setObjectName("buttonBox") self.gridLayout.addWidget(self.buttonBox, 3, 0, 1, 2) self.retranslateUi(SvnCopyDialog) self.buttonBox.accepted.connect(SvnCopyDialog.accept) # type: ignore self.buttonBox.rejected.connect(SvnCopyDialog.reject) # type: ignore QtCore.QMetaObject.connectSlotsByName(SvnCopyDialog) SvnCopyDialog.setTabOrder(self.sourceEdit, self.targetPicker) SvnCopyDialog.setTabOrder(self.targetPicker, self.forceCheckBox) def retranslateUi(self, SvnCopyDialog): _translate = QtCore.QCoreApplication.translate SvnCopyDialog.setWindowTitle(_translate("SvnCopyDialog", "Subversion Copy")) self.textLabel1.setText(_translate("SvnCopyDialog", "Source:")) self.sourceEdit.setToolTip(_translate("SvnCopyDialog", "Shows the name of the source")) self.sourceEdit.setWhatsThis(_translate("SvnCopyDialog", "<b>Source name</b>\n" "<p>This field shows the name of the source.</p>")) self.textLabel2.setText(_translate("SvnCopyDialog", "Target:")) self.targetPicker.setToolTip(_translate("SvnCopyDialog", "Enter the target name")) self.targetPicker.setWhatsThis(_translate("SvnCopyDialog", "<b>Target name</b>\n" "<p>Enter the new name in this field. The target must be the new name or an absolute path.</p>")) self.forceCheckBox.setToolTip(_translate("SvnCopyDialog", "Select to force the operation")) self.forceCheckBox.setText(_translate("SvnCopyDialog", "Enforce operation")) from eric7.EricWidgets.EricPathPicker import EricPathPicker