src/eric7/Plugins/VcsPlugins/vcsGit/Ui_GitCopyDialog.py

branch
eric7
changeset 10743
5d3a5a05114e
child 10745
2921faddeaec
equal deleted inserted replaced
10742:7aa41173b44b 10743:5d3a5a05114e
1 # Form implementation generated from reading ui file '/home/detlev/Development/Python/Eric/eric7_default/src/eric7/Plugins/VcsPlugins/vcsGit/GitCopyDialog.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_GitCopyDialog(object):
13 def setupUi(self, GitCopyDialog):
14 GitCopyDialog.setObjectName("GitCopyDialog")
15 GitCopyDialog.resize(409, 138)
16 GitCopyDialog.setSizeGripEnabled(True)
17 self.vboxlayout = QtWidgets.QVBoxLayout(GitCopyDialog)
18 self.vboxlayout.setObjectName("vboxlayout")
19 self.gridlayout = QtWidgets.QGridLayout()
20 self.gridlayout.setObjectName("gridlayout")
21 self.textLabel1 = QtWidgets.QLabel(parent=GitCopyDialog)
22 self.textLabel1.setObjectName("textLabel1")
23 self.gridlayout.addWidget(self.textLabel1, 0, 0, 1, 1)
24 self.sourceEdit = QtWidgets.QLineEdit(parent=GitCopyDialog)
25 self.sourceEdit.setReadOnly(True)
26 self.sourceEdit.setObjectName("sourceEdit")
27 self.gridlayout.addWidget(self.sourceEdit, 0, 1, 1, 1)
28 self.targetEdit = QtWidgets.QLineEdit(parent=GitCopyDialog)
29 self.targetEdit.setObjectName("targetEdit")
30 self.gridlayout.addWidget(self.targetEdit, 1, 1, 1, 1)
31 self.textLabel2 = QtWidgets.QLabel(parent=GitCopyDialog)
32 self.textLabel2.setObjectName("textLabel2")
33 self.gridlayout.addWidget(self.textLabel2, 1, 0, 1, 1)
34 self.dirButton = QtWidgets.QToolButton(parent=GitCopyDialog)
35 self.dirButton.setObjectName("dirButton")
36 self.gridlayout.addWidget(self.dirButton, 1, 2, 1, 1)
37 self.vboxlayout.addLayout(self.gridlayout)
38 self.forceCheckBox = QtWidgets.QCheckBox(parent=GitCopyDialog)
39 self.forceCheckBox.setObjectName("forceCheckBox")
40 self.vboxlayout.addWidget(self.forceCheckBox)
41 self.buttonBox = QtWidgets.QDialogButtonBox(parent=GitCopyDialog)
42 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal)
43 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok)
44 self.buttonBox.setObjectName("buttonBox")
45 self.vboxlayout.addWidget(self.buttonBox)
46
47 self.retranslateUi(GitCopyDialog)
48 self.buttonBox.accepted.connect(GitCopyDialog.accept) # type: ignore
49 self.buttonBox.rejected.connect(GitCopyDialog.reject) # type: ignore
50 QtCore.QMetaObject.connectSlotsByName(GitCopyDialog)
51 GitCopyDialog.setTabOrder(self.targetEdit, self.dirButton)
52 GitCopyDialog.setTabOrder(self.dirButton, self.forceCheckBox)
53 GitCopyDialog.setTabOrder(self.forceCheckBox, self.buttonBox)
54 GitCopyDialog.setTabOrder(self.buttonBox, self.sourceEdit)
55
56 def retranslateUi(self, GitCopyDialog):
57 _translate = QtCore.QCoreApplication.translate
58 GitCopyDialog.setWindowTitle(_translate("GitCopyDialog", "Git Copy"))
59 self.textLabel1.setText(_translate("GitCopyDialog", "Source:"))
60 self.sourceEdit.setToolTip(_translate("GitCopyDialog", "Shows the name of the source"))
61 self.sourceEdit.setWhatsThis(_translate("GitCopyDialog", "<b>Source name</b>\n"
62 "<p>This field shows the name of the source.</p>"))
63 self.targetEdit.setToolTip(_translate("GitCopyDialog", "Enter the target name"))
64 self.targetEdit.setWhatsThis(_translate("GitCopyDialog", "<b>Target name</b>\n"
65 "<p>Enter the new name in this field. The target must be the new name or an absolute path.</p>"))
66 self.textLabel2.setText(_translate("GitCopyDialog", "Target:"))
67 self.dirButton.setToolTip(_translate("GitCopyDialog", "Press to open a selection dialog"))
68 self.dirButton.setWhatsThis(_translate("GitCopyDialog", "<b>Target directory</b>\n"
69 "<p>Select the target name for the operation via a selection dialog.</p>"))
70 self.forceCheckBox.setToolTip(_translate("GitCopyDialog", "Select to force the operation"))
71 self.forceCheckBox.setText(_translate("GitCopyDialog", "Enforce operation"))

eric ide

mercurial