本文整理汇总了Java中javafx.scene.input.KeyEvent.isShortcutDown方法的典型用法代码示例。如果您正苦于以下问题:Java KeyEvent.isShortcutDown方法的具体用法?Java KeyEvent.isShortcutDown怎么用?Java KeyEvent.isShortcutDown使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类javafx.scene.input.KeyEvent
的用法示例。
在下文中一共展示了KeyEvent.isShortcutDown方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: addHotkey
import javafx.scene.input.KeyEvent; //导入方法依赖的package包/类
private static boolean addHotkey(KeyEvent event, String function) {
String keyCombString = "";
boolean modified = false;
if (event.isShiftDown()) {
modified = true;
keyCombString += "Shift+";
}
if (event.isAltDown()) {
modified = true;
keyCombString += "Alt+";
}
if (event.isShortcutDown()) {
modified = true;
keyCombString += "Shortcut+";
}
keyCombString += event.getCode().getName();
if (!event.getCode().isModifierKey() && modified) {
hotkeys.get(function).setHotkey(keyCombString);
try {
saveHotkeys();
} catch (ConfigurationException e) {
e.printStackTrace();
}
return true;
}
return false;
}
示例2: onKeyPressed
import javafx.scene.input.KeyEvent; //导入方法依赖的package包/类
private void onKeyPressed(KeyEvent event) {
if (event.isShortcutDown() && event.getCode() == KeyCode.Z) {
eventBus.post(MenuActionEvent.UNDO);
event.consume();
} else if (event.isShortcutDown() && event.getCode() == KeyCode.Y) {
eventBus.post(MenuActionEvent.REDO);
event.consume();
}
}