Fri, 07 Jun 2024 11:11:57 +0200
Regenerated the Ui_*.py files with project relative paths.
# Form implementation generated from reading ui file 'src/eric7/DataViews/PyProfileDialog.ui' # # Created by: PyQt6 UI code generator 6.7.0 # # WARNING: Any manual changes made to this file will be lost when pyuic6 is # run again. Do not edit this file unless you know what you are doing. from PyQt6 import QtCore, QtGui, QtWidgets class Ui_PyProfileDialog(object): def setupUi(self, PyProfileDialog): PyProfileDialog.setObjectName("PyProfileDialog") PyProfileDialog.resize(832, 587) sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Expanding) sizePolicy.setHorizontalStretch(0) sizePolicy.setVerticalStretch(3) sizePolicy.setHeightForWidth(PyProfileDialog.sizePolicy().hasHeightForWidth()) PyProfileDialog.setSizePolicy(sizePolicy) PyProfileDialog.setSizeGripEnabled(True) self.vboxlayout = QtWidgets.QVBoxLayout(PyProfileDialog) self.vboxlayout.setObjectName("vboxlayout") self.resultList = QtWidgets.QTreeWidget(parent=PyProfileDialog) sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Expanding) sizePolicy.setHorizontalStretch(0) sizePolicy.setVerticalStretch(3) sizePolicy.setHeightForWidth(self.resultList.sizePolicy().hasHeightForWidth()) self.resultList.setSizePolicy(sizePolicy) self.resultList.setAlternatingRowColors(True) self.resultList.setRootIsDecorated(False) self.resultList.setItemsExpandable(False) self.resultList.setObjectName("resultList") self.vboxlayout.addWidget(self.resultList) self.summaryList = QtWidgets.QTreeWidget(parent=PyProfileDialog) sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Expanding) sizePolicy.setHorizontalStretch(0) sizePolicy.setVerticalStretch(1) sizePolicy.setHeightForWidth(self.summaryList.sizePolicy().hasHeightForWidth()) self.summaryList.setSizePolicy(sizePolicy) self.summaryList.setAlternatingRowColors(True) self.summaryList.setRootIsDecorated(False) self.summaryList.setItemsExpandable(False) self.summaryList.setObjectName("summaryList") self.vboxlayout.addWidget(self.summaryList) self.checkProgress = QtWidgets.QProgressBar(parent=PyProfileDialog) self.checkProgress.setProperty("value", 0) self.checkProgress.setOrientation(QtCore.Qt.Orientation.Horizontal) self.checkProgress.setObjectName("checkProgress") self.vboxlayout.addWidget(self.checkProgress) self.buttonBox = QtWidgets.QDialogButtonBox(parent=PyProfileDialog) self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal) self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Close) self.buttonBox.setObjectName("buttonBox") self.vboxlayout.addWidget(self.buttonBox) self.retranslateUi(PyProfileDialog) QtCore.QMetaObject.connectSlotsByName(PyProfileDialog) PyProfileDialog.setTabOrder(self.resultList, self.summaryList) def retranslateUi(self, PyProfileDialog): _translate = QtCore.QCoreApplication.translate PyProfileDialog.setWindowTitle(_translate("PyProfileDialog", "Profile Results")) PyProfileDialog.setWhatsThis(_translate("PyProfileDialog", "<b>Profile Results</b>\n" "<p>This dialog shows the profile results.</p>")) self.resultList.setWhatsThis(_translate("PyProfileDialog", "<b>Profile Results</b>\n" "<p>This list shows the profile results. There are several actions available via the context menu.</p>")) self.resultList.setSortingEnabled(True) self.resultList.headerItem().setText(0, _translate("PyProfileDialog", "Nr. Calls")) self.resultList.headerItem().setText(1, _translate("PyProfileDialog", "Total Time")) self.resultList.headerItem().setText(2, _translate("PyProfileDialog", "Tot. Time / Call")) self.resultList.headerItem().setText(3, _translate("PyProfileDialog", "Cumulative Time")) self.resultList.headerItem().setText(4, _translate("PyProfileDialog", "Cum. Time / Call")) self.resultList.headerItem().setText(5, _translate("PyProfileDialog", "Filename")) self.resultList.headerItem().setText(6, _translate("PyProfileDialog", "Line")) self.resultList.headerItem().setText(7, _translate("PyProfileDialog", "Function")) self.summaryList.setWhatsThis(_translate("PyProfileDialog", "<b>Summary</b>\n" "<p>This shows some overall profile data. There are several actions available via the context menu.</p>")) self.summaryList.headerItem().setText(0, _translate("PyProfileDialog", "Summary")) self.summaryList.headerItem().setText(1, _translate("PyProfileDialog", "#")) self.checkProgress.setToolTip(_translate("PyProfileDialog", "Shows the progress of the profile data calculation")) self.checkProgress.setFormat(_translate("PyProfileDialog", "%v/%m Files"))