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

eric ide

mercurial