view org.eclipse.draw2d/src/org/eclipse/draw2d/Ellipse.d @ 12:bc29606a740c

Added dwt-addons in original directory structure of eclipse.org
author Frank Benoit <benoit@tionex.de>
date Sat, 14 Mar 2009 18:23:29 +0100
parents
children
line wrap: on
line source

/*******************************************************************************
 * Copyright (c) 2000, 2005 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
 *     Alex Selkov - Fix for Bug# 22701
 * Port to the D programming language:
 *     Frank Benoit <benoit@tionex.de>
 *******************************************************************************/
module org.eclipse.draw2d.Ellipse;

import java.lang.all;

import org.eclipse.draw2d.geometry.Rectangle;
import org.eclipse.draw2d.Shape;
import org.eclipse.draw2d.Graphics;

/**
 * An figure that draws an ellipse filling its bounds.
 */
public class Ellipse
    : Shape
{

/**
 * Constructs a new Ellipse with the default values of a Shape.
 * @since 2.0
 */
public this() { }

/**
 * Returns <code>true</code> if the given point (x,y) is contained within this ellipse.
 * @param x the x coordinate
 * @param y the y coordinate
 * @return <code>true</code>if the given point is contained
 */
public bool containsPoint(int x, int y) {
    if (!super.containsPoint(x, y))
        return false;
    Rectangle r = getBounds();
    long ux = x - r.x - r.width / 2;
    long uy = y - r.y - r.height / 2;
    return ((ux * ux) << 10) / (r.width * r.width)
         + ((uy * uy) << 10) / (r.height * r.height) <= 256;
}

/**
 * Fills the ellipse.
 * @see org.eclipse.draw2d.Shape#fillShape(org.eclipse.draw2d.Graphics)
 */
protected void fillShape(Graphics graphics) {
    graphics.fillOval(getBounds());
}

/**
 * Outlines the ellipse.
 * @see org.eclipse.draw2d.Shape#outlineShape(org.eclipse.draw2d.Graphics)
 */
protected void outlineShape(Graphics graphics) {
    Rectangle r = Rectangle.SINGLETON;
    r.setBounds(getBounds());
    r.width--;
    r.height--;
    r.shrink((lineWidth - 1) / 2, (lineWidth - 1) / 2);
    graphics.drawOval(r);
}

}