src/eric7/Plugins/VcsPlugins/vcsGit/Ui_GitCommandDialog.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/GitCommandDialog.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_GitCommandDialog(object):
13 def setupUi(self, GitCommandDialog):
14 GitCommandDialog.setObjectName("GitCommandDialog")
15 GitCommandDialog.resize(628, 99)
16 GitCommandDialog.setSizeGripEnabled(True)
17 self.gridLayout = QtWidgets.QGridLayout(GitCommandDialog)
18 self.gridLayout.setObjectName("gridLayout")
19 self.textLabel1 = QtWidgets.QLabel(parent=GitCommandDialog)
20 self.textLabel1.setObjectName("textLabel1")
21 self.gridLayout.addWidget(self.textLabel1, 0, 0, 1, 1)
22 self.commandCombo = QtWidgets.QComboBox(parent=GitCommandDialog)
23 sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Fixed)
24 sizePolicy.setHorizontalStretch(0)
25 sizePolicy.setVerticalStretch(0)
26 sizePolicy.setHeightForWidth(self.commandCombo.sizePolicy().hasHeightForWidth())
27 self.commandCombo.setSizePolicy(sizePolicy)
28 self.commandCombo.setEditable(True)
29 self.commandCombo.setInsertPolicy(QtWidgets.QComboBox.InsertPolicy.InsertAtTop)
30 self.commandCombo.setDuplicatesEnabled(False)
31 self.commandCombo.setObjectName("commandCombo")
32 self.gridLayout.addWidget(self.commandCombo, 0, 1, 1, 1)
33 self.textLabel3 = QtWidgets.QLabel(parent=GitCommandDialog)
34 sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Minimum, QtWidgets.QSizePolicy.Policy.Preferred)
35 sizePolicy.setHorizontalStretch(0)
36 sizePolicy.setVerticalStretch(0)
37 sizePolicy.setHeightForWidth(self.textLabel3.sizePolicy().hasHeightForWidth())
38 self.textLabel3.setSizePolicy(sizePolicy)
39 self.textLabel3.setObjectName("textLabel3")
40 self.gridLayout.addWidget(self.textLabel3, 1, 0, 1, 1)
41 self.projectDirLabel = QtWidgets.QLabel(parent=GitCommandDialog)
42 sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Preferred)
43 sizePolicy.setHorizontalStretch(0)
44 sizePolicy.setVerticalStretch(0)
45 sizePolicy.setHeightForWidth(self.projectDirLabel.sizePolicy().hasHeightForWidth())
46 self.projectDirLabel.setSizePolicy(sizePolicy)
47 self.projectDirLabel.setObjectName("projectDirLabel")
48 self.gridLayout.addWidget(self.projectDirLabel, 1, 1, 1, 1)
49 self.buttonBox = QtWidgets.QDialogButtonBox(parent=GitCommandDialog)
50 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal)
51 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok)
52 self.buttonBox.setObjectName("buttonBox")
53 self.gridLayout.addWidget(self.buttonBox, 2, 0, 1, 2)
54
55 self.retranslateUi(GitCommandDialog)
56 self.buttonBox.accepted.connect(GitCommandDialog.accept) # type: ignore
57 self.buttonBox.rejected.connect(GitCommandDialog.reject) # type: ignore
58 QtCore.QMetaObject.connectSlotsByName(GitCommandDialog)
59 GitCommandDialog.setTabOrder(self.commandCombo, self.buttonBox)
60
61 def retranslateUi(self, GitCommandDialog):
62 _translate = QtCore.QCoreApplication.translate
63 GitCommandDialog.setWindowTitle(_translate("GitCommandDialog", "Git Command"))
64 self.textLabel1.setText(_translate("GitCommandDialog", "Git Command:"))
65 self.commandCombo.setToolTip(_translate("GitCommandDialog", "Enter the Git command to be executed with all necessary parameters"))
66 self.commandCombo.setWhatsThis(_translate("GitCommandDialog", "<b>Git Command</b>\n"
67 "<p>Enter the Git command to be executed including all necessary \n"
68 "parameters. If a parameter of the commandline includes a space you have to \n"
69 "surround this parameter by single or double quotes. Do not include the name \n"
70 "of the Git client executable (i.e. git).</p>"))
71 self.textLabel3.setText(_translate("GitCommandDialog", "Project Directory:"))
72 self.projectDirLabel.setToolTip(_translate("GitCommandDialog", "This shows the root directory of the current project."))
73 self.projectDirLabel.setText(_translate("GitCommandDialog", "project directory"))

eric ide

mercurial