本文整理汇总了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);
}
示例2: getShortcut
import com.intellij.openapi.actionSystem.CustomShortcutSet; //导入方法依赖的package包/类
@Override
public ShortcutSet getShortcut() {
return CustomShortcutSet.fromString(mySelectedOnly ? "ENTER" : SystemInfo.isMac ? "meta ENTER" : "control ENTER");
}
示例3: getShortcut
import com.intellij.openapi.actionSystem.CustomShortcutSet; //导入方法依赖的package包/类
@Override
public ShortcutSet getShortcut() {
return CustomShortcutSet.fromString("alt RIGHT");
}
示例4: getShortcut
import com.intellij.openapi.actionSystem.CustomShortcutSet; //导入方法依赖的package包/类
@Override
public ShortcutSet getShortcut() {
return CustomShortcutSet.fromString("alt EQUALS");
}
示例5: getShortcut
import com.intellij.openapi.actionSystem.CustomShortcutSet; //导入方法依赖的package包/类
@Override
public ShortcutSet getShortcut() {
return CustomShortcutSet.fromString("alt MINUS");
}
示例6: getShortcut
import com.intellij.openapi.actionSystem.CustomShortcutSet; //导入方法依赖的package包/类
@Override
public ShortcutSet getShortcut() {
return CustomShortcutSet.fromString("alt LEFT");
}