5 |
5 |
6 """ |
6 """ |
7 Module implementing a widget to show some source code information provided by |
7 Module implementing a widget to show some source code information provided by |
8 plug-ins. |
8 plug-ins. |
9 """ |
9 """ |
10 |
|
11 |
10 |
12 from PyQt5.QtCore import pyqtSlot, pyqtSignal, Qt, QUrl, QTimer |
11 from PyQt5.QtCore import pyqtSlot, pyqtSignal, Qt, QUrl, QTimer |
13 from PyQt5.QtGui import QCursor |
12 from PyQt5.QtGui import QCursor |
14 from PyQt5.QtWidgets import ( |
13 from PyQt5.QtWidgets import ( |
15 QWidget, QVBoxLayout, QHBoxLayout, QLabel, QComboBox, QSizePolicy, |
14 QWidget, QVBoxLayout, QHBoxLayout, QLabel, QComboBox, QSizePolicy, |
24 from .CodeDocumentationViewerTemplate import ( |
23 from .CodeDocumentationViewerTemplate import ( |
25 prepareDocumentationViewerHtmlDocument, |
24 prepareDocumentationViewerHtmlDocument, |
26 prepareDocumentationViewerHtmlDocWarningDocument, |
25 prepareDocumentationViewerHtmlDocWarningDocument, |
27 prepareDocumentationViewerHtmlWarningDocument |
26 prepareDocumentationViewerHtmlWarningDocument |
28 ) |
27 ) |
29 |
|
30 from .data import codeDocumentationViewer_rc # __IGNORE_WARNING__ |
|
31 |
28 |
32 |
29 |
33 class DocumentationViewerWidget(QWidget): |
30 class DocumentationViewerWidget(QWidget): |
34 """ |
31 """ |
35 Class implementing a rich text documentation viewer. |
32 Class implementing a rich text documentation viewer. |