%PDF- %PDF-
Direktori : /lib/calibre/calibre/gui2/actions/ |
Current File : //lib/calibre/calibre/gui2/actions/help.py |
#!/usr/bin/env python3 __license__ = 'GPL v3' __copyright__ = '2010, Kovid Goyal <kovid@kovidgoyal.net>' __docformat__ = 'restructuredtext en' from qt.core import QUrl from calibre.gui2 import open_url from calibre.gui2.actions import InterfaceAction from calibre.utils.localization import localize_user_manual_link class HelpAction(InterfaceAction): name = 'Help' action_spec = (_('Help'), 'help.png', _('Browse the calibre User Manual'), _('F1'),) def genesis(self): self.qaction.triggered.connect(self.show_help) def show_help(self, *args): open_url(QUrl(localize_user_manual_link('https://manual.calibre-ebook.com')))