100 @param fromEric flag indicating whether it was called from within eric5 (boolean) |
100 @param fromEric flag indicating whether it was called from within eric5 (boolean) |
101 @keyparam initShortcutsOnly flag indicating to just initialize the keyboard |
101 @keyparam initShortcutsOnly flag indicating to just initialize the keyboard |
102 shortcuts (boolean) |
102 shortcuts (boolean) |
103 @keyparam searchWord word to search for (string) |
103 @keyparam searchWord word to search for (string) |
104 """ |
104 """ |
105 QMainWindow.__init__(self, parent) |
105 super().__init__(parent) |
106 self.setObjectName(name) |
106 self.setObjectName(name) |
107 self.setAttribute(Qt.WA_DeleteOnClose) |
107 self.setAttribute(Qt.WA_DeleteOnClose) |
108 self.setWindowTitle(self.trUtf8("eric5 Web Browser")) |
108 self.setWindowTitle(self.trUtf8("eric5 Web Browser")) |
109 |
109 |
110 self.fromEric = fromEric |
110 self.fromEric = fromEric |