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