com.alee.extended.inspector.info.AbstractComponentPreview Maven / Gradle / Ivy
/*
* This file is part of WebLookAndFeel library.
*
* WebLookAndFeel library is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* WebLookAndFeel 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with WebLookAndFeel library. If not, see .
*/
package com.alee.extended.inspector.info;
import com.alee.api.annotations.NotNull;
import com.alee.api.annotations.Nullable;
import com.alee.extended.icon.StackIcon;
import com.alee.utils.ReflectUtils;
import com.alee.utils.SwingUtils;
import com.alee.utils.xml.InsetsConverter;
import javax.swing.*;
import java.awt.*;
import java.util.HashMap;
import java.util.Map;
/**
* Abstract component information provider which provides style guidelines and some basic methods.
*
* @param component type
* @author Mikle Garin
*/
public abstract class AbstractComponentPreview implements ComponentPreview
{
/**
* Opaque icon.
*/
public static final ImageIcon opaque = new ImageIcon ( AbstractComponentPreview.class.getResource ( "icons/opaque.png" ) );
/**
* Additional type icons.
*/
public static final ImageIcon frameType = new ImageIcon ( AbstractComponentPreview.class.getResource ( "icons/frame.png" ) );
public static final ImageIcon dialogType = new ImageIcon ( AbstractComponentPreview.class.getResource ( "icons/dialog.png" ) );
public static final ImageIcon windowType = new ImageIcon ( AbstractComponentPreview.class.getResource ( "icons/window.png" ) );
public static final ImageIcon glassPaneType = new ImageIcon ( AbstractComponentPreview.class.getResource ( "icons/glasspane.png" ) );
public static final ImageIcon unknownType = new ImageIcon ( AbstractComponentPreview.class.getResource ( "icons/unknown.png" ) );
/**
* Merged icons cache.
*/
protected static final Map stackIconCache = new HashMap ( 30 );
/**
* Basic style guidelines.
*/
protected static final String visibleColor = "black";
protected static final String visibleAwtColor = "165,145,70";
protected static final String hiddenColor = "180,180,180";
protected static final String styleIdColor = "30,110,30";
protected static final String marginColor = "190,190,0";
protected static final String paddingColor = "0,150,70";
@NotNull
@Override
public Icon getIcon ( @NotNull final C component )
{
// Retrieving component icon
Icon icon = getIconImpl ( component );
// Adding component opacity state icon
if ( SwingUtils.isOpaque ( component ) )
{
final String key = icon.hashCode () + "," + opaque.hashCode ();
if ( stackIconCache.containsKey ( key ) )
{
icon = stackIconCache.get ( key );
}
else
{
icon = new StackIcon ( icon, opaque );
stackIconCache.put ( key, icon );
}
}
return icon;
}
/**
* Returns actual icon for the specified component.
*
* @param component component to provide icon for
* @return actual icon for the specified component
*/
@NotNull
protected abstract Icon getIconImpl ( @NotNull C component );
/**
* Returns main title foreground color.
*
* @param component inspected component
* @return main title foreground color
*/
@NotNull
protected String getTitleColor ( @NotNull final C component )
{
return component.isShowing () ? component instanceof JComponent ? visibleColor : visibleAwtColor : hiddenColor;
}
/**
* Creates and returns {@link LayoutManager} text.
*
* @param layout {@link LayoutManager}
* @return {@link LayoutManager} text
*/
@NotNull
protected String renderLayout ( @Nullable final LayoutManager layout )
{
return layout != null ? " {[" + ReflectUtils.getCompleteClassName ( layout ) + "]:b}" : "";
}
/**
* Creates and returns {@link Insets} text.
*
* @param insets {@link Insets} to render
* @param color text color
* @return {@link Insets} text
*/
@NotNull
protected String renderInsets ( @Nullable final Insets insets, @NotNull final String color )
{
final String text;
if ( !SwingUtils.isEmpty ( insets ) )
{
text = " {[ " + InsetsConverter.insetsToString ( insets ) + " ]:b;c(" + color + ")}";
}
else
{
text = "";
}
return text;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy