Esempio n. 1
0
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")
Esempio n. 2
0
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")
Esempio n. 3
0
 def _containerContextHelpClickedCb(self, unused_button):
     show_user_manual("codecscontainers")
Esempio n. 4
0
 def _cheatsheetCb(self, unused_button):
     """Show the cheatsheet section of the user manual"""
     show_user_manual("cheatsheet")
Esempio n. 5
0
 def _userManualCb(self, unused_button):
     """Handle a click on the Help button."""
     show_user_manual()
Esempio n. 6
0
 def __user_manual_cb(unused_action, unused_param):
     show_user_manual()
Esempio n. 7
0
 def _containerContextHelpClickedCb(self, unused_button):
     show_user_manual("codecscontainers")
Esempio n. 8
0
 def _cheatsheetCb(self, unused_button):
     """Show the cheatsheet section of the user manual"""
     show_user_manual("cheatsheet")
Esempio n. 9
0
 def _userManualCb(self, unused_button):
     """Handle a click on the Help button."""
     show_user_manual()
Esempio n. 10
0
 def __user_manual_cb(unused_action, unused_param):
     show_user_manual()