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