src/eric7/MicroPython/Ui_BoardDataDialog.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/MicroPython/BoardDataDialog.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_BoardDataDialog(object):
13 def setupUi(self, BoardDataDialog):
14 BoardDataDialog.setObjectName("BoardDataDialog")
15 BoardDataDialog.resize(600, 650)
16 BoardDataDialog.setSizeGripEnabled(True)
17 self.verticalLayout = QtWidgets.QVBoxLayout(BoardDataDialog)
18 self.verticalLayout.setObjectName("verticalLayout")
19 self.label = QtWidgets.QLabel(parent=BoardDataDialog)
20 font = QtGui.QFont()
21 font.setPointSize(14)
22 font.setBold(True)
23 self.label.setFont(font)
24 self.label.setAlignment(QtCore.Qt.AlignmentFlag.AlignCenter)
25 self.label.setObjectName("label")
26 self.verticalLayout.addWidget(self.label)
27 self.dataTree = QtWidgets.QTreeWidget(parent=BoardDataDialog)
28 self.dataTree.setHeaderHidden(True)
29 self.dataTree.setObjectName("dataTree")
30 self.dataTree.headerItem().setText(0, "1")
31 self.verticalLayout.addWidget(self.dataTree)
32 self.buttonBox = QtWidgets.QDialogButtonBox(parent=BoardDataDialog)
33 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal)
34 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Close)
35 self.buttonBox.setObjectName("buttonBox")
36 self.verticalLayout.addWidget(self.buttonBox)
37
38 self.retranslateUi(BoardDataDialog)
39 self.buttonBox.accepted.connect(BoardDataDialog.accept) # type: ignore
40 self.buttonBox.rejected.connect(BoardDataDialog.reject) # type: ignore
41 QtCore.QMetaObject.connectSlotsByName(BoardDataDialog)
42
43 def retranslateUi(self, BoardDataDialog):
44 _translate = QtCore.QCoreApplication.translate
45 BoardDataDialog.setWindowTitle(_translate("BoardDataDialog", "Board Data"))
46 self.label.setText(_translate("BoardDataDialog", "Board Data"))

eric ide

mercurial