213 lines
6.5 KiB
TypeScript
213 lines
6.5 KiB
TypeScript
import type { RunCommand } from '@ohif/core/types';
|
|
import { EVENTS } from '@cornerstonejs/core';
|
|
import { ToolbarService, ViewportGridService } from '@ohif/core';
|
|
import { setToolActiveToolbar } from './toolbarButtons';
|
|
const { createButton } = ToolbarService;
|
|
|
|
const ReferenceLinesListeners: RunCommand = [
|
|
{
|
|
commandName: 'setSourceViewportForReferenceLinesTool',
|
|
context: 'CORNERSTONE',
|
|
},
|
|
];
|
|
|
|
const moreTools = [
|
|
{
|
|
id: 'MoreTools',
|
|
uiType: 'ohif.toolButtonList',
|
|
props: {
|
|
groupId: 'MoreTools',
|
|
evaluate: 'evaluate.group.promoteToPrimaryIfCornerstoneToolNotActiveInTheList',
|
|
primary: createButton({
|
|
id: 'Reset',
|
|
icon: 'tool-reset',
|
|
tooltip: 'Reset View',
|
|
label: 'Reset',
|
|
commands: 'resetViewport',
|
|
evaluate: 'evaluate.action',
|
|
}),
|
|
secondary: {
|
|
icon: 'chevron-down',
|
|
label: '',
|
|
tooltip: 'More Tools',
|
|
},
|
|
items: [
|
|
createButton({
|
|
id: 'Reset',
|
|
icon: 'tool-reset',
|
|
label: 'Reset View',
|
|
tooltip: 'Reset View',
|
|
commands: 'resetViewport',
|
|
evaluate: 'evaluate.action',
|
|
}),
|
|
createButton({
|
|
id: 'rotate-right',
|
|
icon: 'tool-rotate-right',
|
|
label: 'Rotate Right',
|
|
tooltip: 'Rotate +90',
|
|
commands: 'rotateViewportCW',
|
|
evaluate: 'evaluate.action',
|
|
}),
|
|
createButton({
|
|
id: 'flipHorizontal',
|
|
icon: 'tool-flip-horizontal',
|
|
label: 'Flip Horizontal',
|
|
tooltip: 'Flip Horizontally',
|
|
commands: 'flipViewportHorizontal',
|
|
evaluate: 'evaluate.viewportProperties.toggle',
|
|
}),
|
|
createButton({
|
|
id: 'ImageSliceSync',
|
|
icon: 'link',
|
|
label: 'Image Slice Sync',
|
|
tooltip: 'Enable position synchronization on stack viewports',
|
|
commands: {
|
|
commandName: 'toggleSynchronizer',
|
|
commandOptions: {
|
|
type: 'imageSlice',
|
|
},
|
|
},
|
|
listeners: {
|
|
[EVENTS.VIEWPORT_NEW_IMAGE_SET]: {
|
|
commandName: 'toggleImageSliceSync',
|
|
commandOptions: { toggledState: true },
|
|
},
|
|
},
|
|
evaluate: 'evaluate.cornerstone.synchronizer',
|
|
}),
|
|
createButton({
|
|
id: 'ReferenceLines',
|
|
icon: 'tool-referenceLines',
|
|
label: 'Reference Lines',
|
|
tooltip: 'Show Reference Lines',
|
|
commands: 'toggleEnabledDisabledToolbar',
|
|
listeners: {
|
|
[ViewportGridService.EVENTS.ACTIVE_VIEWPORT_ID_CHANGED]: ReferenceLinesListeners,
|
|
[ViewportGridService.EVENTS.VIEWPORTS_READY]: ReferenceLinesListeners,
|
|
},
|
|
evaluate: 'evaluate.cornerstoneTool.toggle',
|
|
}),
|
|
createButton({
|
|
id: 'ImageOverlayViewer',
|
|
icon: 'toggle-dicom-overlay',
|
|
label: 'Image Overlay',
|
|
tooltip: 'Toggle Image Overlay',
|
|
commands: 'toggleEnabledDisabledToolbar',
|
|
evaluate: 'evaluate.cornerstoneTool.toggle',
|
|
}),
|
|
createButton({
|
|
id: 'StackScroll',
|
|
icon: 'tool-stack-scroll',
|
|
label: 'Stack Scroll',
|
|
tooltip: 'Stack Scroll',
|
|
commands: setToolActiveToolbar,
|
|
evaluate: 'evaluate.cornerstoneTool',
|
|
}),
|
|
createButton({
|
|
id: 'invert',
|
|
icon: 'tool-invert',
|
|
label: 'Invert',
|
|
tooltip: 'Invert Colors',
|
|
commands: 'invertViewport',
|
|
evaluate: 'evaluate.viewportProperties.toggle',
|
|
}),
|
|
createButton({
|
|
id: 'Probe',
|
|
icon: 'tool-probe',
|
|
label: 'Probe',
|
|
tooltip: 'Probe',
|
|
commands: setToolActiveToolbar,
|
|
evaluate: 'evaluate.cornerstoneTool',
|
|
}),
|
|
createButton({
|
|
id: 'Cine',
|
|
icon: 'tool-cine',
|
|
label: 'Cine',
|
|
tooltip: 'Cine',
|
|
commands: 'toggleCine',
|
|
evaluate: 'evaluate.cine',
|
|
}),
|
|
createButton({
|
|
id: 'Angle',
|
|
icon: 'tool-angle',
|
|
label: 'Angle',
|
|
tooltip: 'Angle',
|
|
commands: setToolActiveToolbar,
|
|
evaluate: 'evaluate.cornerstoneTool',
|
|
}),
|
|
createButton({
|
|
id: 'CobbAngle',
|
|
icon: 'icon-tool-cobb-angle',
|
|
label: 'Cobb Angle',
|
|
tooltip: 'Cobb Angle',
|
|
commands: setToolActiveToolbar,
|
|
evaluate: 'evaluate.cornerstoneTool',
|
|
}),
|
|
createButton({
|
|
id: 'Magnify',
|
|
icon: 'tool-magnify',
|
|
label: 'Zoom-in',
|
|
tooltip: 'Zoom-in',
|
|
commands: setToolActiveToolbar,
|
|
evaluate: 'evaluate.cornerstoneTool',
|
|
}),
|
|
createButton({
|
|
id: 'RectangleROI',
|
|
icon: 'tool-rectangle',
|
|
label: 'Rectangle',
|
|
tooltip: 'Rectangle',
|
|
commands: setToolActiveToolbar,
|
|
evaluate: 'evaluate.cornerstoneTool',
|
|
}),
|
|
createButton({
|
|
id: 'CalibrationLine',
|
|
icon: 'tool-calibration',
|
|
label: 'Calibration',
|
|
tooltip: 'Calibration Line',
|
|
commands: setToolActiveToolbar,
|
|
evaluate: 'evaluate.cornerstoneTool',
|
|
}),
|
|
createButton({
|
|
id: 'TagBrowser',
|
|
icon: 'dicom-tag-browser',
|
|
label: 'Dicom Tag Browser',
|
|
tooltip: 'Dicom Tag Browser',
|
|
commands: 'openDICOMTagViewer',
|
|
}),
|
|
createButton({
|
|
id: 'AdvancedMagnify',
|
|
icon: 'icon-tool-loupe',
|
|
label: 'Magnify Probe',
|
|
tooltip: 'Magnify Probe',
|
|
commands: 'toggleActiveDisabledToolbar',
|
|
evaluate: 'evaluate.cornerstoneTool.toggle.ifStrictlyDisabled',
|
|
}),
|
|
createButton({
|
|
id: 'UltrasoundDirectionalTool',
|
|
icon: 'icon-tool-ultrasound-bidirectional',
|
|
label: 'Ultrasound Directional',
|
|
tooltip: 'Ultrasound Directional',
|
|
commands: setToolActiveToolbar,
|
|
evaluate: [
|
|
'evaluate.cornerstoneTool',
|
|
{
|
|
name: 'evaluate.modality.supported',
|
|
supportedModalities: ['US'],
|
|
},
|
|
],
|
|
}),
|
|
createButton({
|
|
id: 'WindowLevelRegion',
|
|
icon: 'icon-tool-window-region',
|
|
label: 'Window Level Region',
|
|
tooltip: 'Window Level Region',
|
|
commands: setToolActiveToolbar,
|
|
evaluate: 'evaluate.cornerstoneTool',
|
|
}),
|
|
],
|
|
},
|
|
},
|
|
];
|
|
|
|
export default moreTools;
|