本文整理汇总了Java中org.eclipse.jface.bindings.keys.SWTKeySupport.convertEventToUnmodifiedAccelerator方法的典型用法代码示例。如果您正苦于以下问题:Java SWTKeySupport.convertEventToUnmodifiedAccelerator方法的具体用法?Java SWTKeySupport.convertEventToUnmodifiedAccelerator怎么用?Java SWTKeySupport.convertEventToUnmodifiedAccelerator使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.eclipse.jface.bindings.keys.SWTKeySupport
的用法示例。
在下文中一共展示了SWTKeySupport.convertEventToUnmodifiedAccelerator方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getFormattedShortcut
import org.eclipse.jface.bindings.keys.SWTKeySupport; //导入方法依赖的package包/类
private String getFormattedShortcut(String commandId, Event trigger) {
IPreferenceStore store = getPreferenceStore();
int accelerator = SWTKeySupport.convertEventToUnmodifiedAccelerator(trigger);
KeyStroke keyStroke = SWTKeySupport.convertAcceleratorToKeyStroke(accelerator);
if (KeyStroke.NO_KEY != keyStroke.getNaturalKey()) {
if (store.getBoolean(PREF_KEY_SHORTCUTS_ENABLED)) {
String formattedStroke = SWTKeySupport.getKeyFormatterForPlatform().format(keyStroke);
if (debug && debugTrace != null) {
debugTrace.trace(DEBUG_PATH, "Formatted stroke is: " + formattedStroke); //$NON-NLS-1$
}
return formattedStroke;
} else { // keystroke found, but we're disabled
return null;
}
}
else if (store.getBoolean(PREF_KEY_MOUSE_TRIGGER_ENABLED)) {
IBindingService bindingService = (IBindingService) getWorkbench().getService(IBindingService.class);
return bindingService.getBestActiveBindingFormattedFor(commandId);
}
return null;
}
示例2: isInvocationEvent
import org.eclipse.jface.bindings.keys.SWTKeySupport; //导入方法依赖的package包/类
protected boolean isInvocationEvent(KeyEvent e) {
int accelerator = SWTKeySupport.convertEventToUnmodifiedAccelerator(e);
KeySequence keySequence = KeySequence.getInstance(SWTKeySupport.convertAcceleratorToKeyStroke(accelerator));
return keySequence.startsWith(triggerSequence, true);
}