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

org.jvnet.substance.SubstanceOptionPaneUI Maven / Gradle / Ivy

Go to download

A rock solid, fast and extensible library for creating visually appealing and consistent Swing applications.

The newest version!
/*
 * Copyright (c) 2005-2009 Substance Kirill Grouchnikov. All Rights Reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 *  o Redistributions of source code must retain the above copyright notice,
 *    this list of conditions and the following disclaimer.
 *
 *  o Redistributions in binary form must reproduce the above copyright notice,
 *    this list of conditions and the following disclaimer in the documentation
 *    and/or other materials provided with the distribution.
 *
 *  o Neither the name of Substance Kirill Grouchnikov nor the names of
 *    its contributors may be used to endorse or promote products derived
 *    from this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
 * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */
package org.jvnet.substance;

import java.awt.*;

import javax.swing.*;
import javax.swing.plaf.ComponentUI;
import javax.swing.plaf.basic.BasicOptionPaneUI;

import org.jvnet.lafwidget.LafWidgetUtilities;
import org.jvnet.lafwidget.animation.*;
import org.jvnet.substance.painter.utils.SubstanceFillBackgroundDelegate;
import org.jvnet.substance.utils.SubstanceCoreUtilities;
import org.jvnet.substance.utils.icon.GlowingIcon;

/**
 * UI for option panes in Substance look and feel.
 * 
 * @author Kirill Grouchnikov
 */
public class SubstanceOptionPaneUI extends BasicOptionPaneUI {
	static {
		FadeConfigurationManager.getInstance().allowFades(FadeKind.ICON_GLOW,
				OptionPaneLabel.class);
	}

	/**
	 * Delegate for filling the background.
	 */
	private static SubstanceFillBackgroundDelegate bgDelegate = new SubstanceFillBackgroundDelegate();

	/**
	 * Label extension class. Due to defect 250, the option pane icon animation
	 * (glowing icon) should repaint only the icon itself and not the entire
	 * option pane. While the FadeConfigurationManager API provides an option to
	 * enable animations on the specific component, it's better to enable it on
	 * the component class (to make the lookups faster). So, when the option
	 * pane icon label is created (in addIcon method), we use this class.
	 * 
	 * @author Kirill Grouchnikov
	 */
	protected static class OptionPaneLabel extends JLabel {
	}

	/**
	 * Icon label.
	 */
	private OptionPaneLabel substanceIconLabel;

	/**
	 * Creates a new SubstanceOptionPaneUI instance.
	 */
	public static ComponentUI createUI(JComponent comp) {
		SubstanceCoreUtilities.testComponentCreationThreadingViolation(comp);
		return new SubstanceOptionPaneUI();
	}

	/*
	 * (non-Javadoc)
	 * 
	 * @see javax.swing.plaf.ComponentUI#paint(java.awt.Graphics,
	 * javax.swing.JComponent)
	 */
	@Override
	public void paint(Graphics g, JComponent c) {
		SubstanceOptionPaneUI.bgDelegate.updateIfOpaque(g, c);
	}

	/*
	 * (non-Javadoc)
	 * 
	 * @see javax.swing.plaf.basic.BasicOptionPaneUI#addIcon(java.awt.Container)
	 */
	@Override
	protected void addIcon(Container top) {
		Icon sideIcon = (optionPane == null ? null : optionPane.getIcon());

		if (sideIcon == null && optionPane != null)
			sideIcon = super.getIconForType(optionPane.getMessageType());

		if (sideIcon != null) {
			if (!SubstanceLookAndFeel.isToUseConstantThemesOnDialogs()) {
				sideIcon = SubstanceCoreUtilities.getThemedIcon(null, sideIcon);
			}

			substanceIconLabel = new OptionPaneLabel();
			substanceIconLabel.setIcon(new GlowingIcon(sideIcon,
					substanceIconLabel));

			substanceIconLabel.setName("OptionPane.iconLabel");
			substanceIconLabel.setVerticalAlignment(SwingConstants.TOP);
			top.add(substanceIconLabel, BorderLayout.BEFORE_LINE_BEGINS);
		}
	}

	/*
	 * (non-Javadoc)
	 * 
	 * @see javax.swing.plaf.basic.BasicOptionPaneUI#getIconForType(int)
	 */
	@Override
	protected Icon getIconForType(int messageType) {
		switch (messageType) {
		case JOptionPane.ERROR_MESSAGE:
			return SubstanceCoreUtilities
					.getIcon("resource/32/dialog-error.png");
		case JOptionPane.INFORMATION_MESSAGE:
			return SubstanceCoreUtilities
					.getIcon("resource/32/dialog-information.png");
		case JOptionPane.WARNING_MESSAGE:
			return SubstanceCoreUtilities
					.getIcon("resource/32/dialog-warning.png");
		case JOptionPane.QUESTION_MESSAGE:
			return SubstanceCoreUtilities
					.getIcon("resource/32/help-browser.png");
		}
		return null;
	}

	/*
	 * (non-Javadoc)
	 * 
	 * @see javax.swing.plaf.basic.BasicOptionPaneUI#installComponents()
	 */
	@Override
	protected void installComponents() {
		super.installComponents();
		// fix for defect 265 - check that the label is not null
		// before activating the loop.
		if (this.substanceIconLabel != null) {
			// Make the icon glow for three cycles. There's no need to
			// explicitly cancel the animation when the option pane is closed
			// before the animation is over - when the three cycles are up,
			// the animation will be removed by the tracker.
			FadeTracker.getInstance().trackFadeLooping(
					FadeKind.ICON_GLOW,
					LafWidgetUtilities.getAnimationKind(this.optionPane)
							.derive(0.1f), this.substanceIconLabel, null,
					false, null, 3, true);
		}
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy