src/eric7/EricWidgets/Ui_EricListSelectionDialog.py

branch
eric7
changeset 10743
5d3a5a05114e
child 10745
2921faddeaec
equal deleted inserted replaced
10742:7aa41173b44b 10743:5d3a5a05114e
1 # Form implementation generated from reading ui file '/home/detlev/Development/Python/Eric/eric7_default/src/eric7/EricWidgets/EricListSelectionDialog.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_EricListSelectionDialog(object):
13 def setupUi(self, EricListSelectionDialog):
14 EricListSelectionDialog.setObjectName("EricListSelectionDialog")
15 EricListSelectionDialog.resize(400, 500)
16 EricListSelectionDialog.setSizeGripEnabled(True)
17 self.verticalLayout = QtWidgets.QVBoxLayout(EricListSelectionDialog)
18 self.verticalLayout.setObjectName("verticalLayout")
19 self.messageLabel = QtWidgets.QLabel(parent=EricListSelectionDialog)
20 self.messageLabel.setWordWrap(True)
21 self.messageLabel.setObjectName("messageLabel")
22 self.verticalLayout.addWidget(self.messageLabel)
23 self.selectionList = QtWidgets.QListWidget(parent=EricListSelectionDialog)
24 self.selectionList.setAlternatingRowColors(True)
25 self.selectionList.setObjectName("selectionList")
26 self.verticalLayout.addWidget(self.selectionList)
27 self.buttonBox = QtWidgets.QDialogButtonBox(parent=EricListSelectionDialog)
28 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal)
29 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok)
30 self.buttonBox.setObjectName("buttonBox")
31 self.verticalLayout.addWidget(self.buttonBox)
32
33 self.retranslateUi(EricListSelectionDialog)
34 self.buttonBox.accepted.connect(EricListSelectionDialog.accept) # type: ignore
35 self.buttonBox.rejected.connect(EricListSelectionDialog.reject) # type: ignore
36 QtCore.QMetaObject.connectSlotsByName(EricListSelectionDialog)
37
38 def retranslateUi(self, EricListSelectionDialog):
39 _translate = QtCore.QCoreApplication.translate
40 EricListSelectionDialog.setWindowTitle(_translate("EricListSelectionDialog", "Select from List"))
41 self.messageLabel.setText(_translate("EricListSelectionDialog", "Select from the list below:"))

eric ide

mercurial