src/eric7/DataViews/Ui_PyProfileDialog.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/DataViews/PyProfileDialog.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_PyProfileDialog(object):
13 def setupUi(self, PyProfileDialog):
14 PyProfileDialog.setObjectName("PyProfileDialog")
15 PyProfileDialog.resize(832, 587)
16 sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Expanding)
17 sizePolicy.setHorizontalStretch(0)
18 sizePolicy.setVerticalStretch(3)
19 sizePolicy.setHeightForWidth(PyProfileDialog.sizePolicy().hasHeightForWidth())
20 PyProfileDialog.setSizePolicy(sizePolicy)
21 PyProfileDialog.setSizeGripEnabled(True)
22 self.vboxlayout = QtWidgets.QVBoxLayout(PyProfileDialog)
23 self.vboxlayout.setObjectName("vboxlayout")
24 self.resultList = QtWidgets.QTreeWidget(parent=PyProfileDialog)
25 sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Expanding)
26 sizePolicy.setHorizontalStretch(0)
27 sizePolicy.setVerticalStretch(3)
28 sizePolicy.setHeightForWidth(self.resultList.sizePolicy().hasHeightForWidth())
29 self.resultList.setSizePolicy(sizePolicy)
30 self.resultList.setAlternatingRowColors(True)
31 self.resultList.setRootIsDecorated(False)
32 self.resultList.setItemsExpandable(False)
33 self.resultList.setObjectName("resultList")
34 self.vboxlayout.addWidget(self.resultList)
35 self.summaryList = QtWidgets.QTreeWidget(parent=PyProfileDialog)
36 sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Expanding)
37 sizePolicy.setHorizontalStretch(0)
38 sizePolicy.setVerticalStretch(1)
39 sizePolicy.setHeightForWidth(self.summaryList.sizePolicy().hasHeightForWidth())
40 self.summaryList.setSizePolicy(sizePolicy)
41 self.summaryList.setAlternatingRowColors(True)
42 self.summaryList.setRootIsDecorated(False)
43 self.summaryList.setItemsExpandable(False)
44 self.summaryList.setObjectName("summaryList")
45 self.vboxlayout.addWidget(self.summaryList)
46 self.checkProgress = QtWidgets.QProgressBar(parent=PyProfileDialog)
47 self.checkProgress.setProperty("value", 0)
48 self.checkProgress.setOrientation(QtCore.Qt.Orientation.Horizontal)
49 self.checkProgress.setObjectName("checkProgress")
50 self.vboxlayout.addWidget(self.checkProgress)
51 self.buttonBox = QtWidgets.QDialogButtonBox(parent=PyProfileDialog)
52 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal)
53 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Close)
54 self.buttonBox.setObjectName("buttonBox")
55 self.vboxlayout.addWidget(self.buttonBox)
56
57 self.retranslateUi(PyProfileDialog)
58 QtCore.QMetaObject.connectSlotsByName(PyProfileDialog)
59 PyProfileDialog.setTabOrder(self.resultList, self.summaryList)
60
61 def retranslateUi(self, PyProfileDialog):
62 _translate = QtCore.QCoreApplication.translate
63 PyProfileDialog.setWindowTitle(_translate("PyProfileDialog", "Profile Results"))
64 PyProfileDialog.setWhatsThis(_translate("PyProfileDialog", "<b>Profile Results</b>\n"
65 "<p>This dialog shows the profile results.</p>"))
66 self.resultList.setWhatsThis(_translate("PyProfileDialog", "<b>Profile Results</b>\n"
67 "<p>This list shows the profile results. There are several actions available via the context menu.</p>"))
68 self.resultList.setSortingEnabled(True)
69 self.resultList.headerItem().setText(0, _translate("PyProfileDialog", "Nr. Calls"))
70 self.resultList.headerItem().setText(1, _translate("PyProfileDialog", "Total Time"))
71 self.resultList.headerItem().setText(2, _translate("PyProfileDialog", "Tot. Time / Call"))
72 self.resultList.headerItem().setText(3, _translate("PyProfileDialog", "Cumulative Time"))
73 self.resultList.headerItem().setText(4, _translate("PyProfileDialog", "Cum. Time / Call"))
74 self.resultList.headerItem().setText(5, _translate("PyProfileDialog", "Filename"))
75 self.resultList.headerItem().setText(6, _translate("PyProfileDialog", "Line"))
76 self.resultList.headerItem().setText(7, _translate("PyProfileDialog", "Function"))
77 self.summaryList.setWhatsThis(_translate("PyProfileDialog", "<b>Summary</b>\n"
78 "<p>This shows some overall profile data. There are several actions available via the context menu.</p>"))
79 self.summaryList.headerItem().setText(0, _translate("PyProfileDialog", "Summary"))
80 self.summaryList.headerItem().setText(1, _translate("PyProfileDialog", "#"))
81 self.checkProgress.setToolTip(_translate("PyProfileDialog", "Shows the progress of the profile data calculation"))
82 self.checkProgress.setFormat(_translate("PyProfileDialog", "%v/%m Files"))

eric ide

mercurial