|
1 # Form implementation generated from reading ui file '/home/detlev/Development/Python/Eric/eric7_default/src/eric7/Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListGuardsDialog.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_HgQueuesListGuardsDialog(object): |
|
13 def setupUi(self, HgQueuesListGuardsDialog): |
|
14 HgQueuesListGuardsDialog.setObjectName("HgQueuesListGuardsDialog") |
|
15 HgQueuesListGuardsDialog.resize(400, 400) |
|
16 HgQueuesListGuardsDialog.setSizeGripEnabled(True) |
|
17 self.verticalLayout = QtWidgets.QVBoxLayout(HgQueuesListGuardsDialog) |
|
18 self.verticalLayout.setObjectName("verticalLayout") |
|
19 self.label = QtWidgets.QLabel(parent=HgQueuesListGuardsDialog) |
|
20 self.label.setObjectName("label") |
|
21 self.verticalLayout.addWidget(self.label) |
|
22 self.patchSelector = QtWidgets.QComboBox(parent=HgQueuesListGuardsDialog) |
|
23 self.patchSelector.setObjectName("patchSelector") |
|
24 self.verticalLayout.addWidget(self.patchSelector) |
|
25 self.line = QtWidgets.QFrame(parent=HgQueuesListGuardsDialog) |
|
26 self.line.setFrameShape(QtWidgets.QFrame.Shape.HLine) |
|
27 self.line.setFrameShadow(QtWidgets.QFrame.Shadow.Sunken) |
|
28 self.line.setObjectName("line") |
|
29 self.verticalLayout.addWidget(self.line) |
|
30 self.horizontalLayout = QtWidgets.QHBoxLayout() |
|
31 self.horizontalLayout.setObjectName("horizontalLayout") |
|
32 self.label_2 = QtWidgets.QLabel(parent=HgQueuesListGuardsDialog) |
|
33 self.label_2.setObjectName("label_2") |
|
34 self.horizontalLayout.addWidget(self.label_2) |
|
35 self.patchNameLabel = QtWidgets.QLabel(parent=HgQueuesListGuardsDialog) |
|
36 sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Preferred) |
|
37 sizePolicy.setHorizontalStretch(0) |
|
38 sizePolicy.setVerticalStretch(0) |
|
39 sizePolicy.setHeightForWidth(self.patchNameLabel.sizePolicy().hasHeightForWidth()) |
|
40 self.patchNameLabel.setSizePolicy(sizePolicy) |
|
41 self.patchNameLabel.setText("") |
|
42 self.patchNameLabel.setObjectName("patchNameLabel") |
|
43 self.horizontalLayout.addWidget(self.patchNameLabel) |
|
44 self.verticalLayout.addLayout(self.horizontalLayout) |
|
45 self.guardsList = QtWidgets.QListWidget(parent=HgQueuesListGuardsDialog) |
|
46 self.guardsList.setAlternatingRowColors(True) |
|
47 self.guardsList.setObjectName("guardsList") |
|
48 self.verticalLayout.addWidget(self.guardsList) |
|
49 self.buttonBox = QtWidgets.QDialogButtonBox(parent=HgQueuesListGuardsDialog) |
|
50 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal) |
|
51 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Close) |
|
52 self.buttonBox.setObjectName("buttonBox") |
|
53 self.verticalLayout.addWidget(self.buttonBox) |
|
54 |
|
55 self.retranslateUi(HgQueuesListGuardsDialog) |
|
56 self.buttonBox.accepted.connect(HgQueuesListGuardsDialog.accept) # type: ignore |
|
57 self.buttonBox.rejected.connect(HgQueuesListGuardsDialog.reject) # type: ignore |
|
58 QtCore.QMetaObject.connectSlotsByName(HgQueuesListGuardsDialog) |
|
59 HgQueuesListGuardsDialog.setTabOrder(self.patchSelector, self.guardsList) |
|
60 HgQueuesListGuardsDialog.setTabOrder(self.guardsList, self.buttonBox) |
|
61 |
|
62 def retranslateUi(self, HgQueuesListGuardsDialog): |
|
63 _translate = QtCore.QCoreApplication.translate |
|
64 HgQueuesListGuardsDialog.setWindowTitle(_translate("HgQueuesListGuardsDialog", "List Guards")) |
|
65 self.label.setText(_translate("HgQueuesListGuardsDialog", "Select patch (leave empty for current patch):")) |
|
66 self.patchSelector.setToolTip(_translate("HgQueuesListGuardsDialog", "Select the patch to show the guards of")) |
|
67 self.label_2.setText(_translate("HgQueuesListGuardsDialog", "Patch:")) |
|
68 self.patchNameLabel.setToolTip(_translate("HgQueuesListGuardsDialog", "Shows the name of the patch")) |
|
69 self.guardsList.setToolTip(_translate("HgQueuesListGuardsDialog", "This shows the list of guards defined for the selected patch")) |