blob: 883f51ffba7dafe7a3fd734b636f3977be0f114e [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2002, 2003 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 API and implementation
****************************************************************************/
package org.eclipse.gmf.runtime.diagram.ui.internal.editpolicies;
import org.eclipse.gef.editpolicies.SelectionEditPolicy;
import org.eclipse.gmf.runtime.draw2d.ui.figures.WrapLabel;
/**
* A non-resizable editpolicy for text compartments. It handles the
* selection and focus feedback of text compartments.
*
* @author melaasar
* @canBeSeenBy org.eclipse.gmf.runtime.diagram.ui.*
*/
public class TextSelectionEditPolicy
extends SelectionEditPolicy {
private WrapLabel getLabel() {
return (WrapLabel) getHostFigure();
}
/**
* @see org.eclipse.gef.editpolicies.NonResizableEditPolicy#hideFocus()
*/
protected void hideFocus() {
getLabel().setFocus(false);
}
/**
* @see org.eclipse.gef.editpolicies.SelectionHandlesEditPolicy#hideSelection()
*/
protected void hideSelection() {
getLabel().setSelected(false);
getLabel().setFocus(false);
}
/**
* @see org.eclipse.gef.editpolicies.NonResizableEditPolicy#showFocus()
*/
protected void showFocus() {
getLabel().setFocus(true);
}
/**
* @see org.eclipse.gef.editpolicies.SelectionHandlesEditPolicy#showSelection()
*/
protected void showPrimarySelection() {
getLabel().setSelected(true);
getLabel().setFocus(true);
}
/**
* @see org.eclipse.gef.editpolicies.SelectionHandlesEditPolicy#showSelection()
*/
protected void showSelection() {
getLabel().setSelected(true);
getLabel().setFocus(false);
}
}