⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 iconborder.java

📁 java实现浏览器等本地桌面的功能
💻 JAVA
字号:
/* * $Id: IconBorder.java,v 1.4 2005/10/10 18:02:56 rbair Exp $ * * Copyright 2004 Sun Microsystems, Inc., 4150 Network Circle, * Santa Clara, California 95054, U.S.A. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. *  * This library 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 * Lesser General Public License for more details. *  * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA */package org.jdesktop.swingx.border;import java.awt.Component;import java.awt.ComponentOrientation;import java.awt.Graphics;import java.awt.Graphics2D;import java.awt.Insets;import java.awt.Rectangle;import javax.swing.Icon;import javax.swing.SwingConstants;import javax.swing.border.Border;/** * @author Amy Fowler * @version 1.0 */public class IconBorder implements Border {    private static final int PAD = 4;    private Icon icon;    private int iconPosition;    private Rectangle iconBounds = new Rectangle();    public IconBorder() {        this(null);    }    public IconBorder(Icon validIcon) {        this(validIcon, SwingConstants.TRAILING);    }    public IconBorder(Icon validIcon, int iconPosition) {        this.icon = validIcon;        this.iconPosition = iconPosition;    }    public Insets getBorderInsets(Component c) {        int horizontalInset = icon.getIconWidth() + (2 * PAD);        int iconPosition = bidiDecodeLeadingTrailing(c.getComponentOrientation(), this.iconPosition);        if (iconPosition == SwingConstants.EAST) {            return new Insets(0, 0, 0, horizontalInset);        }        return new Insets(0, horizontalInset, 0, 0);    }    public void setIcon(Icon validIcon) {        this.icon = validIcon;    }        public boolean isBorderOpaque() {        return false;    }    public void paintBorder(Component c, Graphics g, int x, int y, int width,        int height) {        Graphics2D g2d = (Graphics2D) g;        int iconPosition = bidiDecodeLeadingTrailing(c.getComponentOrientation(), this.iconPosition);        if (iconPosition == SwingConstants.NORTH_EAST) {            iconBounds.y = y + PAD;            iconBounds.x = x + width - PAD - icon.getIconWidth();        } else if (iconPosition == SwingConstants.EAST) {    // EAST            iconBounds.y = y                + ((height - icon.getIconHeight()) / 2);            iconBounds.x = x + width - PAD - icon.getIconWidth();        } else if (iconPosition == SwingConstants.WEST) {            iconBounds.y = y                + ((height - icon.getIconHeight()) / 2);            iconBounds.x = x + PAD;        }        iconBounds.width = icon.getIconWidth();        iconBounds.height = icon.getIconHeight();        icon.paintIcon(c, g, iconBounds.x, iconBounds.y);    }    /**     * Returns EAST or WEST depending on the ComponentOrientation and      * the given postion LEADING/TRAILING this method has no effect for other     * position values     */    private int bidiDecodeLeadingTrailing(ComponentOrientation c, int position) {        if(position == SwingConstants.TRAILING) {            if(!c.isLeftToRight()) {                return SwingConstants.WEST;            }            return SwingConstants.EAST;        }        if(position == SwingConstants.LEADING) {            if(!c.isLeftToRight()) {                return SwingConstants.WEST;            }            return SwingConstants.EAST;        }        return position;    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -