27 |
27 |
28 @param engine reference to the help engine (QHelpEngine) |
28 @param engine reference to the help engine (QHelpEngine) |
29 @param mainWindow reference to the main window object (QMainWindow) |
29 @param mainWindow reference to the main window object (QMainWindow) |
30 @param parent reference to the parent widget (QWidget) |
30 @param parent reference to the parent widget (QWidget) |
31 """ |
31 """ |
32 QWidget.__init__(self, parent) |
32 super().__init__(parent) |
33 |
33 |
34 self.__engine = engine |
34 self.__engine = engine |
35 self.__mw = mainWindow |
35 self.__mw = mainWindow |
36 self.__expandDepth = -2 |
36 self.__expandDepth = -2 |
37 |
37 |