/* * Created on Jul 13, 2004 */ package com.realpersist.gef.directedit; import org.eclipse.draw2d.Label; import org.eclipse.draw2d.geometry.Rectangle; import org.eclipse.gef.tools.CellEditorLocator; import org.eclipse.jface.viewers.CellEditor; import org.eclipse.swt.SWT; import org.eclipse.swt.graphics.Point; import org.eclipse.swt.widgets.Text; /** * A CellEditorLocator for a specified label * * @author Phil Zoio */ public class LabelCellEditorLocator implements CellEditorLocator { private Label label; /** * Creates a new CellEditorLocator for the given Label * * @param label * the Label */ public LabelCellEditorLocator(Label label) { setLabel(label); } /** * expands the size of the control by 1 pixel in each direction */ public void relocate(CellEditor celleditor) { Text text = (Text) celleditor.getControl(); Point pref = text.computeSize(SWT.DEFAULT, SWT.DEFAULT); Rectangle rect = label.getTextBounds().getCopy(); label.translateToAbsolute(rect); if (text.getCharCount() > 1) text.setBounds(rect.x - 1, rect.y - 1, pref.x + 1, pref.y + 1); else text.setBounds(rect.x - 1, rect.y - 1, pref.y + 1, pref.y + 1); } /** * Returns the Label figure. * * @return the Label */ protected Label getLabel() { return label; } /** * Sets the label. * * @param label * The label to set */ protected void setLabel(Label label) { this.label = label; } }