|
1 # Form implementation generated from reading ui file '/home/detlev/Development/Python/Eric/eric7_default/src/eric7/Plugins/VcsPlugins/vcsGit/GitBranchPushDialog.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_GitBranchPushDialog(object): |
|
13 def setupUi(self, GitBranchPushDialog): |
|
14 GitBranchPushDialog.setObjectName("GitBranchPushDialog") |
|
15 GitBranchPushDialog.resize(497, 107) |
|
16 GitBranchPushDialog.setSizeGripEnabled(True) |
|
17 self.gridLayout = QtWidgets.QGridLayout(GitBranchPushDialog) |
|
18 self.gridLayout.setObjectName("gridLayout") |
|
19 self.label = QtWidgets.QLabel(parent=GitBranchPushDialog) |
|
20 self.label.setObjectName("label") |
|
21 self.gridLayout.addWidget(self.label, 0, 0, 1, 1) |
|
22 self.branchComboBox = QtWidgets.QComboBox(parent=GitBranchPushDialog) |
|
23 sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Fixed) |
|
24 sizePolicy.setHorizontalStretch(0) |
|
25 sizePolicy.setVerticalStretch(0) |
|
26 sizePolicy.setHeightForWidth(self.branchComboBox.sizePolicy().hasHeightForWidth()) |
|
27 self.branchComboBox.setSizePolicy(sizePolicy) |
|
28 self.branchComboBox.setObjectName("branchComboBox") |
|
29 self.gridLayout.addWidget(self.branchComboBox, 0, 1, 1, 1) |
|
30 self.label_2 = QtWidgets.QLabel(parent=GitBranchPushDialog) |
|
31 self.label_2.setObjectName("label_2") |
|
32 self.gridLayout.addWidget(self.label_2, 1, 0, 1, 1) |
|
33 self.remoteComboBox = QtWidgets.QComboBox(parent=GitBranchPushDialog) |
|
34 sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Fixed) |
|
35 sizePolicy.setHorizontalStretch(0) |
|
36 sizePolicy.setVerticalStretch(0) |
|
37 sizePolicy.setHeightForWidth(self.remoteComboBox.sizePolicy().hasHeightForWidth()) |
|
38 self.remoteComboBox.setSizePolicy(sizePolicy) |
|
39 self.remoteComboBox.setObjectName("remoteComboBox") |
|
40 self.gridLayout.addWidget(self.remoteComboBox, 1, 1, 1, 1) |
|
41 self.buttonBox = QtWidgets.QDialogButtonBox(parent=GitBranchPushDialog) |
|
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.gridLayout.addWidget(self.buttonBox, 2, 0, 1, 2) |
|
46 |
|
47 self.retranslateUi(GitBranchPushDialog) |
|
48 self.buttonBox.accepted.connect(GitBranchPushDialog.accept) # type: ignore |
|
49 self.buttonBox.rejected.connect(GitBranchPushDialog.reject) # type: ignore |
|
50 QtCore.QMetaObject.connectSlotsByName(GitBranchPushDialog) |
|
51 GitBranchPushDialog.setTabOrder(self.branchComboBox, self.remoteComboBox) |
|
52 |
|
53 def retranslateUi(self, GitBranchPushDialog): |
|
54 _translate = QtCore.QCoreApplication.translate |
|
55 GitBranchPushDialog.setWindowTitle(_translate("GitBranchPushDialog", "Git Push Branch")) |
|
56 self.label.setText(_translate("GitBranchPushDialog", "Branch Name:")) |
|
57 self.branchComboBox.setToolTip(_translate("GitBranchPushDialog", "Select the branch")) |
|
58 self.label_2.setText(_translate("GitBranchPushDialog", "Remote Name:")) |
|
59 self.remoteComboBox.setToolTip(_translate("GitBranchPushDialog", "Select the remote repository")) |