Example usage for com.intellij.openapi.actionSystem CommonShortcuts getViewSource

List of usage examples for com.intellij.openapi.actionSystem CommonShortcuts getViewSource

Introduction

In this page you can find the example usage for com.intellij.openapi.actionSystem CommonShortcuts getViewSource.

Prototype

public static ShortcutSet getViewSource() 

Source Link

Usage

From source file:com.intellij.codeInsight.hint.ImplementationViewComponent.java

License:Apache License

private ActionToolbar createToolbar() {
    DefaultActionGroup group = new DefaultActionGroup();

    BackAction back = new BackAction();
    back.registerCustomShortcutSet(new CustomShortcutSet(KeyStroke.getKeyStroke(KeyEvent.VK_LEFT, 0)), this);
    group.add(back);// w w w  . j  a v a 2  s  . c  o  m

    ForwardAction forward = new ForwardAction();
    forward.registerCustomShortcutSet(new CustomShortcutSet(KeyStroke.getKeyStroke(KeyEvent.VK_RIGHT, 0)),
            this);
    group.add(forward);

    EditSourceActionBase edit = new EditSourceAction();
    edit.registerCustomShortcutSet(
            new CompositeShortcutSet(CommonShortcuts.getEditSource(), CommonShortcuts.ENTER), this);
    group.add(edit);

    edit = new ShowSourceAction();
    edit.registerCustomShortcutSet(
            new CompositeShortcutSet(CommonShortcuts.getViewSource(), CommonShortcuts.CTRL_ENTER), this);
    group.add(edit);

    return ActionManager.getInstance().createActionToolbar(ActionPlaces.UNKNOWN, group, true);
}

From source file:com.vladsch.MissingInActions.util.CommonUIShortcuts.java

License:Apache License

public static ShortcutSet getViewSource() {
    return CommonShortcuts.getViewSource();
}