📄 abstractpolygonborder.java
字号:
/*
* Copyright (C) 2004 NNL Technology AB
* Visit www.infonode.net for information about InfoNode(R)
* products and how to contact NNL Technology AB.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston,
* MA 02111-1307, USA.
*/
// $Id: AbstractPolygonBorder.java,v 1.18 2005/12/04 13:46:04 jesper Exp $
package net.infonode.gui.shaped.border;
import net.infonode.gui.GraphicsUtil;
import net.infonode.gui.HighlightPainter;
import net.infonode.gui.InsetsUtil;
import net.infonode.gui.colorprovider.BackgroundPainterColorProvider;
import net.infonode.gui.colorprovider.ColorProvider;
import net.infonode.gui.colorprovider.FixedColorProvider;
import net.infonode.gui.shaped.ShapedUtil;
import net.infonode.gui.shaped.panel.ShapedPanel;
import java.awt.*;
/**
* @author johan
*/
abstract public class AbstractPolygonBorder extends AbstractShapedBorder {
private static final long serialVersionUID = 1;
private static final Insets HIGHLIGHT_INSETS = new Insets(1, 1, 0, 0);
private ColorProvider lineColor;
private ColorProvider highlightColor = new FixedColorProvider(new Color(255, 255, 255));
private ColorProvider middleColor;
private ColorProvider shadowColor;
protected AbstractPolygonBorder(ColorProvider lineColor) {
this(lineColor, FixedColorProvider.WHITE);
}
protected AbstractPolygonBorder(ColorProvider lineColor, ColorProvider highlightColor) {
this(lineColor, highlightColor, BackgroundPainterColorProvider.INSTANCE, null);
}
protected AbstractPolygonBorder(ColorProvider lineColor,
ColorProvider highlightColor,
ColorProvider middleColor,
ColorProvider shadowColor) {
this.lineColor = lineColor;
this.highlightColor = highlightColor;
this.middleColor = middleColor;
this.shadowColor = shadowColor;
}
public Shape getShape(Component c, int x, int y, int width, int height) {
int w = ShapedUtil.getWidth(c, width, height);
int h = ShapedUtil.getHeight(c, width, height);
Polygon polygon = getPolygon(c, x, y, w, h);
//printPoints(polygon);
//System.out.println("Polygon: width=" + w + " height=" + h);
return polygon;
}
public boolean isBorderOpaque() {
return false;
}
public void paintBorder(Component c, Graphics g, int x, int y, int width, int height) {
Shape clip = g.getClip();
g.clipRect(x, y, width, height);
try {
int w = ShapedUtil.getWidth(c, width, height);
height = ShapedUtil.getHeight(c, width, height);
width = w;
Polygon polygon = getPolygon(c, x, y, width, height);
Graphics2D g2 = (Graphics2D) g;
if (highlightColor != null) {
paintHighlight(c, g2, polygon, width, height);
}
if (lineColor != null) {
g.setColor(lineColor.getColor());
paintPolygon(c, g2, polygon, width, height);
}
}
finally {
g.setClip(clip);
}
}
public Insets getBorderInsets(Component c) {
Insets insets = getShapedBorderInsets(c);
insets = ShapedUtil.transformInsets(c, insets);
return highlightColor != null ? InsetsUtil.add(getShapedBorderHighlightInsets(c), insets) : insets;
}
protected Insets getShapedBorderInsets(Component c) {
return new Insets(0, 0, 0, 0);
}
protected Insets getShapedBorderHighlightInsets(Component c) {
return HIGHLIGHT_INSETS;
}
protected Polygon createPolygon(Component c, int width, int height) {
return new Polygon();
}
protected void paintPolygon(Component c, Graphics2D g, Polygon polygon, int width, int height) {
int i = 0;
while (i < polygon.npoints) {
if (lineIsDrawn(i, polygon)) {
int ni = (i + 1) % polygon.npoints;
GraphicsUtil.drawOptimizedLine(g, polygon.xpoints[i],
polygon.ypoints[i],
polygon.xpoints[ni],
polygon.ypoints[ni]);
}
i++;
}
}
protected void paintHighlight(Component c, Graphics2D g, Polygon polygon, int width, int height) {
Color c1 = highlightColor == null ? null : highlightColor.getColor(c);
Color c2 = middleColor.getColor(c);
Color c3 = shadowColor == null ? null : shadowColor.getColor(c);
boolean clockWise = isPointsClockwise(c);
for (int i = 0; i < polygon.npoints; i++) {
int ni = (i + 1) % polygon.npoints;
if (lineIsDrawn(i, polygon)) {
HighlightPainter.drawLine(g,
polygon.xpoints[i],
polygon.ypoints[i],
polygon.xpoints[ni],
polygon.ypoints[ni],
clockWise,
true,
c1, c2, c3);
}
}
}
protected boolean lineIsDrawn(int index, Polygon polygon) {
return true;
}
/* protected int getWidth(Component c) {
Insets i = getOuterInsets(c);
Direction d = ShapedUtil.getDirection(c);
if (d == Direction.UP || d == Direction.DOWN)
return c.getHeight() - i.top - i.bottom;
return c.getWidth() - i.left - i.right;
}
protected int getHeight(Component c) {
Insets i = getOuterInsets(c);
Direction d = ShapedUtil.getDirection(c);
if (d == Direction.UP || d == Direction.DOWN)
return c.getWidth() - i.left - i.right;
return c.getHeight() - i.top - i.bottom;
}
*/
protected boolean isHighlightable(int deltaX, int deltaY) {
return deltaX > deltaY;
}
protected boolean isPointsClockwise(Component c) {
if (c instanceof ShapedPanel)
return !(((ShapedPanel) c).isHorizontalFlip() ^ ((ShapedPanel) c).isVerticalFlip());
return true;
}
protected int getHighlightOffsetX(int deltaX, int deltaY) {
return deltaY - deltaX > 0 ? (deltaX + deltaY > 0 ? -1 : 0) : (deltaX + deltaY > 0 ? 0 : 1); //-deltaY > deltaX ? 1 : 0;
}
protected int getHighlightOffsetY(int deltaX, int deltaY) {
return deltaY - deltaX > 0 ? (deltaX + deltaY > 0 ? 0 : -1) : (deltaX + deltaY > 0 ? 1 : 0); //-deltaY > deltaX ? 1 : 0;
}
protected void setPoint(Polygon polygon, int x, int y) {
polygon.xpoints[polygon.npoints] = x;
polygon.ypoints[polygon.npoints] = y;
polygon.npoints++;
}
private Polygon getPolygon(Component c, int x, int y, int width, int height) {
Polygon polygon = createPolygon(c, width, height);
flipPolygon(c, polygon, width, height);
rotatePolygon(c, polygon, width, height);
fixGraphicsOffset(c, polygon, x, y);
return polygon;
}
private void flipPolygon(Component c, Polygon polygon, int width, int height) {
if (c instanceof ShapedPanel) {
if (((ShapedPanel) c).isHorizontalFlip()) {
for (int i = 0; i < polygon.npoints; i++)
polygon.xpoints[i] = Math.abs(width - polygon.xpoints[i]) - 1;
}
if (((ShapedPanel) c).isVerticalFlip()) {
for (int i = 0; i < polygon.npoints; i++)
polygon.ypoints[i] = Math.abs(height - polygon.ypoints[i]) - 1;
}
}
}
private void rotatePolygon(Component c, Polygon polygon, int width, int height) {
ShapedUtil.rotate(polygon, ShapedUtil.getDirection(c), width, height);
}
private void fixGraphicsOffset(Component c, Polygon polygon, int x, int y) {
for (int i = 0; i < polygon.npoints; i++) {
polygon.xpoints[i] += x;
polygon.ypoints[i] += y;
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -