|
1 # Form implementation generated from reading ui file '/home/detlev/Development/Python/Eric/eric7_default/src/eric7/MicroPython/BluetoothDialogs/BluetoothStatusDialog.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_BluetoothStatusDialog(object): |
|
13 def setupUi(self, BluetoothStatusDialog): |
|
14 BluetoothStatusDialog.setObjectName("BluetoothStatusDialog") |
|
15 BluetoothStatusDialog.resize(600, 650) |
|
16 BluetoothStatusDialog.setSizeGripEnabled(True) |
|
17 self.verticalLayout = QtWidgets.QVBoxLayout(BluetoothStatusDialog) |
|
18 self.verticalLayout.setObjectName("verticalLayout") |
|
19 self.label = QtWidgets.QLabel(parent=BluetoothStatusDialog) |
|
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.statusTree = QtWidgets.QTreeWidget(parent=BluetoothStatusDialog) |
|
28 self.statusTree.setRootIsDecorated(False) |
|
29 self.statusTree.setItemsExpandable(False) |
|
30 self.statusTree.setHeaderHidden(True) |
|
31 self.statusTree.setObjectName("statusTree") |
|
32 self.statusTree.headerItem().setText(0, "1") |
|
33 self.verticalLayout.addWidget(self.statusTree) |
|
34 self.buttonBox = QtWidgets.QDialogButtonBox(parent=BluetoothStatusDialog) |
|
35 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal) |
|
36 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Close) |
|
37 self.buttonBox.setObjectName("buttonBox") |
|
38 self.verticalLayout.addWidget(self.buttonBox) |
|
39 |
|
40 self.retranslateUi(BluetoothStatusDialog) |
|
41 self.buttonBox.accepted.connect(BluetoothStatusDialog.accept) # type: ignore |
|
42 self.buttonBox.rejected.connect(BluetoothStatusDialog.reject) # type: ignore |
|
43 QtCore.QMetaObject.connectSlotsByName(BluetoothStatusDialog) |
|
44 |
|
45 def retranslateUi(self, BluetoothStatusDialog): |
|
46 _translate = QtCore.QCoreApplication.translate |
|
47 BluetoothStatusDialog.setWindowTitle(_translate("BluetoothStatusDialog", "Bluetooth Status")) |
|
48 self.label.setText(_translate("BluetoothStatusDialog", "Bluetooth Status")) |