// TODO: A way to add Icons that don't already exist? // - Register them and add // - Include SVG Source/Inline? // - By URL, or own component? // TODO: `ohif-core` toolbar builder? // What KINDS of toolbar buttons do we have... // - One's that dispatch commands // - One's that set tool's active // - More custom, like CINE // - Built in for one's like this, or custom components? // Visible? // Disabled? // Based on contexts or misc. criteria? // -- ACTIVE_ROUTE::VIEWER // -- ACTIVE_VIEWPORT::CORNERSTONE // setToolActive commands should receive the button event that triggered // so we can do the "bind to this butyon" magic const TOOLBAR_BUTTON_TYPES = { COMMAND: 'command', SET_TOOL_ACTIVE: 'setToolActive', BUILT_IN: 'builtIn', }; const definitions = [ { id: 'StackScroll', label: 'Stack Scroll', icon: 'bars', // type: TOOLBAR_BUTTON_TYPES.SET_TOOL_ACTIVE, commandName: 'setToolActive', commandOptions: { toolName: 'StackScroll' }, }, { id: 'Zoom', label: 'Zoom', icon: 'search-plus', // type: TOOLBAR_BUTTON_TYPES.SET_TOOL_ACTIVE, commandName: 'setToolActive', commandOptions: { toolName: 'Zoom' }, }, { id: 'Wwwc', label: 'Levels', icon: 'level', // type: TOOLBAR_BUTTON_TYPES.SET_TOOL_ACTIVE, commandName: 'setToolActive', commandOptions: { toolName: 'Wwwc' }, }, { id: 'Pan', label: 'Pan', icon: 'arrows', // type: TOOLBAR_BUTTON_TYPES.SET_TOOL_ACTIVE, commandName: 'setToolActive', commandOptions: { toolName: 'Pan' }, }, { id: 'Length', label: 'Length', icon: 'measure-temp', // type: TOOLBAR_BUTTON_TYPES.SET_TOOL_ACTIVE, commandName: 'setToolActive', commandOptions: { toolName: 'Length' }, }, { id: 'Angle', label: 'Angle', icon: 'angle-left', // type: TOOLBAR_BUTTON_TYPES.SET_TOOL_ACTIVE, commandName: 'setToolActive', commandOptions: { toolName: 'Angle' }, }, { id: 'Reset', label: 'Reset', icon: 'reset', // type: TOOLBAR_BUTTON_TYPES.COMMAND, commandName: 'resetViewport', }, { id: 'Cine', label: 'CINE', icon: 'youtube', // type: TOOLBAR_BUTTON_TYPES.BUILT_IN, options: { behavior: 'CINE', }, }, ]; export default { definitions, defaultContext: 'ACTIVE_VIEWPORT::CORNERSTONE', };