Defaults for hotkeys

This commit is contained in:
dannyrb 2019-06-03 14:27:03 -04:00
parent afa6d78e42
commit 3f5660722e
2 changed files with 44 additions and 1 deletions

View File

@ -23,6 +23,29 @@ You can read more about [`Commands`](), [`Hotkeys`](), and the [`UserPreferences
| `nextViewportDisplaySet` | | none |
| `previousViewportDisplaySet` | | none |
### TODO:
_SET TOOL_
- [] Default Tool
- [] Set Zoom Tool
- [] Set WWWC Tool
- [] Set Pan Tool
- [] Set Angle Measurement Tool
- [] Set Stack Scroll Tool
- [] Set Magnify Tool
- [] Set Length Tool
- [] Set Annotate Tool
- [] Set Pixel Probe Tool
- [] Set Elliptical ROI Tool
- [] Set Rectangle ROI Tool
_OTHER_
- Show/Hide CINE
- W/L Presets
- W/L Presets config
<!--
Links
-->

View File

@ -35,6 +35,26 @@ window.config = {
],
//
hotkeys: {
scaleUpViewport: ['s'],
// ~ Global
incrementActiveViewport: ['right'],
decrementActiveViewport: ['left'],
// Supported Keys: https://craig.is/killing/mice
// ~ Cornerstone Extension
rotateViewportCW: ['r'],
rotateViewportCCW: ['l'],
invertViewport: ['i'],
flipViewportVertical: ['h'],
flipViewportHorizontal: ['v'],
scaleUpViewport: ['+'],
scaleDownViewport: ['-'],
fitViewportToWindow: ['='],
resetViewport: ['space'],
// clearAnnotations
// nextImage
// previousImage
// firstImage
// lastImage
nextViewportDisplaySet: ['pageup'],
previousViewportDisplaySet: ['pagedown'],
},
};