/* * The Unified Mapping Platform (JUMP) is an extensible, interactive GUI * for visualizing and manipulating spatial features with geometry and attributes. * * JUMP is Copyright (C) 2003 Vivid Solutions * * This program implements extensions to JUMP and is * Copyright (C) 2004 Integrated Systems Analysts, Inc. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * * For more information, contact: * * Integrated Systems Analysts, Inc. * 630C Anchors St., Suite 101 * Fort Walton Beach, Florida * USA * * (850)862-7321 * www.ashs.isa.com */ package org.openjump.core.ui.plugin.tools; import javax.swing.Icon; import javax.swing.ImageIcon; import com.vividsolutions.jump.I18N; import com.vividsolutions.jump.workbench.WorkbenchContext; import com.vividsolutions.jump.workbench.plugin.AbstractPlugIn; import com.vividsolutions.jump.workbench.plugin.EnableCheckFactory; import com.vividsolutions.jump.workbench.plugin.MultiEnableCheck; import com.vividsolutions.jump.workbench.plugin.PlugInContext; import com.vividsolutions.jump.workbench.ui.MenuNames; public class MeasureM_FPlugIn extends AbstractPlugIn { MeasureM_FTool measureTool; private final static String sMeasureInFeets = I18N.get("org.openjump.core.ui.plugin.tools.MeasureM_FPlugIn.Measure-In-Feets"); private final static String sErrorSeeOutputWindow= I18N.get("org.openjump.core.ui.plugin.tools.MeasureM_FPlugIn.Error-see-output-window"); public void initialize(PlugInContext context) throws Exception { //context.getWorkbenchContext().getWorkbench().getFrame().getToolBar().addPlugIn(getIcon(), this, new MultiEnableCheck(), context.getWorkbenchContext()); context.getFeatureInstaller().addMainMenuItemWithJava14Fix( this, new String[] {MenuNames.TOOLS }, sMeasureInFeets, false, null, createEnableCheck(context.getWorkbenchContext())); measureTool = new MeasureM_FTool(); } public boolean execute(PlugInContext context) throws Exception { try { context.getLayerViewPanel().setCurrentCursorTool(measureTool); return true; } catch (Exception e) { context.getWorkbenchFrame().warnUser(sErrorSeeOutputWindow); context.getWorkbenchFrame().getOutputFrame().createNewDocument(); context.getWorkbenchFrame().getOutputFrame().addText("MeasureM_FPlugIn Exception:" + e.toString()); return false; } } private Icon getIcon() { return new ImageIcon(getClass().getResource("RulerM_F.gif")); } public MultiEnableCheck createEnableCheck(final WorkbenchContext workbenchContext) { EnableCheckFactory checkFactory = new EnableCheckFactory(workbenchContext); return new MultiEnableCheck() .add(checkFactory.createTaskWindowMustBeActiveCheck()); } }