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 (c) 2005-2006 Laf-Widget Kirill Grouchnikov. All Rights Reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* o Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* o 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.
*
* o Neither the name of Laf-Widget Kirill Grouchnikov nor the names of
* its contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "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 THE COPYRIGHT OWNER 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.
*/
package org.jvnet.lafwidget.text;
import java.awt.*;
import javax.swing.Icon;
import javax.swing.border.Border;
import javax.swing.border.EmptyBorder;
import javax.swing.plaf.UIResource;
import org.jvnet.lafwidget.*;
/**
* Border with "lock" indication.
*
* @author Kirill Grouchnikov
*/
public class LockBorder implements Border, UIResource {
/**
* The original (decorated) border.
*/
private Border originalBorder;
/**
* Constructs a new lock border.
*
* @param originalBorder
* The original border.
*/
public LockBorder(Border originalBorder) {
if (originalBorder != null)
this.originalBorder = originalBorder;
else
this.originalBorder = new EmptyBorder(0, 0, 0, 0);
}
/*
* (non-Javadoc)
*
* @see javax.swing.border.Border#getBorderInsets(java.awt.Component)
*/
public Insets getBorderInsets(Component c) {
LafWidgetSupport lafSupport = LafWidgetRepository.getRepository()
.getLafSupport();
Icon lockIcon = lafSupport.getLockIcon();
if (lockIcon == null)
lockIcon = LafWidgetUtilities.getSmallLockIcon();
Insets origInsets = this.originalBorder.getBorderInsets(c);
if (c.getComponentOrientation().isLeftToRight()) {
return new Insets(origInsets.top, Math.max(origInsets.left,
lockIcon.getIconWidth() + 2), origInsets.bottom,
origInsets.right);
} else {
// support for RTL
return new Insets(origInsets.top, origInsets.left,
origInsets.bottom, Math.max(origInsets.right, lockIcon
.getIconWidth() + 2));
}
}
/*
* (non-Javadoc)
*
* @see javax.swing.border.Border#isBorderOpaque()
*/
public boolean isBorderOpaque() {
return this.originalBorder.isBorderOpaque();
}
/*
* (non-Javadoc)
*
* @see javax.swing.border.Border#paintBorder(java.awt.Component,
* java.awt.Graphics, int, int, int, int)
*/
public void paintBorder(Component c, Graphics g, int x, int y, int width,
int height) {
this.originalBorder.paintBorder(c, g, x, y, width, height);
LafWidgetSupport lafSupport = LafWidgetRepository.getRepository()
.getLafSupport();
Icon lockIcon = lafSupport.getLockIcon();
if (lockIcon == null)
lockIcon = LafWidgetUtilities.getSmallLockIcon();
if (c.getComponentOrientation().isLeftToRight()) {
lockIcon.paintIcon(c, g, x, y + height - lockIcon.getIconHeight());
} else {
// support for RTL
lockIcon.paintIcon(c, g, x + width - lockIcon.getIconWidth(), y
+ height - lockIcon.getIconHeight());
}
}
}