コード例 #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
ファイル: startupwizard.py プロジェクト: palango/pitivi
 def _cheatsheetCb(self, unused_button):
     """Show the cheatsheet section of the user manual"""
     show_user_manual("cheatsheet")
コード例 #5
0
ファイル: startupwizard.py プロジェクト: palango/pitivi
 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
ファイル: startupwizard.py プロジェクト: jojva/pitivi
 def _cheatsheetCb(self, unused_button):
     """Show the cheatsheet section of the user manual"""
     show_user_manual("cheatsheet")
コード例 #9
0
ファイル: startupwizard.py プロジェクト: jojva/pitivi
 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()