Sat, 26 Apr 2025 12:34:32 +0200
MicroPython
- Added a configuration option to disable the support for the no longer produced Pimoroni Pico Wireless Pack.
# -*- coding: utf-8 -*- # Copyright (c) 2003 - 2025 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)