|
1 # Form implementation generated from reading ui file '/home/detlev/Development/Python/Eric/eric7_default/src/eric7/Plugins/VcsPlugins/vcsGit/GitBisectStartDialog.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_GitBisectStartDialog(object): |
|
13 def setupUi(self, GitBisectStartDialog): |
|
14 GitBisectStartDialog.setObjectName("GitBisectStartDialog") |
|
15 GitBisectStartDialog.resize(450, 117) |
|
16 GitBisectStartDialog.setSizeGripEnabled(True) |
|
17 self.gridLayout = QtWidgets.QGridLayout(GitBisectStartDialog) |
|
18 self.gridLayout.setObjectName("gridLayout") |
|
19 self.label = QtWidgets.QLabel(parent=GitBisectStartDialog) |
|
20 self.label.setObjectName("label") |
|
21 self.gridLayout.addWidget(self.label, 0, 0, 1, 1) |
|
22 self.badEdit = QtWidgets.QLineEdit(parent=GitBisectStartDialog) |
|
23 self.badEdit.setObjectName("badEdit") |
|
24 self.gridLayout.addWidget(self.badEdit, 0, 1, 1, 1) |
|
25 self.label_2 = QtWidgets.QLabel(parent=GitBisectStartDialog) |
|
26 self.label_2.setObjectName("label_2") |
|
27 self.gridLayout.addWidget(self.label_2, 1, 0, 1, 1) |
|
28 self.goodEdit = QtWidgets.QLineEdit(parent=GitBisectStartDialog) |
|
29 self.goodEdit.setObjectName("goodEdit") |
|
30 self.gridLayout.addWidget(self.goodEdit, 1, 1, 1, 1) |
|
31 self.noCheckoutCheckBox = QtWidgets.QCheckBox(parent=GitBisectStartDialog) |
|
32 self.noCheckoutCheckBox.setObjectName("noCheckoutCheckBox") |
|
33 self.gridLayout.addWidget(self.noCheckoutCheckBox, 2, 0, 1, 2) |
|
34 self.buttonBox = QtWidgets.QDialogButtonBox(parent=GitBisectStartDialog) |
|
35 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal) |
|
36 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok) |
|
37 self.buttonBox.setObjectName("buttonBox") |
|
38 self.gridLayout.addWidget(self.buttonBox, 3, 0, 1, 2) |
|
39 |
|
40 self.retranslateUi(GitBisectStartDialog) |
|
41 self.buttonBox.accepted.connect(GitBisectStartDialog.accept) # type: ignore |
|
42 self.buttonBox.rejected.connect(GitBisectStartDialog.reject) # type: ignore |
|
43 QtCore.QMetaObject.connectSlotsByName(GitBisectStartDialog) |
|
44 |
|
45 def retranslateUi(self, GitBisectStartDialog): |
|
46 _translate = QtCore.QCoreApplication.translate |
|
47 GitBisectStartDialog.setWindowTitle(_translate("GitBisectStartDialog", "Git Bisect Start")) |
|
48 self.label.setText(_translate("GitBisectStartDialog", "Bad Commit:")) |
|
49 self.badEdit.setToolTip(_translate("GitBisectStartDialog", "Enter a bad commit")) |
|
50 self.label_2.setText(_translate("GitBisectStartDialog", "Good Commits:")) |
|
51 self.goodEdit.setToolTip(_translate("GitBisectStartDialog", "Enter a list of good commits separated by space")) |
|
52 self.noCheckoutCheckBox.setToolTip(_translate("GitBisectStartDialog", "Select to not checkout the working tree")) |
|
53 self.noCheckoutCheckBox.setText(_translate("GitBisectStartDialog", "Don\'t checkout working tree")) |