/****************************************************************************** * Copyright (c) 2016 Oracle * 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: * Ling Hao - initial implementation and ongoing maintenance ******************************************************************************/ package org.eclipse.sapphire.ui.swt.gef.policies; import org.eclipse.draw2d.Label; import org.eclipse.gef.commands.Command; import org.eclipse.gef.editpolicies.DirectEditPolicy; import org.eclipse.gef.requests.DirectEditRequest; import org.eclipse.sapphire.ui.swt.gef.commands.LabelConnectionCommand; import org.eclipse.sapphire.ui.swt.gef.parts.DiagramConnectionLabelEditPart; /** * @author <a href="mailto:ling.hao@oracle.com">Ling Hao</a> */ public class ConnectionLabelDirectEditPolicy extends DirectEditPolicy { /** * @see DirectEditPolicy#getDirectEditCommand(DirectEditRequest) */ protected Command getDirectEditCommand(DirectEditRequest edit) { String labelText = (String) edit.getCellEditor().getValue(); DiagramConnectionLabelEditPart editPart = (DiagramConnectionLabelEditPart) getHost(); LabelConnectionCommand command = new LabelConnectionCommand(editPart.getDiagramConnectionPart(), labelText); return command; } /** * @see DirectEditPolicy#showCurrentEditValue(DirectEditRequest) */ protected void showCurrentEditValue(DirectEditRequest request) { String value = (String) request.getCellEditor().getValue(); ((Label) getHostFigure()).setText(value); // hack to prevent async layout from placing the cell editor twice. getHostFigure().getUpdateManager().performUpdate(); } }