src/eric7/Debugger/Ui_VariableDetailDialog.py

Tue, 13 May 2025 16:46:34 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Tue, 13 May 2025 16:46:34 +0200
branch
eric7
changeset 11285
ef8675deb106
parent 10745
2921faddeaec
permissions
-rw-r--r--

Regenerated the SBOM file for eric-ide (incl. plug-ins).

# Form implementation generated from reading ui file 'src/eric7/Debugger/VariableDetailDialog.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_VariableDetailDialog(object):
    def setupUi(self, VariableDetailDialog):
        VariableDetailDialog.setObjectName("VariableDetailDialog")
        VariableDetailDialog.resize(800, 350)
        VariableDetailDialog.setSizeGripEnabled(True)
        VariableDetailDialog.setModal(True)
        self.gridlayout = QtWidgets.QGridLayout(VariableDetailDialog)
        self.gridlayout.setObjectName("gridlayout")
        self.buttonBox = QtWidgets.QDialogButtonBox(parent=VariableDetailDialog)
        self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal)
        self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Ok)
        self.buttonBox.setObjectName("buttonBox")
        self.gridlayout.addWidget(self.buttonBox, 3, 0, 1, 2)
        self.TextLabel1 = QtWidgets.QLabel(parent=VariableDetailDialog)
        self.TextLabel1.setObjectName("TextLabel1")
        self.gridlayout.addWidget(self.TextLabel1, 0, 0, 1, 1)
        self.eType = QtWidgets.QLineEdit(parent=VariableDetailDialog)
        self.eType.setReadOnly(True)
        self.eType.setObjectName("eType")
        self.gridlayout.addWidget(self.eType, 1, 1, 1, 1)
        self.eName = QtWidgets.QLineEdit(parent=VariableDetailDialog)
        self.eName.setReadOnly(True)
        self.eName.setObjectName("eName")
        self.gridlayout.addWidget(self.eName, 0, 1, 1, 1)
        self.TextLabel2 = QtWidgets.QLabel(parent=VariableDetailDialog)
        self.TextLabel2.setObjectName("TextLabel2")
        self.gridlayout.addWidget(self.TextLabel2, 1, 0, 1, 1)
        self.TextLabel3 = QtWidgets.QLabel(parent=VariableDetailDialog)
        self.TextLabel3.setAlignment(QtCore.Qt.AlignmentFlag.AlignTop)
        self.TextLabel3.setObjectName("TextLabel3")
        self.gridlayout.addWidget(self.TextLabel3, 2, 0, 1, 1)
        self.eValue = QtWidgets.QTextEdit(parent=VariableDetailDialog)
        self.eValue.setReadOnly(True)
        self.eValue.setAcceptRichText(False)
        self.eValue.setObjectName("eValue")
        self.gridlayout.addWidget(self.eValue, 2, 1, 1, 1)

        self.retranslateUi(VariableDetailDialog)
        self.buttonBox.accepted.connect(VariableDetailDialog.accept) # type: ignore
        self.buttonBox.rejected.connect(VariableDetailDialog.reject) # type: ignore
        QtCore.QMetaObject.connectSlotsByName(VariableDetailDialog)
        VariableDetailDialog.setTabOrder(self.eName, self.eType)
        VariableDetailDialog.setTabOrder(self.eType, self.eValue)

    def retranslateUi(self, VariableDetailDialog):
        _translate = QtCore.QCoreApplication.translate
        VariableDetailDialog.setWindowTitle(_translate("VariableDetailDialog", "Variable Details"))
        self.TextLabel1.setText(_translate("VariableDetailDialog", "Name:"))
        self.TextLabel2.setText(_translate("VariableDetailDialog", "Type:"))
        self.TextLabel3.setText(_translate("VariableDetailDialog", "Value:"))

eric ide

mercurial