Thu, 07 Oct 2021 20:22:02 +0200
Continued implementing the embedded help viewer widget.
# -*- coding: utf-8 -*- # Copyright (c) 2021 Detlev Offenbach <detlev@die-offenbachs.de> # """ Module implementing the help viewer base class. """ from PyQt6.QtCore import QObject class HelpViewerImpl(QObject): """ Class implementing the help viewer base class. """ def __init__(self, parent=None): """ Constructor @param parent reference to the parent widget @type QWidget """ super().__init__(parent)