Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/**
Copyright 2004 Juan Heyns. All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are
permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this list of
conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice, this list
of conditions and the following disclaimer in the documentation and/or other materials
provided with the distribution.
THIS SOFTWARE IS PROVIDED BY JUAN HEYNS ``AS IS'' AND ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JUAN HEYNS OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
The views and conclusions contained in the software and documentation are those of the
authors and should not be interpreted as representing official policies, either expressed
or implied, of Juan Heyns.
*/
package net.sourceforge.jdatepicker.graphics;
import java.awt.Color;
import java.awt.Component;
import java.awt.Graphics;
import javax.swing.Icon;
/**
* Created on 26 Mar 2004
*
* @author Juan Heyns
*/
public class JPreviousIcon implements Icon {
protected int width;
protected int height;
protected int[] xPoints = new int[3];
protected int[] yPoints = new int[3];
private boolean doubleArrow = false;
public JPreviousIcon(int width, int height) {
setDimension(width, height);
}
public JPreviousIcon(int width, int height, boolean doubleArrow) {
setDimension(width, height);
this.doubleArrow = doubleArrow;
}
public boolean getDoubleArrow() {
return doubleArrow;
}
public void setDoubleArrow(boolean doubleArrow) {
this.doubleArrow = doubleArrow;
}
public int getIconWidth() {
return width;
}
public int getIconHeight() {
return height;
}
public void setDimension(int width, int height) {
this.width = width;
this.height = height;
}
public void paintIcon(Component c, Graphics g, int x, int y) {
if (doubleArrow) {
xPoints[0] = x;
yPoints[0] = y + (height / 2);
xPoints[1] = x + (width / 2);
yPoints[1] = y - 1;
xPoints[2] = x + (width / 2);
yPoints[2] = y + height;
g.setColor(Color.BLACK);
g.fillPolygon(xPoints, yPoints, 3);
xPoints[0] = x + (width / 2);
yPoints[0] = y + (height / 2);
xPoints[1] = x + width;
yPoints[1] = y - 1;
xPoints[2] = x + width;
yPoints[2] = y + height;
g.setColor(Color.BLACK);
g.fillPolygon(xPoints, yPoints, 3);
} else {
xPoints[0] = x;
yPoints[0] = y + (height / 2);
xPoints[1] = x + width;
yPoints[1] = y - 1;
xPoints[2] = x + width;
yPoints[2] = y + height;
g.setColor(Color.BLACK);
g.fillPolygon(xPoints, yPoints, 3);
}
}
}