|
1 # Form implementation generated from reading ui file '/home/detlev/Development/Python/Eric/eric7_default/src/eric7/Plugins/VcsPlugins/vcsPySvn/SvnRelocateDialog.ui' |
|
2 # |
|
3 # Created by: PyQt6 UI code generator 6.7.0 |
|
4 # |
|
5 # WARNING: Any manual changes made to this file will be lost when pyuic6 is |
|
6 # run again. Do not edit this file unless you know what you are doing. |
|
7 |
|
8 |
|
9 from PyQt6 import QtCore, QtGui, QtWidgets |
|
10 |
|
11 |
|
12 class Ui_SvnRelocateDialog(object): |
|
13 def setupUi(self, SvnRelocateDialog): |
|
14 SvnRelocateDialog.setObjectName("SvnRelocateDialog") |
|
15 SvnRelocateDialog.resize(531, 119) |
|
16 SvnRelocateDialog.setSizeGripEnabled(True) |
|
17 self.verticalLayout = QtWidgets.QVBoxLayout(SvnRelocateDialog) |
|
18 self.verticalLayout.setObjectName("verticalLayout") |
|
19 self.gridlayout = QtWidgets.QGridLayout() |
|
20 self.gridlayout.setObjectName("gridlayout") |
|
21 self.currUrlLabel = QtWidgets.QLabel(parent=SvnRelocateDialog) |
|
22 self.currUrlLabel.setFrameShape(QtWidgets.QFrame.Shape.StyledPanel) |
|
23 self.currUrlLabel.setText("") |
|
24 self.currUrlLabel.setObjectName("currUrlLabel") |
|
25 self.gridlayout.addWidget(self.currUrlLabel, 0, 1, 1, 1) |
|
26 self.label_2 = QtWidgets.QLabel(parent=SvnRelocateDialog) |
|
27 self.label_2.setObjectName("label_2") |
|
28 self.gridlayout.addWidget(self.label_2, 1, 0, 1, 1) |
|
29 self.newUrlEdit = QtWidgets.QLineEdit(parent=SvnRelocateDialog) |
|
30 self.newUrlEdit.setObjectName("newUrlEdit") |
|
31 self.gridlayout.addWidget(self.newUrlEdit, 1, 1, 1, 1) |
|
32 self.label = QtWidgets.QLabel(parent=SvnRelocateDialog) |
|
33 self.label.setObjectName("label") |
|
34 self.gridlayout.addWidget(self.label, 0, 0, 1, 1) |
|
35 self.verticalLayout.addLayout(self.gridlayout) |
|
36 self.insideCheckBox = QtWidgets.QCheckBox(parent=SvnRelocateDialog) |
|
37 self.insideCheckBox.setObjectName("insideCheckBox") |
|
38 self.verticalLayout.addWidget(self.insideCheckBox) |
|
39 self.buttonBox = QtWidgets.QDialogButtonBox(parent=SvnRelocateDialog) |
|
40 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal) |
|
41 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok) |
|
42 self.buttonBox.setObjectName("buttonBox") |
|
43 self.verticalLayout.addWidget(self.buttonBox) |
|
44 |
|
45 self.retranslateUi(SvnRelocateDialog) |
|
46 self.buttonBox.accepted.connect(SvnRelocateDialog.accept) # type: ignore |
|
47 self.buttonBox.rejected.connect(SvnRelocateDialog.reject) # type: ignore |
|
48 QtCore.QMetaObject.connectSlotsByName(SvnRelocateDialog) |
|
49 SvnRelocateDialog.setTabOrder(self.newUrlEdit, self.insideCheckBox) |
|
50 SvnRelocateDialog.setTabOrder(self.insideCheckBox, self.buttonBox) |
|
51 |
|
52 def retranslateUi(self, SvnRelocateDialog): |
|
53 _translate = QtCore.QCoreApplication.translate |
|
54 SvnRelocateDialog.setWindowTitle(_translate("SvnRelocateDialog", "Subversion Relocate")) |
|
55 self.label_2.setText(_translate("SvnRelocateDialog", "New repository URL:")) |
|
56 self.newUrlEdit.setToolTip(_translate("SvnRelocateDialog", "Enter the URL of the repository the working space should be relocated to")) |
|
57 self.label.setText(_translate("SvnRelocateDialog", "Current repository URL:")) |
|
58 self.insideCheckBox.setToolTip(_translate("SvnRelocateDialog", "Select, if the relocate should happen inside the repository")) |
|
59 self.insideCheckBox.setText(_translate("SvnRelocateDialog", "Relocate inside repository (used, if the repository layout has changed)")) |