📄 openmapapppartcollection.java
字号:
// **********************************************************************// // <copyright>// // BBN Technologies// 10 Moulton Street// Cambridge, MA 02138// (617) 873-8000// // Copyright (C) BBNT Solutions LLC. All rights reserved.// // </copyright>// **********************************************************************// // $Source:// /cvs/distapps/openmap/src/openmap/com/bbn/openmap/tools/icon/OpenMapAppPartCollection.java,v// $// $RCSfile: OpenMapAppPartCollection.java,v $// $Revision: 1.2.2.3 $// $Date: 2006/10/12 17:26:10 $// $Author: dietrick $// // **********************************************************************package com.bbn.openmap.tools.icon;import java.awt.Polygon;import java.awt.Shape;import java.awt.geom.AffineTransform;import java.awt.geom.Ellipse2D;public class OpenMapAppPartCollection extends IconPartCollection { static OpenMapAppPartCollection omparts; protected OpenMapAppPartCollection() { super("OpenMap", "Common parts used in OpenMap Application Icons"); init(); } public synchronized static OpenMapAppPartCollection getInstance() { if (omparts == null) { omparts = new OpenMapAppPartCollection(); } return omparts; } protected void init() { add(BIG_BOX); add(SMALL_BOX); add(FILL_BOX); add(UL_TRI); add(LR_TRI); add(LL_UR_LINE); add(UL_LR_LINE); } public final static OpenMapAppPart BIG_BOX = new OpenMapAppPart.Poly("BIG_BOX", "BIG_BOX", new int[] { 10, 10, 90, 90, 10 }, new int[] { 10, 90, 90, 10, 10 }); public final static OpenMapAppPart SMALL_BOX = new OpenMapAppPart.Poly("SMALL_BOX", "SMALL_BOX", new int[] { 30, 30, 70, 70, 30 }, new int[] { 30, 70, 70, 30, 30 }); public final static OpenMapAppPart FILL_BOX = new OpenMapAppPart.Poly("FILL_BOX", "FILL_BOX", new int[] { 10, 10, 50, 50, 30, 30, 70, 70, 50, 50, 90, 90, 10 }, new int[] { 10, 90, 90, 70, 70, 30, 30, 70, 70, 90, 90, 10, 10 }); public final static OpenMapAppPart UL_TRI = new OpenMapAppPart.Poly("UL_TRI", "UL_TRI", new int[] { 10, 10, 75, 10 }, new int[] { 10, 75, 10, 10 }); public final static OpenMapAppPart LR_TRI = new OpenMapAppPart.Poly("LR_TRI", "LR_TRI", new int[] { 25, 90, 90, 25 }, new int[] { 90, 90, 25, 90 }); public final static OpenMapAppPart LL_UR_LINE = new OpenMapAppPart.Poly("LL_UR_LINE", "LL_UR_LINE", new int[] { 10, 90 }, new int[] { 90, 10 }); public final static OpenMapAppPart UL_LR_LINE = new OpenMapAppPart.Poly("UL_LR_LINE", "UL_LR_LINE", new int[] { 10, 90 }, new int[] { 10, 90 }); public static class OpenMapAppPart extends IconPartCollectionEntry { public OpenMapAppPart(String n, String d, Shape shape) { this(n, d, shape, (AffineTransform) null); } public OpenMapAppPart(String n, String d, Shape shape, AffineTransform affTrans) { super(n, d, new BasicIconPart(shape, affTrans)); } public static class Poly extends OpenMapAppPart { public Poly(String n, String d, int[] xp, int[] yp) { this(n, d, xp, yp, (AffineTransform) null); } public Poly(String n, String d, int[] xp, int[] yp, AffineTransform af) { super(n, d, new Polygon(xp, yp, xp.length), af); } } public static class Circle extends OpenMapAppPart { public Circle(String n, String d, double x, double y, double radius) { this(n, d, x, y, radius, (AffineTransform) null); } public Circle(String n, String d, double x, double y, double radius, AffineTransform af) { super(n, d, new Ellipse2D.Double(x - radius / 2, y - radius / 2, radius * 2, radius * 2), af); } } }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -