Fri, 07 Jun 2024 10:05:06 +0200
Changed code structure and install script to include the Ui_*.py files in the code repository and do not compile *.ui files at installation time anymore. This is to cope with a backward incompatible change of Qt 6.7.0.
# Form implementation generated from reading ui file '/home/detlev/Development/Python/Eric/eric7_default/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