eric6/UI/CodeDocumentationViewer.py

changeset 7717
f32d7965a17e
parent 7526
92ef4bd9d2c5
child 7923
91e843545d9a
equal deleted inserted replaced
7716:313e09453306 7717:f32d7965a17e
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.

eric ide

mercurial