|
1 # Form implementation generated from reading ui file '/home/detlev/Development/Python/Eric/eric7_default/src/eric7/Plugins/VcsPlugins/vcsMercurial/HgBranchInputDialog.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_HgBranchInputDialog(object): |
|
13 def setupUi(self, HgBranchInputDialog): |
|
14 HgBranchInputDialog.setObjectName("HgBranchInputDialog") |
|
15 HgBranchInputDialog.resize(400, 130) |
|
16 HgBranchInputDialog.setSizeGripEnabled(True) |
|
17 self.verticalLayout = QtWidgets.QVBoxLayout(HgBranchInputDialog) |
|
18 self.verticalLayout.setObjectName("verticalLayout") |
|
19 self.label = QtWidgets.QLabel(parent=HgBranchInputDialog) |
|
20 self.label.setObjectName("label") |
|
21 self.verticalLayout.addWidget(self.label) |
|
22 self.branchComboBox = QtWidgets.QComboBox(parent=HgBranchInputDialog) |
|
23 self.branchComboBox.setEditable(True) |
|
24 self.branchComboBox.setObjectName("branchComboBox") |
|
25 self.verticalLayout.addWidget(self.branchComboBox) |
|
26 self.horizontalLayout = QtWidgets.QHBoxLayout() |
|
27 self.horizontalLayout.setObjectName("horizontalLayout") |
|
28 self.commitCheckBox = QtWidgets.QCheckBox(parent=HgBranchInputDialog) |
|
29 self.commitCheckBox.setObjectName("commitCheckBox") |
|
30 self.horizontalLayout.addWidget(self.commitCheckBox) |
|
31 self.forceCheckBox = QtWidgets.QCheckBox(parent=HgBranchInputDialog) |
|
32 self.forceCheckBox.setObjectName("forceCheckBox") |
|
33 self.horizontalLayout.addWidget(self.forceCheckBox) |
|
34 self.verticalLayout.addLayout(self.horizontalLayout) |
|
35 self.buttonBox = QtWidgets.QDialogButtonBox(parent=HgBranchInputDialog) |
|
36 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal) |
|
37 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok) |
|
38 self.buttonBox.setObjectName("buttonBox") |
|
39 self.verticalLayout.addWidget(self.buttonBox) |
|
40 |
|
41 self.retranslateUi(HgBranchInputDialog) |
|
42 self.buttonBox.accepted.connect(HgBranchInputDialog.accept) # type: ignore |
|
43 self.buttonBox.rejected.connect(HgBranchInputDialog.reject) # type: ignore |
|
44 QtCore.QMetaObject.connectSlotsByName(HgBranchInputDialog) |
|
45 HgBranchInputDialog.setTabOrder(self.branchComboBox, self.commitCheckBox) |
|
46 HgBranchInputDialog.setTabOrder(self.commitCheckBox, self.buttonBox) |
|
47 |
|
48 def retranslateUi(self, HgBranchInputDialog): |
|
49 _translate = QtCore.QCoreApplication.translate |
|
50 HgBranchInputDialog.setWindowTitle(_translate("HgBranchInputDialog", "Create Branch")) |
|
51 self.label.setText(_translate("HgBranchInputDialog", "Enter branch name:")) |
|
52 self.branchComboBox.setToolTip(_translate("HgBranchInputDialog", "Enter the new branch name (spaces will be converted to _)")) |
|
53 self.commitCheckBox.setToolTip(_translate("HgBranchInputDialog", "Select to commit the branch")) |
|
54 self.commitCheckBox.setText(_translate("HgBranchInputDialog", "Commit Branch")) |
|
55 self.forceCheckBox.setToolTip(_translate("HgBranchInputDialog", "Select to force creating the branch")) |
|
56 self.forceCheckBox.setText(_translate("HgBranchInputDialog", "Force")) |