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