//------------------------------------------------------------------------------ // Copyright (c) 2005, 2006 IBM Corporation 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: // IBM Corporation - initial implementation //------------------------------------------------------------------------------ package org.eclipse.epf.authoring.gef.edit; import org.eclipse.draw2d.IFigure; import org.eclipse.draw2d.Label; import org.eclipse.draw2d.geometry.Dimension; import org.eclipse.epf.authoring.gef.util.DiagramUIResources; import org.eclipse.epf.authoring.ui.AuthoringUIPlugin; import org.eclipse.epf.authoring.ui.AuthoringUIResources; import org.eclipse.epf.common.ui.util.MsgDialog; import org.eclipse.epf.diagram.model.Node; import org.eclipse.epf.uma.GraphNode; import org.eclipse.epf.uma.Property; import org.eclipse.gef.GraphicalEditPart; import org.eclipse.gef.tools.CellEditorLocator; import org.eclipse.gef.tools.DirectEditManager; import org.eclipse.swt.SWT; import org.eclipse.swt.events.VerifyEvent; import org.eclipse.swt.events.VerifyListener; import org.eclipse.swt.graphics.Font; import org.eclipse.swt.graphics.FontData; import org.eclipse.swt.graphics.GC; import org.eclipse.swt.graphics.Point; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Text; /** * Manages direct editing and creating cell editor for the {@link Label} * and validates the input. * * @author Phong Nguyen Le * @author Shashidhar Kannoori * @since 1.0 */ public class ValidatingFreeTextEditManager extends DirectEditManager { Font scaledFont; protected VerifyListener verifyListener; protected Label activityLabel; /** * Creates a new ActivityDirectEditManager with the given attributes. * * @param source * the source EditPart * @param editorType * type of editor * @param locator * the CellEditorLocator */ public ValidatingFreeTextEditManager(GraphicalEditPart source, Class editorType, CellEditorLocator locator, Label label) { super(source, editorType, locator); activityLabel = label; } /** * @see org.eclipse.gef.tools.DirectEditManager#bringDown() */ protected void bringDown() { bringDown(true); } /** * @see org.eclipse.gef.tools.DirectEditManager#bringDown() */ protected void bringDown(boolean check) { // This method might be re-entered when super.bringDown() is called. Font disposeFont = scaledFont; scaledFont = null; super.bringDown(); if (disposeFont != null) disposeFont.dispose(); if (check) { GraphNode node = ((Node) getEditPart().getModel()).getGraphNode(); String name = ((Property) node.getProperty().get(0)).getValue(); if (name == null || name.trim().length() == 0) { Display .getCurrent() .asyncExec( new PromptEdit( (NodeEditPart) getEditPart(), AuthoringUIResources.gef_validatingFreeTextEditManager_bringDownPrompt)); } } } /** * @see org.eclipse.gef.tools.DirectEditManager#initCellEditor() */ protected void initCellEditor() { Text text = (Text) getCellEditor().getControl(); verifyListener = new VerifyListener() { public void verifyText(VerifyEvent event) { Text text = (Text) getCellEditor().getControl(); String oldText = text.getText(); String leftText = oldText.substring(0, event.start); String rightText = oldText.substring(event.end, oldText .length()); GC gc = new GC(text); Point size = gc.textExtent(leftText + event.text + rightText); gc.dispose(); if (size.x != 0) size = text.computeSize(size.x, SWT.DEFAULT); getCellEditor().getControl().setSize(size.x, size.y); } }; text.addVerifyListener(verifyListener); String initialLabelText = activityLabel.getText(); getCellEditor().setValue(initialLabelText); text.selectAll(); IFigure figure = ((GraphicalEditPart) getEditPart()).getFigure(); scaledFont = figure.getFont(); FontData data = scaledFont.getFontData()[0]; Dimension fontSize = new Dimension(0, data.getHeight()); activityLabel.translateToAbsolute(fontSize); data.setHeight(fontSize.height); scaledFont = new Font(null, data); text.setFont(scaledFont); } /** * @see org.eclipse.gef.tools.DirectEditManager#unhookListeners() */ protected void unhookListeners() { super.unhookListeners(); if (getCellEditor() != null) { Text text = (Text) getCellEditor().getControl(); text.removeVerifyListener(verifyListener); verifyListener = null; } } /** * Checks if the given text is valid. Subclasses can override this method. * * @param txt * @return null if the given text is valid, an error message otherwise */ protected String validate(String txt) { return null; } /** * @see org.eclipse.gef.tools.DirectEditManager#commit() */ protected void commit() { String msg = validate((String) getCellEditor().getValue()); if (msg != null) { bringDown(false); Display.getCurrent().asyncExec( new PromptEdit((NamedNodeEditPart) getEditPart(), msg)); return; } super.commit(); } static class PromptEdit implements Runnable { private NodeEditPart part; private String msg; PromptEdit(NodeEditPart part, String msg) { this.part = part; this.msg = msg; } /** * @see java.lang.Runnable#run() */ public void run() { String title = DiagramUIResources.diagram_errorDialog_title_text0; String problem = DiagramUIResources.diagram_node_property_value_problem_msg; MsgDialog dialog = AuthoringUIPlugin.getDefault().getMsgDialog(); dialog.displayError(title, problem, msg); part.performDirectEdit(); } } }