All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.incors.plaf.kunststoff.GradientTheme Maven / Gradle / Ivy

Go to download

The Kunststoff Look and Feel is an extension to the the Java ™ Metal Look and Feel. This makes it very compact in size (approx. 43 kBytes) and ensures that all the great features provided by the Metal Look and Feel do not get lost. It is our little contribution for making the Java ™ platform even better and we hope that it will help you make some wonderful GUIs.

The newest version!
package com.incors.plaf.kunststoff;

/*
 * This code was developed by INCORS GmbH (www.incors.com).
 * It is published under the terms of the GNU Lesser General Public License.
 */

import java.awt.*;
import javax.swing.plaf.*;
import javax.swing.plaf.metal.*;

/**
 * Interface that provides methods for getting the colors for all gradients
 * in the Kunststoff Look&Feel. This interface can be implemented by subclasses
 * of javax.swing.plaf.metal.MetalTheme to have a theme that provides
 * standard colors as well as gradient colors.
 */
public interface GradientTheme {

  /**
   * Returns the upper gradient color for components like JButton, JMenuBar,
   * and JProgressBar.
   * Will return null if upper gradient should not be painted.
   */
  public ColorUIResource getComponentGradientColorReflection();

  /**
   * Returns the lower gradient color for components like JButton, JMenuBar,
   * and JProgressBar.
   * Will return null if lower gradient should not be painted.
   */
  public ColorUIResource getComponentGradientColorShadow();

  /**
   * Returns the upper gradient color for text components like JTextField and
   * JPasswordField.
   * Will return null if upper gradient should not be painted.
   */
  public ColorUIResource getTextComponentGradientColorReflection();

  /**
   * Returns the lower gradient color for text components like JTextField and
   * JPasswordField.
   * Will return null if lower gradient should not be painted.
   */
  public ColorUIResource getTextComponentGradientColorShadow();

  public int getBackgroundGradientShadow();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy