/** * $RCSfile: ,v $ * $Revision: $ * $Date: $ * * Copyright (C) 2004-2011 Jive Software. 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 org.jivesoftware.spark.component.renderer; import javax.swing.BorderFactory; import javax.swing.JList; import javax.swing.JPanel; import javax.swing.ListCellRenderer; import javax.swing.UIManager; import java.awt.Color; import java.awt.Component; /** * The <code>JPanelRenderer</code> is the an implementation of ListCellRenderer * to add an entire panel ui to lists. * * @author Derek DeMoro */ public class JPanelRenderer extends JPanel implements ListCellRenderer { private static final long serialVersionUID = -8968866073878932932L; /** * Construct Default JPanelRenderer. */ public JPanelRenderer() { setOpaque(true); } public Component getListCellRendererComponent(JList list, Object value, int index, boolean isSelected, boolean cellHasFocus) { JPanel panel = (JPanel)value; panel.setFocusable(false); if (isSelected) { panel.setForeground((Color)UIManager.get("List.selectionForeground")); panel.setBackground((Color)UIManager.get("List.selectionBackground")); panel.setBorder(BorderFactory.createLineBorder((Color)UIManager.get("List.selectionBorder"))); } else { panel.setBackground(list.getBackground()); panel.setForeground(list.getForeground()); panel.setBorder(BorderFactory.createLineBorder((Color)UIManager.get("ContactItem.background"))); } list.setBackground((Color)UIManager.get("ContactItem.background")); return panel; } }