예제 #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
파일: mainwindow.py 프로젝트: GNOME/pitivi
 def __user_manual_cb(unused_action, unused_param):
     show_user_manual()