src/eric7/MicroPython/Devices/CircuitPythonUpdater/Ui_ShowInstalledDialog.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/Devices/CircuitPythonUpdater/ShowInstalledDialog.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_ShowInstalledDialog(object):
13 def setupUi(self, ShowInstalledDialog):
14 ShowInstalledDialog.setObjectName("ShowInstalledDialog")
15 ShowInstalledDialog.resize(400, 500)
16 ShowInstalledDialog.setSizeGripEnabled(True)
17 self.verticalLayout = QtWidgets.QVBoxLayout(ShowInstalledDialog)
18 self.verticalLayout.setObjectName("verticalLayout")
19 self.modulesList = QtWidgets.QTreeWidget(parent=ShowInstalledDialog)
20 self.modulesList.setAlternatingRowColors(True)
21 self.modulesList.setSelectionMode(QtWidgets.QAbstractItemView.SelectionMode.NoSelection)
22 self.modulesList.setRootIsDecorated(False)
23 self.modulesList.setItemsExpandable(False)
24 self.modulesList.setObjectName("modulesList")
25 self.modulesList.header().setSortIndicatorShown(False)
26 self.verticalLayout.addWidget(self.modulesList)
27 self.buttonBox = QtWidgets.QDialogButtonBox(parent=ShowInstalledDialog)
28 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal)
29 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Close)
30 self.buttonBox.setObjectName("buttonBox")
31 self.verticalLayout.addWidget(self.buttonBox)
32
33 self.retranslateUi(ShowInstalledDialog)
34 self.buttonBox.accepted.connect(ShowInstalledDialog.accept) # type: ignore
35 self.buttonBox.rejected.connect(ShowInstalledDialog.reject) # type: ignore
36 QtCore.QMetaObject.connectSlotsByName(ShowInstalledDialog)
37
38 def retranslateUi(self, ShowInstalledDialog):
39 _translate = QtCore.QCoreApplication.translate
40 ShowInstalledDialog.setWindowTitle(_translate("ShowInstalledDialog", "Installed Modules"))
41 self.modulesList.headerItem().setText(0, _translate("ShowInstalledDialog", "Module"))
42 self.modulesList.headerItem().setText(1, _translate("ShowInstalledDialog", "Version"))

eric ide

mercurial