src/eric7/EricWidgets/Ui_EricComboSelectionDialog.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/EricComboSelectionDialog.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_EricComboSelectionDialog(object):
13 def setupUi(self, EricComboSelectionDialog):
14 EricComboSelectionDialog.setObjectName("EricComboSelectionDialog")
15 EricComboSelectionDialog.resize(400, 100)
16 EricComboSelectionDialog.setSizeGripEnabled(True)
17 self.verticalLayout = QtWidgets.QVBoxLayout(EricComboSelectionDialog)
18 self.verticalLayout.setObjectName("verticalLayout")
19 self.messageLabel = QtWidgets.QLabel(parent=EricComboSelectionDialog)
20 self.messageLabel.setWordWrap(True)
21 self.messageLabel.setObjectName("messageLabel")
22 self.verticalLayout.addWidget(self.messageLabel)
23 self.selectionComboBox = QtWidgets.QComboBox(parent=EricComboSelectionDialog)
24 self.selectionComboBox.setObjectName("selectionComboBox")
25 self.verticalLayout.addWidget(self.selectionComboBox)
26 self.buttonBox = QtWidgets.QDialogButtonBox(parent=EricComboSelectionDialog)
27 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal)
28 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok)
29 self.buttonBox.setObjectName("buttonBox")
30 self.verticalLayout.addWidget(self.buttonBox)
31
32 self.retranslateUi(EricComboSelectionDialog)
33 self.buttonBox.accepted.connect(EricComboSelectionDialog.accept) # type: ignore
34 self.buttonBox.rejected.connect(EricComboSelectionDialog.reject) # type: ignore
35 QtCore.QMetaObject.connectSlotsByName(EricComboSelectionDialog)
36
37 def retranslateUi(self, EricComboSelectionDialog):
38 _translate = QtCore.QCoreApplication.translate
39 EricComboSelectionDialog.setWindowTitle(_translate("EricComboSelectionDialog", "Select from List"))
40 self.messageLabel.setText(_translate("EricComboSelectionDialog", "Select from the list below:"))

eric ide

mercurial