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

org.pushingpixels.substance.swingx.SubstanceTitledPanelUI Maven / Gradle / Ivy

There is a newer version: 7.3
Show newest version
/*
 * Copyright 2005-2010 Kirill Grouchnikov, based on work by
 * Sun Microsystems, Inc. All rights reserved.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 */
package org.pushingpixels.substance.swingx;

import javax.swing.JComponent;
import javax.swing.border.*;
import javax.swing.plaf.*;

import org.jdesktop.swingx.JXPanel;
import org.jdesktop.swingx.JXTitledPanel;
import org.jdesktop.swingx.plaf.basic.BasicTitledPanelUI;
import org.pushingpixels.lafwidget.utils.ShadowPopupBorder;
import org.pushingpixels.substance.api.DecorationAreaType;
import org.pushingpixels.substance.api.SubstanceLookAndFeel;
import org.pushingpixels.substance.internal.painter.DecorationPainterUtils;
import org.pushingpixels.substance.internal.utils.SubstanceCoreUtilities;
import org.pushingpixels.substance.internal.utils.border.SubstanceBorder;

/**
 * Substance-consistent UI delegate for {@link JXTitledPanel}.
 * 
 * @author Kirill Grouchnikov
 */
public class SubstanceTitledPanelUI extends BasicTitledPanelUI {
	public static ComponentUI createUI(JComponent comp) {
		SubstanceCoreUtilities.testComponentCreationThreadingViolation(comp);
		return new SubstanceTitledPanelUI();
	}

	/*
	 * (non-Javadoc)
	 * 
	 * @see
	 * org.jdesktop.swingx.plaf.basic.BasicTitledPanelUI#installComponents(org
	 * .jdesktop.swingx.JXTitledPanel)
	 */
	@Override
	protected void installComponents(JXTitledPanel titledPanel) {
		super.installComponents(titledPanel);

		Border currBorder = titledPanel.getBorder();
		if ((currBorder == null) || (currBorder instanceof UIResource)) {
			titledPanel
					.setBorder(new BorderUIResource.CompoundBorderUIResource(
							new EmptyBorder(2, 2, 2, 2), new CompoundBorder(
									ShadowPopupBorder.getInstance(),
									new SubstanceBorder())));
		}
	}

	/*
	 * (non-Javadoc)
	 * 
	 * @see
	 * org.jdesktop.swingx.plaf.basic.BasicTitledPanelUI#createAndConfigureTopPanel
	 * (org.jdesktop.swingx.JXTitledPanel)
	 */
	@Override
	protected JXPanel createAndConfigureTopPanel(JXTitledPanel titledPanel) {
		JXPanel result = super.createAndConfigureTopPanel(titledPanel);
		SubstanceLookAndFeel.setDecorationType(result,
				DecorationAreaType.HEADER);
		return result;
	}

	/*
	 * (non-Javadoc)
	 * 
	 * @see
	 * org.jdesktop.swingx.plaf.basic.BasicTitledPanelUI#uninstallDefaults(org
	 * .jdesktop.swingx.JXTitledPanel)
	 */
	@Override
	protected void uninstallDefaults(JXTitledPanel titledPanel) {
		DecorationPainterUtils.clearDecorationType(topPanel);
		super.uninstallDefaults(titledPanel);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy