/* Copyright 2011-2016 Google Inc. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ package com.google.security.zynamics.zylib.yfileswrap.gui.zygraph.realizers; import com.google.common.base.Preconditions; import com.google.security.zynamics.zylib.gui.zygraph.realizers.ZyLabelContent; import com.google.security.zynamics.zylib.yfileswrap.gui.zygraph.nodes.ZyGraphNode; import y.view.LineType; import y.view.NodeRealizer; import y.view.ShapeNodeRealizer; import java.awt.AlphaComposite; import java.awt.Color; import java.awt.Graphics2D; import java.awt.geom.Rectangle2D; /** * Realizer class for default rectangular text nodes. * * @param <NodeType> */ public class ZyNormalNodeRealizer<NodeType extends ZyGraphNode<?>> extends ZyNodeRealizer<NodeType> { private static final byte SHADOW_SIZE = 8; private static final Color SHADOW_COLOR = Color.GRAY; /** * Content that is displayed in the realizer. */ private final ZyLabelContent m_content; /** * Creates a new node realizer. * * @param content Content of the realizer. */ public ZyNormalNodeRealizer(final ZyLabelContent content) { Preconditions.checkNotNull(content, "Error: Node content can't be null."); m_content = content; setShapeType(ShapeNodeRealizer.ROUND_RECT); setLineType(LineType.LINE_2); setDropShadowOffsetX(SHADOW_SIZE); setDropShadowOffsetY(SHADOW_SIZE); setDropShadowColor(SHADOW_COLOR); final Rectangle2D bounds = getNodeContent().getBounds(); setSize(bounds.getWidth(), bounds.getHeight()); } @Override protected void paintShadow(final Graphics2D gfx) { if (!isSelected() && isDropShadowVisible()) { gfx.setColor(SHADOW_COLOR); setDropShadowOffsetX(SHADOW_SIZE); setDropShadowOffsetY(SHADOW_SIZE); gfx.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_OVER, 0.70f)); super.paintShadow(gfx); gfx.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_OVER, 1.f)); } } @Override public ZyLabelContent getNodeContent() { return m_content; } @Override public NodeRealizer getRealizer() { return this; } @Override public void paintHotSpots(final Graphics2D g) { return; } @Override public void paintNode(final Graphics2D gfx) { super.paintNode(gfx); final Rectangle2D contentBounds = getNodeContent().getBounds(); final double xratio = getWidth() / contentBounds.getWidth(); final double yratio = getHeight() / contentBounds.getHeight(); gfx.scale(xratio, yratio); getNodeContent().draw(gfx, (getX() * 1) / xratio, (getY() * 1) / yratio); gfx.scale(1 / xratio, 1 / yratio); } @Override public String toString() { return m_content.toString(); } }