1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
"""QAction creator functions"""
from . import cmds
from . import difftool
from . import hotkeys
from . import icons
from . import qtutils
from .i18n import N_
def cmd_action(widget, cmd, context, icon, *shortcuts):
"""Wrap a generic ContextCommand in a QAction"""
action = qtutils.add_action(widget, cmd.name(), cmds.run(cmd, context), *shortcuts)
action.setIcon(icon)
return action
def launch_editor(context, widget, *shortcuts):
"""Create a QAction to launch an editor"""
icon = icons.edit()
return cmd_action(
widget, cmds.LaunchEditor, context, icon, hotkeys.EDIT, *shortcuts
)
def launch_editor_at_line(context, widget, *shortcuts):
"""Create a QAction to launch an editor at the current line"""
icon = icons.edit()
return cmd_action(
widget, cmds.LaunchEditorAtLine, context, icon, hotkeys.EDIT, *shortcuts
)
def launch_difftool(context, widget):
"""Create a QAction to launch git-difftool(1)"""
icon = icons.diff()
cmd = difftool.LaunchDifftool
action = qtutils.add_action(
widget, cmd.name(), cmds.run(cmd, context), hotkeys.DIFF
)
action.setIcon(icon)
return action
def stage_or_unstage(context, widget):
"""Create a QAction to stage or unstage the selection"""
icon = icons.add()
return cmd_action(
widget, cmds.StageOrUnstage, context, icon, hotkeys.STAGE_SELECTION
)
def move_down(widget):
"""Create a QAction to select the next item"""
action = qtutils.add_action(
widget, N_('Next File'), widget.down.emit, hotkeys.MOVE_DOWN_SECONDARY
)
action.setIcon(icons.move_down())
return action
def move_up(widget):
"""Create a QAction to select the previous/above item"""
action = qtutils.add_action(
widget, N_('Previous File'), widget.up.emit, hotkeys.MOVE_UP_SECONDARY
)
action.setIcon(icons.move_up())
return action
|