com.jidesoft.plaf.xerto.XertoFrameBorder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jide-oss Show documentation
Show all versions of jide-oss Show documentation
JIDE Common Layer (Professional Swing Components)
/*
* @(#)XertoFrameBorder.java 5/12/2005
*
* Copyright 2002 - 2005 JIDE Software Inc. All rights reserved.
*/
package com.jidesoft.plaf.xerto;
import javax.swing.border.Border;
import javax.swing.plaf.UIResource;
import java.awt.*;
/**
* This class is an implementation of the DockableFrame border.
*/
class XertoFrameBorder implements Border, UIResource {
private static Color[] _colors = new Color[]{
new Color(142, 145, 128),
new Color(172, 172, 153),
new Color(203, 198, 181),
new Color(213, 207, 188)/*,
new Color(179, 176, 154)*/
};
private Insets _insets;
public XertoFrameBorder(Insets insets) {
_insets = insets;
}
/**
* Returns the insets of the border.
*
* @param c the component for which this border insets value applies
*/
public Insets getBorderInsets(Component c) {
return _insets;
}
/**
* Returns whether or not the border is opaque. If the border
* is opaque, it is responsible for filling in it's own
* background when painting.
*/
public boolean isBorderOpaque() {
return true;
}
public void paintBorder(Component c, Graphics g, int x, int y,
int width, int height) {
for (int i = 0; i < _colors.length; i++) {
g.setColor(_colors[i]);
g.drawRect(x + i, y + i, width - i * 2 - 1, height - i * 2 - 1);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy