com.jtattoo.plaf.mint.MintBorders Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of JTattoo Show documentation
Show all versions of JTattoo Show documentation
A LookAndFeel library for swing
The newest version!
/*
* Copyright (c) 2002 and later by MH Software-Entwicklung. All Rights Reserved.
*
* JTattoo is multiple licensed. If your are an open source developer you can use
* it under the terms and conditions of the GNU General Public License version 2.0
* or later as published by the Free Software Foundation.
*
* see: gpl-2.0.txt
*
* If you pay for a license you will become a registered user who could use the
* software under the terms and conditions of the GNU Lesser General Public License
* version 2.0 or later with classpath exception as published by the Free Software
* Foundation.
*
* see: lgpl-2.0.txt
* see: classpath-exception.txt
*
* Registered users could also use JTattoo under the terms and conditions of the
* Apache License, Version 2.0 as published by the Apache Software Foundation.
*
* see: APACHE-LICENSE-2.0.txt
*/
package com.jtattoo.plaf.mint;
import com.jtattoo.plaf.*;
import java.awt.*;
import javax.swing.AbstractButton;
import javax.swing.ButtonModel;
import javax.swing.border.Border;
import javax.swing.plaf.UIResource;
/**
* @author Michael Hagen
*/
public class MintBorders extends BaseBorders {
//------------------------------------------------------------------------------------
// Lazy access methods
//------------------------------------------------------------------------------------
public static Border getButtonBorder() {
if (buttonBorder == null) {
buttonBorder = new ButtonBorder();
}
return buttonBorder;
}
public static Border getToggleButtonBorder() {
if (buttonBorder == null) {
buttonBorder = new ButtonBorder();
}
return buttonBorder;
}
public static Border getRolloverToolButtonBorder() {
if (rolloverToolButtonBorder == null) {
rolloverToolButtonBorder = new RolloverToolButtonBorder();
}
return rolloverToolButtonBorder;
}
public static Border getInternalFrameBorder() {
if (internalFrameBorder == null) {
internalFrameBorder = new InternalFrameBorder();
}
return internalFrameBorder;
}
//------------------------------------------------------------------------------------
// Implementation of border classes
//------------------------------------------------------------------------------------
public static class ButtonBorder implements Border, UIResource {
private static final Insets INSETS = new Insets(3, 8, 5, 10);
@Override
public void paintBorder(Component c, Graphics g, int x, int y, int w, int h) {
}
@Override
public Insets getBorderInsets(Component c) {
return INSETS;
}
public Insets getBorderInsets(Component c, Insets borderInsets) {
borderInsets.left = INSETS.left;
borderInsets.top = INSETS.top;
borderInsets.right = INSETS.right;
borderInsets.bottom = INSETS.bottom;
return borderInsets;
}
@Override
public boolean isBorderOpaque() {
return true;
}
} // end of class ButtonBorder
public static class RolloverToolButtonBorder implements Border, UIResource {
private static final Insets INSETS = new Insets(1, 1, 1, 1);
@Override
public void paintBorder(Component c, Graphics g, int x, int y, int w, int h) {
AbstractButton button = (AbstractButton) c;
ButtonModel model = button.getModel();
Color frameColor = ColorHelper.darker(AbstractLookAndFeel.getToolbarBackgroundColor(), 20);
if (model.isEnabled()) {
if ((model.isPressed() && model.isArmed()) || model.isSelected()) {
Graphics2D g2D = (Graphics2D) g;
Composite composite = g2D.getComposite();
g.setColor(frameColor);
g.drawRect(x, y, w - 1, h - 1);
AlphaComposite alpha = AlphaComposite.getInstance(AlphaComposite.SRC_OVER, 0.15f);
g2D.setComposite(alpha);
g.setColor(Color.black);
g.fillRect(x + 1, y + 1, w - 2, h - 2);
g2D.setComposite(composite);
} else if (model.isRollover()) {
Graphics2D g2D = (Graphics2D) g;
Composite composite = g2D.getComposite();
g.setColor(frameColor);
g.drawRect(x, y, w - 1, h - 1);
AlphaComposite alpha = AlphaComposite.getInstance(AlphaComposite.SRC_OVER, 0.4f);
g2D.setComposite(alpha);
g.setColor(Color.white);
g.fillRect(x + 1, y + 1, w - 2, h - 2);
g2D.setComposite(composite);
}
}
}
@Override
public Insets getBorderInsets(Component c) {
return new Insets(INSETS.top, INSETS.left, INSETS.bottom, INSETS.right);
}
public Insets getBorderInsets(Component c, Insets borderInsets) {
borderInsets.left = INSETS.left;
borderInsets.top = INSETS.top;
borderInsets.right = INSETS.right;
borderInsets.bottom = INSETS.bottom;
return borderInsets;
}
@Override
public boolean isBorderOpaque() {
return true;
}
} // end of class RolloverToolButtonBorder
public static class InternalFrameBorder extends BaseInternalFrameBorder {
@Override
public void paintBorder(Component c, Graphics g, int x, int y, int w, int h) {
boolean active = isActive(c);
boolean resizable = isResizable(c);
if (!resizable) {
Color frameColor = AbstractLookAndFeel.getFrameColor();
Color borderColor = AbstractLookAndFeel.getWindowInactiveBorderColor();
if (active) {
borderColor = AbstractLookAndFeel.getWindowBorderColor();
}
Color cHi = ColorHelper.brighter(frameColor, 40);
Color cLo = frameColor;
JTattooUtilities.draw3DBorder(g, cHi, cLo, x, y, w, h);
g.setColor(borderColor);
for (int i = 1; i < DW; i++) {
g.drawRect(i, i, w - (2 * i) - 1, h - (2 * i) - 1);
}
return;
}
h--;
w--;
Color color = AbstractLookAndFeel.getWindowInactiveBorderColor();
if (active) {
color = AbstractLookAndFeel.getWindowBorderColor();
}
// left
g.setColor(color);
g.drawLine(x, y, x, y + h);
g.setColor(ColorHelper.brighter(color, 60));
g.drawLine(x + 1, y + 1, x + 1, y + h - 1);
g.setColor(ColorHelper.brighter(color, 40));
g.drawLine(x + 2, y + 2, x + 2, y + h - 2);
g.setColor(ColorHelper.brighter(color, 20));
g.drawLine(x + 3, y + 3, x + 3, y + h - 3);
g.setColor(color);
g.drawLine(x + 4, y + 4, x + 4, y + h - 4);
// right
g.setColor(color);
g.drawLine(x + w, y, x + w, y + h);
g.setColor(ColorHelper.brighter(color, 20));
g.drawLine(x + w - 1, y + 1, x + w - 1, y + h - 1);
g.setColor(ColorHelper.brighter(color, 40));
g.drawLine(x + w - 2, y + 2, x + w - 2, y + h - 2);
g.setColor(ColorHelper.brighter(color, 60));
g.drawLine(x + w - 3, y + 3, x + w - 3, y + h - 3);
g.setColor(color);
g.drawLine(x + w - 4, y + 4, x + w - 4, y + h - 4);
// top
g.setColor(color);
g.drawLine(x, y, x + w, y);
g.setColor(ColorHelper.brighter(color, 60));
g.drawLine(x + 1, y + 1, x + w - 1, y + 1);
g.setColor(ColorHelper.brighter(color, 40));
g.drawLine(x + 2, y + 2, x + w - 2, y + 2);
g.setColor(ColorHelper.brighter(color, 20));
g.drawLine(x + 3, y + 3, x + w - 3, y + 3);
g.setColor(color);
g.drawLine(x + 4, y + 4, x + w - 4, y + 4);
// bottom
g.setColor(color);
g.drawLine(x, y + h, x + w, y + h);
g.setColor(ColorHelper.brighter(color, 20));
g.drawLine(x + 1, y + h - 1, x + w - 1, y + h - 1);
g.setColor(ColorHelper.brighter(color, 40));
g.drawLine(x + 2, y + h - 2, x + w - 2, y + h - 2);
g.setColor(ColorHelper.brighter(color, 60));
g.drawLine(x + 3, y + h - 3, x + w - 3, y + h - 3);
g.setColor(color);
g.drawLine(x + 4, y + h - 4, x + w - 4, y + h - 4);
}
} // end of class InternalFrameBorder
} // end of class MintBorders