/* * 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 java.awt.geom.Area; import java.awt.geom.RoundRectangle2D; import javax.swing.*; import javax.swing.plaf.ComponentUI; import javax.swing.plaf.UIResource; import javax.swing.plaf.basic.BasicGraphicsUtils; /** * @author Michael Hagen */ public class MintToggleButtonUI extends BaseToggleButtonUI { public static ComponentUI createUI(JComponent c) { return new MintToggleButtonUI(); } protected void paintBackground(Graphics g, AbstractButton b) { if (!b.isContentAreaFilled() || (b.getParent() instanceof JMenuBar)) { return; } if ((b.getWidth() < 32) || (b.getHeight() < 16) || !(b.isBorderPainted() && (b.getBorder() instanceof UIResource)) || AbstractLookAndFeel.getTheme().doDrawSquareButtons()) { ButtonModel model = b.getModel(); Color color = AbstractLookAndFeel.getTheme().getButtonBackgroundColor(); if ((model.isPressed() && model.isArmed()) || model.isSelected()) { color = AbstractLookAndFeel.getTheme().getPressedBackgroundColor(); } else if (b.isRolloverEnabled() && model.isRollover()) { color = AbstractLookAndFeel.getTheme().getRolloverColor(); } g.setColor(color); g.fillRect(0, 0, b.getWidth(), b.getHeight()); if ((model.isPressed() && model.isArmed()) || model.isSelected()) { JTattooUtilities.draw3DBorder(g, Color.lightGray, Color.white, 0, 0, b.getWidth(), b.getHeight()); } else { JTattooUtilities.draw3DBorder(g, Color.white, Color.lightGray, 0, 0, b.getWidth(), b.getHeight()); } return; } Graphics2D g2D = (Graphics2D) g; int width = b.getWidth() - 2; int height = b.getHeight() - 2; ButtonModel model = b.getModel(); if (model.isPressed() && model.isArmed()) { Color color = AbstractLookAndFeel.getTheme().getPressedBackgroundColor(); g2D.setColor(color); g2D.fillRoundRect(0, 0, width, height, height, height); g2D.setColor(AbstractLookAndFeel.getTheme().getFrameColor()); Object savedRederingHint = g2D.getRenderingHint(RenderingHints.KEY_ANTIALIASING); g2D.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON); g2D.drawRoundRect(0, 0, width - 1, height - 1, height, height); g2D.setRenderingHint(RenderingHints.KEY_ANTIALIASING, savedRederingHint); return; } else if (model.isSelected()) { Shape savedClip = g2D.getClip(); Area area = new Area(new Area(new RoundRectangle2D.Double(0, 0, width, height, height, height))); g2D.setClip(area); JTattooUtilities.fillHorGradient(g, AbstractLookAndFeel.getTheme().getPressedColors(), 0, 0, width, height); g2D.setClip(savedClip); g2D.setColor(ColorHelper.darker(AbstractLookAndFeel.getTheme().getPressedBackgroundColor(), 10)); Object savedRederingHint = g2D.getRenderingHint(RenderingHints.KEY_ANTIALIASING); g2D.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON); g2D.drawRoundRect(0, 0, width - 1, height - 1, height, height); g2D.setRenderingHint(RenderingHints.KEY_ANTIALIASING, savedRederingHint); return; } Color colors[] = AbstractLookAndFeel.getTheme().getButtonColors(); if (!model.isEnabled()) { colors = AbstractLookAndFeel.getTheme().getDisabledColors(); } else if (b.isRolloverEnabled() && model.isRollover()) { Color[] src = AbstractLookAndFeel.getTheme().getRolloverColors(); colors = new Color[src.length]; System.arraycopy(src, 0, colors, 0, colors.length); colors[colors.length - 2] = ColorHelper.darker(colors[colors.length - 2], 15); } Object savedRederingHint = g2D.getRenderingHint(RenderingHints.KEY_ANTIALIASING); g2D.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON); // Paint shadow Color color = b.getParent().getBackground(); g2D.setColor(ColorHelper.darker(color, 6)); g2D.drawRoundRect(2, 2, width - 1, height - 1, height, height); g2D.setColor(ColorHelper.darker(color, 18)); g2D.drawRoundRect(1, 1, width - 1, height - 1, height, height); // paint background int x = 0; int y = 0; int w = width; int h = height; for (int i = colors.length - 1; i >= 0; i--) { g2D.setColor(colors[i]); g2D.fillRoundRect(x, y, w, h, h, h); h--; w--; if (((i + 1) % 4) == 0) { x++; y++; } if (h == 0) { break; } } g2D.setColor(Color.white); g2D.drawRoundRect(1, 1, width - 3, height - 3, height - 2, height - 2); g2D.drawRoundRect(1, 1, width - 3, height - 3, height - 2, height - 2); g2D.setRenderingHint(RenderingHints.KEY_ANTIALIASING, savedRederingHint); } protected void paintFocus(Graphics g, AbstractButton b, Rectangle viewRect, Rectangle textRect, Rectangle iconRect) { Graphics2D g2D = (Graphics2D) g; int width = b.getWidth(); int height = b.getHeight(); if (AbstractLookAndFeel.getTheme().doDrawSquareButtons() || !b.isContentAreaFilled() || !(b.getBorder() instanceof UIResource) || ((width < 64) || (height < 16)) && ((b.getText() == null) || b.getText().length() == 0)) { g.setColor(AbstractLookAndFeel.getFocusColor()); BasicGraphicsUtils.drawDashedRect(g, 4, 3, width - 8, height - 6); } else { Object savedRenderingHint = g2D.getRenderingHint(RenderingHints.KEY_ANTIALIASING); g2D.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON); g2D.setColor(AbstractLookAndFeel.getFocusColor()); int d = height - 6; g2D.drawRoundRect(2, 2, width - 7, height - 7, d, d); g2D.setRenderingHint(RenderingHints.KEY_ANTIALIASING, savedRenderingHint); } } }