示例#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
文件: shortcuts.py 项目: GNOME/pitivi
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
文件: render.py 项目: dz0ny/pitivi
 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
文件: render.py 项目: jojva/pitivi
 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()