blob: d41a3584475c051d3b70bde01a627d70e65221e1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 BSI Business Systems Integration AG.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* BSI Business Systems Integration AG - initial API and implementation
******************************************************************************/
package org.eclipse.scout.rt.ui.swing.ext;
import java.util.HashMap;
import java.util.Map;
import javax.swing.JLabel;
import javax.swing.UIManager;
import javax.swing.plaf.basic.BasicHTML;
import javax.swing.text.View;
import org.eclipse.scout.commons.CompositeObject;
/**
* Since html rendering is very expensive in swing and tables render views every
* time they are repainted, this cache supports for re-using html views based on
* the crc of a string.
* <p>
* To use on JLabels you must perform the following actions:
* <ul>
* <li>Disable automatic html on the field: label.putClientProperty("html.disable",true);</li>
* <li>Whenever {@link JLabel#setText(String)} is called, call {@link #updateHtmlView(JLabel)} just after it.</li>
* </ul>
*/
public class HtmlViewCache {
private final Map<Object, View> m_viewMap;
public HtmlViewCache() {
m_viewMap = new HashMap<Object, View>();
}
/**
* update html view using the cache
*/
public void updateHtmlView(JLabel label, boolean customForeground) {
String text = label.getText();
View value = null;
if (BasicHTML.isHTMLString(text)) {
if (!customForeground) {
label.setForeground(label.isEnabled() ? UIManager.getDefaults().getColor("TextField.foreground") : UIManager.getDefaults().getColor("TextField.inactiveForeground"));
}
// Key needs to be unique.
CompositeObject key = new CompositeObject(text, String.valueOf(label.getFont()), label.getForeground());
value = m_viewMap.get(key);
if (value == null) {
value = BasicHTML.createHTMLView(label, text);
if (value != null) {
m_viewMap.put(key, value);
}
}
}
label.putClientProperty(BasicHTML.propertyKey, value);
}
}