8678:85a83e4e7f18 | 8679:fd172973428e |
---|---|
1 # -*- coding: utf-8 -*- | |
2 | |
3 # Copyright (c) 2021 Detlev Offenbach <detlev@die-offenbachs.de> | |
4 # | |
5 | |
6 """ | |
7 Module implementing the help viewer base class. | |
8 """ | |
9 | |
10 from PyQt6.QtCore import QObject | |
11 | |
12 | |
13 class HelpViewerImpl(QObject): | |
14 """ | |
15 Class implementing the help viewer base class. | |
16 """ | |
17 def __init__(self, parent=None): | |
18 """ | |
19 Constructor | |
20 | |
21 @param parent reference to the parent widget | |
22 @type QWidget | |
23 """ | |
24 super().__init__(parent) |