/* * RapidMiner * * Copyright (C) 2001-2008 by Rapid-I and the contributors * * Complete list of developers available at our web site: * * http://rapid-i.com * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program 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 Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see http://www.gnu.org/licenses/. */ package com.rapidminer.gui.look.painters; import java.awt.Color; import java.awt.Component; import java.awt.GradientPaint; import java.awt.Graphics; import java.awt.Graphics2D; import java.awt.Image; import javax.swing.AbstractButton; import javax.swing.ButtonModel; import com.rapidminer.gui.look.RapidLookTools; /** * This is a cached painter for the buttons. * * @author Ingo Mierswa * @version $Id: ButtonPainter.java,v 1.4 2008/07/13 14:16:10 ingomierswa Exp $ */ public class ButtonPainter extends AbstractCachedPainter { public static final ButtonPainter SINGLETON = new ButtonPainter(15); ButtonPainter(int count) { super(count); } public synchronized void paint(Component c, Graphics g, int x, int y, int w, int h) { paint(c, g, x, y, w, h, new Object[0]); } public void paintToImage(Component c, Graphics g, int w, int h) { paintToImage(c, g, w, h, new Object[0]); } public void paintButtonPressed(Graphics g, int w, int h) { g.setColor(RapidLookTools.getColors().getButtonSkinColors()[8]); g.drawLine(2, 1, w - 3, 1); g.setColor(RapidLookTools.getColors().getButtonSkinColors()[8]); g.drawLine(1, 2, w - 2, 2); g.setColor(RapidLookTools.getColors().getButtonSkinColors()[21]); g.drawLine(1, 3, w - 2, 3); g.drawLine(1, 4, w - 2, 4); g.drawLine(1, 5, w - 2, 5); Graphics2D g2 = (Graphics2D) g; g2.setPaint(new GradientPaint(0, 0, RapidLookTools.getColors().getButtonSkinColors()[19], 0, h, RapidLookTools.getColors().getButtonSkinColors()[20])); g.fillRect(1, 6, w - 2, h - 11); g.setColor(RapidLookTools.getColors().getButtonSkinColors()[5]); g.drawLine(1, h - 5, w - 2, h - 5); g.drawLine(1, h - 4, w - 2, h - 4); g.setColor(RapidLookTools.getColors().getButtonSkinColors()[6]); g.drawLine(1, h - 3, w - 2, h - 3); g.setColor(RapidLookTools.getColors().getButtonSkinColors()[7]); g.drawLine(1, h - 2, w - 2, h - 2); g.setColor(RapidLookTools.getColors().getButtonSkinColors()[8]); g.drawLine(2, h - 1, w - 3, h - 1); } public void paintButton(Graphics g, int w, int h) { g.setColor(Color.white); g.drawLine(2, 1, w - 3, 1); g.drawLine(1, 2, w - 2, 2); g.setColor(RapidLookTools.getColors().getButtonSkinColors()[9]); g.drawLine(1, 3, w - 2, 3); g.setColor(RapidLookTools.getColors().getButtonSkinColors()[4]); g.drawLine(1, 4, w - 2, 4); g.setColor(RapidLookTools.getColors().getButtonSkinColors()[1]); g.drawLine(1, 5, w - 2, 5); g.setColor(RapidLookTools.getColors().getButtonSkinColors()[10]); g.drawLine(1, 6, w - 2, 6); g.setColor(RapidLookTools.getColors().getButtonSkinColors()[2]); g.drawLine(1, 7, w - 2, 7); g.setColor(RapidLookTools.getColors().getButtonSkinColors()[18]); g.drawLine(1, 8, w - 2, 8); g.setColor(RapidLookTools.getColors().getButtonSkinColors()[3]); g.fillRect(1, 9, w - 2, h - 15); g.setColor(RapidLookTools.getColors().getButtonSkinColors()[11]); g.drawLine(1, h - 6, w - 2, h - 6); g.setColor(RapidLookTools.getColors().getButtonSkinColors()[12]); g.drawLine(1, h - 5, w - 2, h - 5); g.setColor(RapidLookTools.getColors().getButtonSkinColors()[13]); g.drawLine(1, h - 4, w - 2, h - 4); g.setColor(RapidLookTools.getColors().getButtonSkinColors()[14]); g.drawLine(1, h - 3, w - 2, h - 3); g.setColor(RapidLookTools.getColors().getButtonSkinColors()[15]); g.drawLine(1, h - 2, w - 2, h - 2); g.setColor(RapidLookTools.getColors().getButtonSkinColors()[16]); g.drawLine(2, h - 1, w - 3, h - 1); } public void paintButtonDisabled(Graphics g, int w, int h, boolean selected) { if (selected) { g.setColor(RapidLookTools.getColors().getButtonSkinColors()[11]); } else { g.setColor(RapidLookTools.getColors().getButtonSkinColors()[17]); } g.drawLine(2, 1, w - 3, 1); g.drawLine(1, 2, w - 2, 2); g.drawLine(1, 3, w - 2, 3); g.drawLine(1, 4, w - 2, 4); g.drawLine(1, 5, w - 2, 5); g.drawLine(1, 6, w - 2, 6); g.drawLine(1, 7, w - 2, 7); g.fillRect(1, 8, w - 2, h - 14); g.drawLine(1, h - 6, w - 2, h - 6); g.drawLine(1, h - 5, w - 2, h - 5); g.drawLine(1, h - 4, w - 2, h - 4); g.drawLine(1, h - 3, w - 2, h - 3); g.drawLine(1, h - 2, w - 2, h - 2); g.drawLine(2, h - 1, w - 3, h - 1); } @Override protected void paintToImage(Component c, Graphics g, int w, int h, Object[] args) { ButtonModel buttonModel = ((AbstractButton) c).getModel(); if (buttonModel.isEnabled()) { if ((buttonModel.isArmed() && buttonModel.isPressed()) || buttonModel.isSelected()) { paintButtonPressed(g, w, h); } else { paintButton(g, w, h); } } else { //disabled button paintButtonDisabled(g, w, h, buttonModel.isSelected()); } } @Override protected void paintImage(Component c, Graphics g, int x, int y, int imageW, int imageH, Image image, Object[] args) { g.translate(x, y); g.drawImage(image, 0, 0, null); g.translate(-x, -y); } }