Fri, 25 Oct 2024 17:58:59 +0200
Modified modal dialog usage to always include a valid parent (needed for Wayland).
# -*- coding: utf-8 -*- # Copyright (c) 2003 - 2024 Detlev Offenbach <detlev@die-offenbachs.de> # """ Module implementing the variable detail dialog. """ from PyQt6.QtWidgets import QDialog from .Ui_VariableDetailDialog import Ui_VariableDetailDialog class VariableDetailDialog(QDialog, Ui_VariableDetailDialog): """ Class implementing the variable detail dialog. This dialog shows the name, the type and the value of a variable in a read only dialog. It is opened upon a double click in the variables viewer widget. """ def __init__(self, var, vtype, value, parent=None): """ Constructor @param var the variables name @type str @param vtype the variables type @type str @param value the variables value @type str @param parent reference to the parent widget (defaults to None) @type QWidget (optional) """ super().__init__(parent=parent) self.setupUi(self) # set the different fields self.eName.setText(var) self.eType.setText(vtype) self.eValue.setPlainText(value)