src/eric7/Plugins/VcsPlugins/vcsPySvn/Ui_SvnRelocateDialog.py

Sat, 26 Apr 2025 12:34:32 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sat, 26 Apr 2025 12:34:32 +0200
branch
eric7
changeset 11240
c48c615c04a3
parent 10745
2921faddeaec
permissions
-rw-r--r--

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/SvnRelocateDialog.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_SvnRelocateDialog(object):
    def setupUi(self, SvnRelocateDialog):
        SvnRelocateDialog.setObjectName("SvnRelocateDialog")
        SvnRelocateDialog.resize(531, 119)
        SvnRelocateDialog.setSizeGripEnabled(True)
        self.verticalLayout = QtWidgets.QVBoxLayout(SvnRelocateDialog)
        self.verticalLayout.setObjectName("verticalLayout")
        self.gridlayout = QtWidgets.QGridLayout()
        self.gridlayout.setObjectName("gridlayout")
        self.currUrlLabel = QtWidgets.QLabel(parent=SvnRelocateDialog)
        self.currUrlLabel.setFrameShape(QtWidgets.QFrame.Shape.StyledPanel)
        self.currUrlLabel.setText("")
        self.currUrlLabel.setObjectName("currUrlLabel")
        self.gridlayout.addWidget(self.currUrlLabel, 0, 1, 1, 1)
        self.label_2 = QtWidgets.QLabel(parent=SvnRelocateDialog)
        self.label_2.setObjectName("label_2")
        self.gridlayout.addWidget(self.label_2, 1, 0, 1, 1)
        self.newUrlEdit = QtWidgets.QLineEdit(parent=SvnRelocateDialog)
        self.newUrlEdit.setObjectName("newUrlEdit")
        self.gridlayout.addWidget(self.newUrlEdit, 1, 1, 1, 1)
        self.label = QtWidgets.QLabel(parent=SvnRelocateDialog)
        self.label.setObjectName("label")
        self.gridlayout.addWidget(self.label, 0, 0, 1, 1)
        self.verticalLayout.addLayout(self.gridlayout)
        self.insideCheckBox = QtWidgets.QCheckBox(parent=SvnRelocateDialog)
        self.insideCheckBox.setObjectName("insideCheckBox")
        self.verticalLayout.addWidget(self.insideCheckBox)
        self.buttonBox = QtWidgets.QDialogButtonBox(parent=SvnRelocateDialog)
        self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal)
        self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok)
        self.buttonBox.setObjectName("buttonBox")
        self.verticalLayout.addWidget(self.buttonBox)

        self.retranslateUi(SvnRelocateDialog)
        self.buttonBox.accepted.connect(SvnRelocateDialog.accept) # type: ignore
        self.buttonBox.rejected.connect(SvnRelocateDialog.reject) # type: ignore
        QtCore.QMetaObject.connectSlotsByName(SvnRelocateDialog)
        SvnRelocateDialog.setTabOrder(self.newUrlEdit, self.insideCheckBox)
        SvnRelocateDialog.setTabOrder(self.insideCheckBox, self.buttonBox)

    def retranslateUi(self, SvnRelocateDialog):
        _translate = QtCore.QCoreApplication.translate
        SvnRelocateDialog.setWindowTitle(_translate("SvnRelocateDialog", "Subversion Relocate"))
        self.label_2.setText(_translate("SvnRelocateDialog", "New repository URL:"))
        self.newUrlEdit.setToolTip(_translate("SvnRelocateDialog", "Enter the URL of the repository the working space should be relocated to"))
        self.label.setText(_translate("SvnRelocateDialog", "Current repository URL:"))
        self.insideCheckBox.setToolTip(_translate("SvnRelocateDialog", "Select, if the relocate should happen inside the repository"))
        self.insideCheckBox.setText(_translate("SvnRelocateDialog", "Relocate inside repository (used, if the repository layout has changed)"))

eric ide

mercurial