Helpviewer/HelpWindow.py

changeset 110
c9a969db1469
parent 96
9624a110667d
child 113
33afff70d8ee
equal deleted inserted replaced
109:9c72858d4b7a 110:c9a969db1469
2411 2411
2412 def __filterQtHelpDocumentation(self, customFilter): 2412 def __filterQtHelpDocumentation(self, customFilter):
2413 """ 2413 """
2414 Private slot to filter the QtHelp documentation. 2414 Private slot to filter the QtHelp documentation.
2415 2415
2416 @param customFilter name of filter to be applied (QString) 2416 @param customFilter name of filter to be applied (string)
2417 """ 2417 """
2418 self.__helpEngine.setCurrentFilter(customFilter) 2418 self.__helpEngine.setCurrentFilter(customFilter)
2419 2419
2420 def __manageQtHelpDocumentation(self): 2420 def __manageQtHelpDocumentation(self):
2421 """ 2421 """
2520 2520
2521 def __showInstallationError(self, message): 2521 def __showInstallationError(self, message):
2522 """ 2522 """
2523 Private slot to show installation errors. 2523 Private slot to show installation errors.
2524 2524
2525 @param message message to be shown (QString) 2525 @param message message to be shown (string)
2526 """ 2526 """
2527 QMessageBox.warning(self, 2527 QMessageBox.warning(self,
2528 self.trUtf8("eric5 Web Browser"), 2528 self.trUtf8("eric5 Web Browser"),
2529 message) 2529 message)
2530 2530
2560 2560
2561 def __warning(self, msg): 2561 def __warning(self, msg):
2562 """ 2562 """
2563 Private slot handling warnings from the help engine. 2563 Private slot handling warnings from the help engine.
2564 2564
2565 @param msg message sent by the help engine (QString) 2565 @param msg message sent by the help engine (string)
2566 """ 2566 """
2567 QMessageBox.warning(self, 2567 QMessageBox.warning(self,
2568 self.trUtf8("Help Engine"), msg) 2568 self.trUtf8("Help Engine"), msg)
2569 2569
2570 def __showNavigationMenu(self): 2570 def __showNavigationMenu(self):

eric ide

mercurial