def show_shortcuts(app): """Shows the shortcuts window or the user manual page with the shortcuts.""" if hasattr(Gtk, "ShortcutsWindow"): shortcuts_window = ShortcutsWindow(app) shortcuts_window.show() else: show_user_manual("cheatsheet")
def _containerContextHelpClickedCb(self, unused_button): show_user_manual("codecscontainers")
def _cheatsheetCb(self, unused_button): """Show the cheatsheet section of the user manual""" show_user_manual("cheatsheet")
def _userManualCb(self, unused_button): """Handle a click on the Help button.""" show_user_manual()
def __user_manual_cb(unused_action, unused_param): show_user_manual()