All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.incors.plaf.FastGradientPaint Maven / Gradle / Ivy

Go to download

The Kunststoff Look and Feel is an extension to the the Java ™ Metal Look and Feel. This makes it very compact in size (approx. 43 kBytes) and ensures that all the great features provided by the Metal Look and Feel do not get lost. It is our little contribution for making the Java ™ platform even better and we hope that it will help you make some wonderful GUIs.

The newest version!
package com.incors.plaf;

/*
 * This code was contributed by Sebastian Ferreyra ([email protected]).
 * It is published under the terms of the GNU Lesser General Public License.
 */

import java.awt.*;
import java.awt.geom.*;
import java.awt.image.ColorModel;

public class FastGradientPaint implements Paint {
	int startColor, endColor;
	boolean isVertical;

	public FastGradientPaint( Color sc, Color ec, boolean isV ) {
		startColor = sc.getRGB();
		endColor = ec.getRGB();
		isVertical = isV;
	}

	public synchronized PaintContext createContext( ColorModel cm, Rectangle r, Rectangle2D r2d, AffineTransform xform, RenderingHints hints ) {
		return new FastGradientPaintContext( cm, r, startColor, endColor, isVertical );
	}

	public int getTransparency() {
		return ( ( ( (startColor & endColor) >> 24)  & 0xFF ) == 0xFF) ? OPAQUE : TRANSLUCENT;
	}
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy