/* * GeoTools - The Open Source Java GIS Toolkit * http://geotools.org * * (C) 2002-2008, Open Source Geospatial Foundation (OSGeo) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; * version 2.1 of the License. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. */ package org.geotools.gui.swing.contexttree.popup; import java.awt.Component; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.event.KeyEvent; import javax.swing.JMenuItem; import javax.swing.KeyStroke; import javax.swing.tree.TreePath; import org.geotools.gui.swing.contexttree.JContextTree; import org.geotools.gui.swing.icon.IconBundle; /** * Duplicate item for treetable. * * @author Johann Sorel * * @source $URL$ */ public class DuplicateItem implements TreePopupItem{ private JMenuItem duplicateitem = null; private final JContextTree tree; /** * create new instance * @param tree */ public DuplicateItem(final JContextTree tree){ this.tree = tree; duplicateitem = new JMenuItem( BUNDLE.getString("duplicate") ); duplicateitem.setIcon( IconBundle.getResource().getIcon("16_duplicate") ); duplicateitem.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_D, ActionEvent.CTRL_MASK)); duplicateitem.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { tree.duplicateSelection(); } }); } public boolean isValid(TreePath[] selection) { return tree.selectionContainOnlyContexts() || tree.selectionContainOnlyLayers(); } public Component getComponent(TreePath[] selection) { duplicateitem.setEnabled(tree.canDuplicateSelection()); return duplicateitem; } }