Package com.intellij.openapi.keymap

Examples of com.intellij.openapi.keymap.Keymap


  private static String createTooltip(SonarIssue issue) {
    String myShortcutText;
    final KeymapManager keymapManager = KeymapManager.getInstance();
    if (keymapManager != null) {
      final Keymap keymap = keymapManager.getActiveKeymap();
      myShortcutText = keymap == null ? "" : "(" + KeymapUtil.getShortcutsText(keymap.getShortcuts(IdeActions.ACTION_SHOW_ERROR_DESCRIPTION)) + ")";
    }
    else {
      myShortcutText = "";
    }
    @NonNls final String link = " <a "
View Full Code Here


      if (settings.isOptimizeImports()) {
        PropertiesComponent.getInstance().setValue(LayoutCodeConstants.OPTIMIZE_IMPORTS_KEY,
            Boolean.toString(false));
      }
      Keymap keyMap = getKeyMap();
      installShortcut(keyMap, OPTIMIZE_IMPORTS);
      installShortcut(keyMap, OPTIMIZE_IMPORTS_OLD_PLUGIN);
    }

  }
View Full Code Here

      keyMap.addShortcut(OPTIMIZE_IMPORTS_PLUGIN, shortcut);
    }
  }

  private Keymap getKeyMap() {
    Keymap keymap = KeymapManagerImpl.getInstance().getActiveKeymap().getParent();
    if (keymap == null) {
      keymap = KeymapManagerImpl.getInstance().getActiveKeymap();
    }
    return keymap;
  }
View Full Code Here

  private void uninstallCodeFormatter() {
    CodeStyleManager manager = CodeStyleManager.getInstance(project);
    while (manager instanceof EclipseCodeStyleManager) {
      manager = ((EclipseCodeStyleManager) manager).getOriginal();
      registerCodeStyleManager(project, manager);
      Keymap parent = getKeyMap();
      uninstallShortcut(parent, OPTIMIZE_IMPORTS_OLD_PLUGIN);
      uninstallShortcut(parent, OPTIMIZE_IMPORTS_PLUGIN);
    }

  }
View Full Code Here

    public BindCtrlShiftTtoFlexUnit(){
    }

    public void initComponent(){
        //hack: hooking into ctrl+shift+T ;)
        final Keymap keymap = KeymapManagerImpl.getInstance().getActiveKeymap();
        keymap.addShortcut("GoToFlexUnitTestOrCode", new KeyboardShortcut(KeyStroke.getKeyStroke('T', InputEvent.CTRL_MASK + InputEvent.SHIFT_MASK), null));
    }
View Full Code Here

TOP

Related Classes of com.intellij.openapi.keymap.Keymap

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.