/******************************************************************************* * Copyright (c) 2016 Weasis Team and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Nicolas Roduit - initial API and implementation *******************************************************************************/ package org.weasis.dicom.sr; import javax.swing.ImageIcon; import javax.swing.JButton; import org.weasis.core.ui.editor.image.ImageViewerPlugin; import org.weasis.core.ui.util.WtoolBar; import org.weasis.dicom.explorer.DicomFieldsView; @SuppressWarnings("serial") public class SrToolBar extends WtoolBar { public SrToolBar(int index) { super(Messages.getString("SrToolBar.title"), index); //$NON-NLS-1$ final JButton printButton = new JButton(new ImageIcon(ImageViewerPlugin.class.getResource("/icon/32x32/printer.png"))); //$NON-NLS-1$ printButton.setToolTipText(Messages.getString("SRContainer.print_layout")); //$NON-NLS-1$ printButton.addActionListener(e -> { ImageViewerPlugin<?> container = SRContainer.SR_EVENT_MANAGER.getSelectedView2dContainer(); if (container instanceof SRContainer) { ((SRContainer) container).printCurrentView(); } }); add(printButton); final JButton metaButton = new JButton(new ImageIcon(ImageViewerPlugin.class.getResource("/icon/32x32/dcm-header.png"))); //$NON-NLS-1$ metaButton.setToolTipText("Open DICOM Information"); //$NON-NLS-1$ metaButton.addActionListener(e -> { ImageViewerPlugin<?> container = SRContainer.SR_EVENT_MANAGER.getSelectedView2dContainer(); if (container instanceof SRContainer) { DicomFieldsView.displayHeaderForSpecialElement(container, ((SRContainer) container).getSeries()); } }); add(metaButton); } }