本文整理汇总了TypeScript中neuroglancer/util/event_action_map.EventActionMap类的典型用法代码示例。如果您正苦于以下问题:TypeScript EventActionMap类的具体用法?TypeScript EventActionMap怎么用?TypeScript EventActionMap使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了EventActionMap类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: getDefaultRenderedDataPanelBindings
export function getDefaultRenderedDataPanelBindings() {
if (defaultRenderedDataPanelBindings === undefined) {
defaultRenderedDataPanelBindings = EventActionMap.fromObject(
{
'arrowleft': 'x-',
'arrowright': 'x+',
'arrowup': 'y-',
'arrowdown': 'y+',
'comma': 'z-',
'period': 'z+',
'keyz': 'snap',
'control+equal': 'zoom-in',
'control+shift+equal': 'zoom-in',
'control+minus': 'zoom-out',
'keyr': 'rotate-relative-z-',
'keye': 'rotate-relative-z+',
'shift+arrowdown': 'rotate-relative-x-',
'shift+arrowup': 'rotate-relative-x+',
'shift+arrowleft': 'rotate-relative-y-',
'shift+arrowright': 'rotate-relative-y+',
'at:control+wheel': {action: 'zoom-via-wheel', preventDefault: true},
'at:wheel': {action: 'z+1-via-wheel', preventDefault: true},
'at:shift+wheel': {action: 'z+10-via-wheel', preventDefault: true},
'at:dblclick0': 'select',
'at:control+mousedown0': 'annotate',
'at:mousedown2': 'move-to-mouse-position',
'at:control+mousedown2': 'select-annotation',
},
{label: 'All Data Panels'});
}
return defaultRenderedDataPanelBindings;
}
示例2: getDefaultPerspectivePanelBindings
export function getDefaultPerspectivePanelBindings() {
if (defaultPerspectivePanelBindings === undefined) {
defaultPerspectivePanelBindings = EventActionMap.fromObject(
{
'at:mousedown0': {action: 'rotate-via-mouse-drag', stopPropagation: true},
'at:shift+mousedown0': {action: 'translate-via-mouse-drag', stopPropagation: true},
'at:touchtranslate1': 'rotate-out-of-plane-via-touchtranslate',
},
{parents: [[getDefaultRenderedDataPanelBindings(), Number.NEGATIVE_INFINITY]]});
}
return defaultPerspectivePanelBindings;
}
示例3: getDefaultGlobalBindings
export function getDefaultGlobalBindings() {
if (defaultGlobalBindings === undefined) {
const map = new EventActionMap();
map.set('keyl', 'recolor');
map.set('keyx', 'clear-segments');
map.set('keys', 'toggle-show-slices');
map.set('keyb', 'toggle-scale-bar');
map.set('shift+keyb', 'toggle-default-annotations');
map.set('keya', 'toggle-axis-lines');
map.set('keyo', 'toggle-orthographic-projection');
for (let i = 1; i <= 9; ++i) {
map.set('digit' + i, 'toggle-layer-' + i);
map.set('control+digit' + i, 'select-layer-' + i);
}
map.set('keyn', 'add-layer');
map.set('keyh', 'help');
map.set('space', 'toggle-layout');
map.set('shift+space', 'toggle-layout-alternative');
defaultGlobalBindings = map;
}
return defaultGlobalBindings;
}
示例4: makeExtraKeyBindings
export function makeExtraKeyBindings(keyMap: EventActionMap) {
keyMap.set('keyo', 'navigate-to-origin');
}