blob: 27c52e31158b49a2a29f575cc5d7538e723eab6e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2001, 2004 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.wst.xsd.ui.internal.graph.editparts;
import org.eclipse.draw2d.ColorConstants;
import org.eclipse.draw2d.IFigure;
import org.eclipse.draw2d.ImageFigure;
import org.eclipse.draw2d.Label;
import org.eclipse.draw2d.MouseEvent;
import org.eclipse.draw2d.MouseMotionListener;
import org.eclipse.gef.EditPolicy;
import org.eclipse.swt.graphics.Color;
import org.eclipse.swt.graphics.Image;
import org.eclipse.wst.xsd.ui.internal.XSDEditorPlugin;
import org.eclipse.wst.xsd.ui.internal.graph.editpolicies.SelectionHandlesEditPolicyImpl;
import org.eclipse.wst.xsd.ui.internal.graph.figures.RoundedLineBorder;
public class SimpleTypeDefinitionEditPart extends BaseEditPart implements MouseMotionListener
{
protected Label label;
protected SelectionHandlesEditPolicyImpl selectionHandlesEditPolicy;
ImageFigure figure;
Color color;
protected IFigure createFigure()
{
String iconName = "icons/XSDSimpleType.gif";
Image image = XSDEditorPlugin.getXSDImage(iconName);
figure = new ImageFigure(image);
RoundedLineBorder lb = new RoundedLineBorder(1, 6);
figure.setOpaque(true);
figure.setBorder(lb);
figure.setBackgroundColor(ColorConstants.white);
figure.setForegroundColor(elementBorderColor);
figure.addMouseMotionListener(this);
return figure;
}
protected void refreshVisuals()
{
// figure.setBorder(new RoundedLineBorder(isSelected ? ColorConstants.black : elementBackgroundColor, 1, 6));
((RoundedLineBorder)figure.getBorder()).setColor(isSelected ? ColorConstants.black : elementBackgroundColor);
figure.repaint();
}
protected boolean isConnectedEditPart()
{
return false;
}
protected void createEditPolicies()
{
selectionHandlesEditPolicy = new SelectionHandlesEditPolicyImpl();
installEditPolicy(EditPolicy.SELECTION_FEEDBACK_ROLE, selectionHandlesEditPolicy);
}
public void deactivate()
{
figure.removeMouseMotionListener(this);
super.deactivate();
if (color != null)
{
color.dispose();
}
}
public void mouseDragged(MouseEvent me)
{
}
public void mouseEntered(MouseEvent me)
{
// ((RoundedLineBorder)figure.getBorder()).setColor(ColorConstants.blue);
// figure.setBackgroundColor(elementBorderColor);
// figure.repaint();
}
public void mouseExited(MouseEvent me)
{
// ((RoundedLineBorder)figure.getBorder()).setColor(elementBackgroundColor);
// figure.setBackgroundColor(elementBackgroundColor);
// figure.repaint();
}
public void mouseHover(MouseEvent me)
{
}
public void mouseMoved(MouseEvent me)
{
}
}