001: /*
002: * BumpyGradientLookAndFeel.java
003: *
004: * Copyright (C) 2002, 2003, 2004, 2005, 2006 Takis Diakoumis
005: *
006: * This program is free software; you can redistribute it and/or
007: * modify it under the terms of the GNU General Public License
008: * as published by the Free Software Foundation; either version 2
009: * of the License, or any later version.
010: *
011: * This program is distributed in the hope that it will be useful,
012: * but WITHOUT ANY WARRANTY; without even the implied warranty of
013: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
014: * GNU General Public License for more details.
015: *
016: * You should have received a copy of the GNU General Public License
017: * along with this program; if not, write to the Free Software
018: * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
019: *
020: */
021:
022: package org.underworldlabs.swing.plaf.bumpygradient;
023:
024: import java.awt.Color;
025: import java.awt.Component;
026: import java.awt.GradientPaint;
027: import java.awt.Graphics;
028: import java.awt.Graphics2D;
029: import java.awt.Rectangle;
030: import javax.swing.UIDefaults;
031: import javax.swing.UIManager;
032:
033: import org.underworldlabs.swing.plaf.smoothgradient.SmoothGradientLookAndFeel;
034:
035: /* ----------------------------------------------------------
036: * CVS NOTE: Changes to the CVS repository prior to the
037: * release of version 3.0.0beta1 has meant a
038: * resetting of CVS revision numbers.
039: * ----------------------------------------------------------
040: */
041:
042: /**
043: *
044: * @author Takis Diakoumis
045: * @version $Revision: 1.4 $
046: * @date $Date: 2006/05/14 06:56:07 $
047: */
048: public class BumpyGradientLookAndFeel extends SmoothGradientLookAndFeel {
049:
050: /** The modified darker highlight for internal frame bumps */
051: private static Color internalFrameBumpsHighlight;
052:
053: /** Constructs the <code>PlasticLookAndFeel</code>. */
054: public BumpyGradientLookAndFeel() {
055: if (internalFrameBumpsHighlight == null)
056: internalFrameBumpsHighlight = new Color(198, 198, 246);
057: }
058:
059: public String getID() {
060: return "BumpyGradient";
061: }
062:
063: public String getName() {
064: return "Bumpy Gradient Look and Feel";
065: }
066:
067: public String getDescription() {
068: return "The Execute Query Bumpy Gradient Look and Feel - modified from "
069: + "The JGoodies Plastic Look and Feel";
070: }
071:
072: // Overriding Superclass Behavior ***************************************
073:
074: /**
075: * Initializes the class defaults, that is, overrides some UI delegates
076: * with JGoodies Plastic implementations.
077: *
078: * @see javax.swing.plaf.basic.BasicLookAndFeel#getDefaults
079: */
080: protected void initClassDefaults(UIDefaults table) {
081: super .initClassDefaults(table);
082:
083: String NAME_PREFIX = "org.underworldlabs.swing.plaf.bumpygradient.BumpyGradient";
084:
085: // Overwrite some of the uiDefaults.
086: Object[] uiDefaults = { "RootPaneUI",
087: NAME_PREFIX + "RootPaneUI", "InternalFrameUI",
088: NAME_PREFIX + "InternalFrameUI", };
089:
090: table.putDefaults(uiDefaults);
091:
092: }
093:
094: public static Color getInternalFrameBumpsHighlight() {
095: if (internalFrameBumpsHighlight == null) {
096: internalFrameBumpsHighlight = new Color(198, 198, 246);
097: }
098: return internalFrameBumpsHighlight;
099: }
100:
101: }
|