|
1 # Form implementation generated from reading ui file '/home/detlev/Development/Python/Eric/eric7_default/src/eric7/UI/PythonDisViewer.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_PythonDisViewer(object): |
|
13 def setupUi(self, PythonDisViewer): |
|
14 PythonDisViewer.setObjectName("PythonDisViewer") |
|
15 PythonDisViewer.resize(400, 577) |
|
16 self.verticalLayout_2 = QtWidgets.QVBoxLayout(PythonDisViewer) |
|
17 self.verticalLayout_2.setContentsMargins(0, 0, 0, 0) |
|
18 self.verticalLayout_2.setObjectName("verticalLayout_2") |
|
19 self.splitter = QtWidgets.QSplitter(parent=PythonDisViewer) |
|
20 self.splitter.setOrientation(QtCore.Qt.Orientation.Vertical) |
|
21 self.splitter.setChildrenCollapsible(False) |
|
22 self.splitter.setObjectName("splitter") |
|
23 self.layoutWidget = QtWidgets.QWidget(parent=self.splitter) |
|
24 self.layoutWidget.setObjectName("layoutWidget") |
|
25 self.verticalLayout = QtWidgets.QVBoxLayout(self.layoutWidget) |
|
26 self.verticalLayout.setContentsMargins(0, 0, 0, 0) |
|
27 self.verticalLayout.setObjectName("verticalLayout") |
|
28 self.disWidget = QtWidgets.QTreeWidget(parent=self.layoutWidget) |
|
29 sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Expanding) |
|
30 sizePolicy.setHorizontalStretch(0) |
|
31 sizePolicy.setVerticalStretch(0) |
|
32 sizePolicy.setHeightForWidth(self.disWidget.sizePolicy().hasHeightForWidth()) |
|
33 self.disWidget.setSizePolicy(sizePolicy) |
|
34 self.disWidget.setContextMenuPolicy(QtCore.Qt.ContextMenuPolicy.CustomContextMenu) |
|
35 self.disWidget.setAlternatingRowColors(True) |
|
36 self.disWidget.setSelectionMode(QtWidgets.QAbstractItemView.SelectionMode.ExtendedSelection) |
|
37 self.disWidget.setAllColumnsShowFocus(True) |
|
38 self.disWidget.setObjectName("disWidget") |
|
39 self.disWidget.headerItem().setText(0, "1") |
|
40 self.verticalLayout.addWidget(self.disWidget) |
|
41 self.currentInfoLabel = QtWidgets.QLabel(parent=self.layoutWidget) |
|
42 self.currentInfoLabel.setObjectName("currentInfoLabel") |
|
43 self.verticalLayout.addWidget(self.currentInfoLabel) |
|
44 self.labeledInfoLabel = QtWidgets.QLabel(parent=self.layoutWidget) |
|
45 self.labeledInfoLabel.setObjectName("labeledInfoLabel") |
|
46 self.verticalLayout.addWidget(self.labeledInfoLabel) |
|
47 self.codeInfoWidget = QtWidgets.QTreeWidget(parent=self.splitter) |
|
48 sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Expanding) |
|
49 sizePolicy.setHorizontalStretch(0) |
|
50 sizePolicy.setVerticalStretch(0) |
|
51 sizePolicy.setHeightForWidth(self.codeInfoWidget.sizePolicy().hasHeightForWidth()) |
|
52 self.codeInfoWidget.setSizePolicy(sizePolicy) |
|
53 self.codeInfoWidget.setContextMenuPolicy(QtCore.Qt.ContextMenuPolicy.CustomContextMenu) |
|
54 self.codeInfoWidget.setAlternatingRowColors(True) |
|
55 self.codeInfoWidget.setObjectName("codeInfoWidget") |
|
56 self.codeInfoWidget.headerItem().setText(0, "1") |
|
57 self.verticalLayout_2.addWidget(self.splitter) |
|
58 |
|
59 self.retranslateUi(PythonDisViewer) |
|
60 QtCore.QMetaObject.connectSlotsByName(PythonDisViewer) |
|
61 |
|
62 def retranslateUi(self, PythonDisViewer): |
|
63 _translate = QtCore.QCoreApplication.translate |
|
64 PythonDisViewer.setWindowTitle(_translate("PythonDisViewer", "Disassembly")) |
|
65 self.currentInfoLabel.setText(_translate("PythonDisViewer", "italic: current instruction")) |
|
66 self.labeledInfoLabel.setText(_translate("PythonDisViewer", "bold: labeled instruction")) |