/* * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this * particular file as subject to the "Classpath" exception as provided * by Oracle in the LICENSE file that accompanied this code. * * This code 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 * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ package com.sun.tools.visualvm.modules.tracer.impl.swing; import java.awt.Color; import java.awt.Dimension; import java.awt.Font; import java.awt.FontMetrics; import java.awt.Graphics; import java.awt.Insets; import java.awt.Rectangle; import javax.swing.Icon; import javax.swing.JLabel; import javax.swing.plaf.LabelUI; import javax.swing.plaf.basic.BasicLabelUI; /** * * @author Jiri Sedlacek */ public class LabelRenderer extends JLabel { private static final LabelRendererUI UI = new LabelRendererUI(); private static final int DIRTY = Integer.MIN_VALUE; private int x; private int y; private Insets insets = new Insets(0, 0, 0, 0); private Dimension preferredSize; private FontMetrics fontMetrics; private String text; private Icon icon; private Color foreground; private boolean enabled; private int iconWidth; private int iconHeight; private int iconTextGap; private int textWidth; private int fontAscent; // --- Constructor --------------------------------------------------------- public LabelRenderer() { setHorizontalAlignment(LEFT); setVerticalAlignment(TOP); setSize(Integer.MAX_VALUE, Integer.MAX_VALUE); setOpaque(false); setEnabled(true); iconTextGap = super.getIconTextGap(); } // --- Implementation ------------------------------------------------------ public Insets getInsets() { return insets; } public Insets getInsets(Insets insets) { return this.insets; } public void setLocation(int x, int y) { this.x = x; this.y = y; } public Dimension getPreferredSize() { if (preferredSize == null) preferredSize = new Dimension(DIRTY, DIRTY); if (preferredSize.width == DIRTY) { textWidth = text == null || text.isEmpty() ? 0 : fontMetrics.stringWidth(text); preferredSize.width = iconWidth + textWidth; if (iconWidth > 0 && textWidth > 0) preferredSize.width += iconTextGap; } if (preferredSize.height == DIRTY) { fontAscent = fontMetrics.getAscent(); preferredSize.height = fontAscent + fontMetrics.getDescent(); } return preferredSize; } public void setUI(LabelUI ui) { super.setUI(UI); } private void resetPreferredSize(boolean width, boolean height) { if (preferredSize == null) return; if (width) preferredSize.width = DIRTY; if (height) preferredSize.height = DIRTY; } protected void prePaint(Graphics g, int x, int y) {} protected void postPaint(Graphics g, int x, int y) {} public void paint(Graphics g) { Graphics cg = getComponentGraphics(g); prePaint(cg, x, y); int xx = x; if (iconWidth > 0) { int yy = (preferredSize.height - iconHeight) / 2; icon.paintIcon(this, cg, xx, y + yy); xx += iconWidth + iconTextGap; } if (textWidth > 0) UI.paintEnabledText(this, cg, text, xx, y + fontAscent); postPaint(cg, x, y); } // --- Peformance tweaks --------------------------------------------------- // Overridden for performance reasons. public void setText(String text) { this.text = text; resetPreferredSize(true, false); } // Overridden for performance reasons. public String getText() { return text; } // Overridden for performance reasons. public void setIcon(Icon icon) { int oldIconWidth = iconWidth; iconWidth = icon == null ? 0 : icon.getIconWidth(); iconHeight = icon == null ? 0 : icon.getIconHeight(); this.icon = icon; if (oldIconWidth != iconWidth) resetPreferredSize(true, false); } // Overridden for performance reasons. public Icon getIcon() { return icon; } // Overridden for performance reasons. public void setForeground(Color foreground) { this.foreground = foreground; } // Overridden for performance reasons. public Color getForeground() { return foreground; } // Overridden for performance reasons. public void setEnabled(boolean enabled) { this.enabled = enabled; } // Overridden for performance reasons. public boolean isEnabled() { return enabled; } // Overridden for performance reasons. public int getDisplayedMnemonicIndex() { return -1; } // Overridden for performance reasons. public FontMetrics getFontMetrics(Font font) { return fontMetrics; } // Overridden for performance reasons. public void setFont(Font font) { super.setFont(font); fontMetrics = super.getFontMetrics(font); resetPreferredSize(true, true); } // Overridden for performance reasons. public int getIconTextGap() { return iconTextGap; } // Overridden for performance reasons. public void setIconTextGap(int iconTextGap) { this.iconTextGap = iconTextGap; resetPreferredSize(true, false); } // Overridden for performance reasons. public void validate() {} // Overridden for performance reasons. public void revalidate() {} // Overridden for performance reasons. public void repaint(long tm, int x, int y, int width, int height) {} // Overridden for performance reasons. public void repaint(Rectangle r) {} // Overridden for performance reasons. public void repaint() {} // Overridden for performance reasons. public void setDisplayedMnemonic(int key) {} // Overridden for performance reasons. public void setDisplayedMnemonic(char aChar) {} // Overridden for performance reasons. public void setDisplayedMnemonicIndex(int index) {} // Overridden for performance reasons. public void firePropertyChange(String propertyName, byte oldValue, byte newValue) {} // Overridden for performance reasons. public void firePropertyChange(String propertyName, char oldValue, char newValue) {} // Overridden for performance reasons. public void firePropertyChange(String propertyName, short oldValue, short newValue) {} // Overridden for performance reasons. public void firePropertyChange(String propertyName, int oldValue, int newValue) {} // Overridden for performance reasons. public void firePropertyChange(String propertyName, long oldValue, long newValue) {} // Overridden for performance reasons. public void firePropertyChange(String propertyName, float oldValue, float newValue) {} // Overridden for performance reasons. public void firePropertyChange(String propertyName, double oldValue, double newValue) {} // Overridden for performance reasons. public void firePropertyChange(String propertyName, boolean oldValue, boolean newValue) {} // Overridden for performance reasons. protected void firePropertyChange(String propertyName, Object oldValue, Object newValue) {} private static class LabelRendererUI extends BasicLabelUI { protected void paintEnabledText(JLabel l, Graphics g, String s, int textX, int textY) { super.paintEnabledText(l, g, s, textX, textY); } } }