2294 |
2294 |
2295 self.backAct.setEnabled(False) |
2295 self.backAct.setEnabled(False) |
2296 self.forwardAct.setEnabled(False) |
2296 self.forwardAct.setEnabled(False) |
2297 |
2297 |
2298 # now read the keyboard shortcuts for the actions |
2298 # now read the keyboard shortcuts for the actions |
2299 Shortcuts.readShortcuts(helpViewer=self) |
2299 Shortcuts.readShortcuts(webBrowser=self) |
2300 |
2300 |
2301 def getActions(self): |
2301 def getActions(self): |
2302 """ |
2302 """ |
2303 Public method to get a list of all actions. |
2303 Public method to get a list of all actions. |
2304 |
2304 |
5531 """ |
5531 """ |
5532 Private slot to configure the keyboard shortcuts. |
5532 Private slot to configure the keyboard shortcuts. |
5533 """ |
5533 """ |
5534 if self.__shortcutsDialog is None: |
5534 if self.__shortcutsDialog is None: |
5535 self.__shortcutsDialog = ShortcutsDialog(self) |
5535 self.__shortcutsDialog = ShortcutsDialog(self) |
5536 self.__shortcutsDialog.populate(helpViewer=self) |
5536 self.__shortcutsDialog.populate(webBrowser=self) |
5537 self.__shortcutsDialog.show() |
5537 self.__shortcutsDialog.show() |
5538 |
5538 |
5539 @pyqtSlot() |
5539 @pyqtSlot() |
5540 def __exportShortcuts(self): |
5540 def __exportShortcuts(self): |
5541 """ |
5541 """ |