当前位置: 首页>>代码示例>>Java>>正文


Java CustomShortcutSet.fromString方法代码示例

本文整理汇总了Java中com.intellij.openapi.actionSystem.CustomShortcutSet.fromString方法的典型用法代码示例。如果您正苦于以下问题:Java CustomShortcutSet.fromString方法的具体用法?Java CustomShortcutSet.fromString怎么用?Java CustomShortcutSet.fromString使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.intellij.openapi.actionSystem.CustomShortcutSet的用法示例。


在下文中一共展示了CustomShortcutSet.fromString方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: createShortcut

import com.intellij.openapi.actionSystem.CustomShortcutSet; //导入方法依赖的package包/类
/**
 * Creates shortcut for mnemonic replacing standard Alt+Letter to Ctrl+Alt+Letter on Mac with jdk version newer than 6
 * @param ch mnemonic letter
 * @return shortcut for mnemonic
 */
public static CustomShortcutSet createShortcut(char ch) {
  Character mnemonic = Character.valueOf(ch);
  String shortcut = SystemInfo.isMac && SystemInfo.isJavaVersionAtLeast("1.7") ?
                    "control alt pressed " + mnemonic :
                    "alt pressed " + mnemonic;
  return CustomShortcutSet.fromString(shortcut);
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:13,代码来源:MnemonicHelper.java

示例2: getShortcut

import com.intellij.openapi.actionSystem.CustomShortcutSet; //导入方法依赖的package包/类
@Override
public ShortcutSet getShortcut() {
  return CustomShortcutSet.fromString(mySelectedOnly ? "ENTER" : SystemInfo.isMac ? "meta ENTER" : "control ENTER");
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:5,代码来源:SynchronizeDiff.java

示例3: getShortcut

import com.intellij.openapi.actionSystem.CustomShortcutSet; //导入方法依赖的package包/类
@Override
public ShortcutSet getShortcut() {
  return CustomShortcutSet.fromString("alt RIGHT");
}
 
开发者ID:lshain-android-source,项目名称:tools-idea,代码行数:5,代码来源:EnableLeft.java

示例4: getShortcut

import com.intellij.openapi.actionSystem.CustomShortcutSet; //导入方法依赖的package包/类
@Override
public ShortcutSet getShortcut() {
  return CustomShortcutSet.fromString("alt EQUALS");
}
 
开发者ID:lshain-android-source,项目名称:tools-idea,代码行数:5,代码来源:EnableEqual.java

示例5: getShortcut

import com.intellij.openapi.actionSystem.CustomShortcutSet; //导入方法依赖的package包/类
@Override
public ShortcutSet getShortcut() {
  return CustomShortcutSet.fromString("alt MINUS");
}
 
开发者ID:lshain-android-source,项目名称:tools-idea,代码行数:5,代码来源:EnableNotEqual.java

示例6: getShortcut

import com.intellij.openapi.actionSystem.CustomShortcutSet; //导入方法依赖的package包/类
@Override
public ShortcutSet getShortcut() {
  return CustomShortcutSet.fromString("alt LEFT");
}
 
开发者ID:lshain-android-source,项目名称:tools-idea,代码行数:5,代码来源:EnableRight.java


注:本文中的com.intellij.openapi.actionSystem.CustomShortcutSet.fromString方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。