|
1 # Form implementation generated from reading ui file '/home/detlev/Development/Python/Eric/eric7_default/src/eric7/MicroPython/Devices/CircuitPythonUpdater/ShowBundlesDialog.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_ShowBundlesDialog(object): |
|
13 def setupUi(self, ShowBundlesDialog): |
|
14 ShowBundlesDialog.setObjectName("ShowBundlesDialog") |
|
15 ShowBundlesDialog.resize(600, 700) |
|
16 ShowBundlesDialog.setSizeGripEnabled(True) |
|
17 self.verticalLayout = QtWidgets.QVBoxLayout(ShowBundlesDialog) |
|
18 self.verticalLayout.setObjectName("verticalLayout") |
|
19 self.header = QtWidgets.QLabel(parent=ShowBundlesDialog) |
|
20 self.header.setText("") |
|
21 self.header.setObjectName("header") |
|
22 self.verticalLayout.addWidget(self.header) |
|
23 self.bundlesWidget = QtWidgets.QTreeWidget(parent=ShowBundlesDialog) |
|
24 self.bundlesWidget.setAlternatingRowColors(True) |
|
25 self.bundlesWidget.setSelectionMode(QtWidgets.QAbstractItemView.SelectionMode.NoSelection) |
|
26 self.bundlesWidget.setRootIsDecorated(False) |
|
27 self.bundlesWidget.setHeaderHidden(True) |
|
28 self.bundlesWidget.setExpandsOnDoubleClick(False) |
|
29 self.bundlesWidget.setObjectName("bundlesWidget") |
|
30 self.bundlesWidget.headerItem().setText(0, "1") |
|
31 self.verticalLayout.addWidget(self.bundlesWidget) |
|
32 self.buttonBox = QtWidgets.QDialogButtonBox(parent=ShowBundlesDialog) |
|
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(ShowBundlesDialog) |
|
39 self.buttonBox.accepted.connect(ShowBundlesDialog.accept) # type: ignore |
|
40 self.buttonBox.rejected.connect(ShowBundlesDialog.reject) # type: ignore |
|
41 QtCore.QMetaObject.connectSlotsByName(ShowBundlesDialog) |
|
42 |
|
43 def retranslateUi(self, ShowBundlesDialog): |
|
44 _translate = QtCore.QCoreApplication.translate |
|
45 ShowBundlesDialog.setWindowTitle(_translate("ShowBundlesDialog", "CircuitPython Bundles")) |