Helpviewer/HelpTocWidget.py

branch
Py2 comp.
changeset 2525
8b507a9a2d40
parent 2302
f29e9405c851
child 3057
10516539f238
equal deleted inserted replaced
2523:139f182b72f6 2525:8b507a9a2d40
4 # 4 #
5 5
6 """ 6 """
7 Module implementing a window for showing the QtHelp TOC. 7 Module implementing a window for showing the QtHelp TOC.
8 """ 8 """
9
10 from __future__ import unicode_literals # __IGNORE_WARNING__
9 11
10 from PyQt4.QtCore import pyqtSignal, Qt, QEvent, QUrl 12 from PyQt4.QtCore import pyqtSignal, Qt, QEvent, QUrl
11 from PyQt4.QtGui import QWidget, QVBoxLayout, QMenu 13 from PyQt4.QtGui import QWidget, QVBoxLayout, QMenu
12 14
13 15
27 29
28 @param engine reference to the help engine (QHelpEngine) 30 @param engine reference to the help engine (QHelpEngine)
29 @param mainWindow reference to the main window object (QMainWindow) 31 @param mainWindow reference to the main window object (QMainWindow)
30 @param parent reference to the parent widget (QWidget) 32 @param parent reference to the parent widget (QWidget)
31 """ 33 """
32 super().__init__(parent) 34 super(HelpTocWidget, self).__init__(parent)
33 35
34 self.__engine = engine 36 self.__engine = engine
35 self.__mw = mainWindow 37 self.__mw = mainWindow
36 self.__expandDepth = -2 38 self.__expandDepth = -2
37 39

eric ide

mercurial