|
1 # Form implementation generated from reading ui file '/home/detlev/Development/Python/Eric/eric7_default/src/eric7/Plugins/VcsPlugins/vcsMercurial/PurgeExtension/HgPurgeListDialog.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_HgPurgeListDialog(object): |
|
13 def setupUi(self, HgPurgeListDialog): |
|
14 HgPurgeListDialog.setObjectName("HgPurgeListDialog") |
|
15 HgPurgeListDialog.resize(500, 400) |
|
16 HgPurgeListDialog.setSizeGripEnabled(True) |
|
17 self.verticalLayout = QtWidgets.QVBoxLayout(HgPurgeListDialog) |
|
18 self.verticalLayout.setObjectName("verticalLayout") |
|
19 self.purgeList = QtWidgets.QListWidget(parent=HgPurgeListDialog) |
|
20 self.purgeList.setEditTriggers(QtWidgets.QAbstractItemView.EditTrigger.NoEditTriggers) |
|
21 self.purgeList.setAlternatingRowColors(True) |
|
22 self.purgeList.setSelectionMode(QtWidgets.QAbstractItemView.SelectionMode.NoSelection) |
|
23 self.purgeList.setTextElideMode(QtCore.Qt.TextElideMode.ElideLeft) |
|
24 self.purgeList.setObjectName("purgeList") |
|
25 self.verticalLayout.addWidget(self.purgeList) |
|
26 self.buttonBox = QtWidgets.QDialogButtonBox(parent=HgPurgeListDialog) |
|
27 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal) |
|
28 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Close) |
|
29 self.buttonBox.setObjectName("buttonBox") |
|
30 self.verticalLayout.addWidget(self.buttonBox) |
|
31 |
|
32 self.retranslateUi(HgPurgeListDialog) |
|
33 self.buttonBox.accepted.connect(HgPurgeListDialog.accept) # type: ignore |
|
34 self.buttonBox.rejected.connect(HgPurgeListDialog.reject) # type: ignore |
|
35 QtCore.QMetaObject.connectSlotsByName(HgPurgeListDialog) |
|
36 HgPurgeListDialog.setTabOrder(self.purgeList, self.buttonBox) |
|
37 |
|
38 def retranslateUi(self, HgPurgeListDialog): |
|
39 _translate = QtCore.QCoreApplication.translate |
|
40 HgPurgeListDialog.setWindowTitle(_translate("HgPurgeListDialog", "Purge List")) |