/* * QualifiedTreeCellRenderer.java * Copyright 2011 Connor Petty <cpmeister@users.sourceforge.net> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * Created on Feb 16, 2011, 12:00:54 PM */ package pcgen.gui2.tabs.models; import java.awt.Component; import javax.swing.JTree; import javax.swing.tree.DefaultMutableTreeNode; import pcgen.facade.core.InfoFacade; import pcgen.gui2.UIPropertyContext; import pcgen.gui2.util.FontManipulation; import pcgen.system.LanguageBundle; /** * * @author Connor Petty <cpmeister@users.sourceforge.net> */ @SuppressWarnings("serial") public class QualifiedTreeCellRenderer extends CharacterTreeCellRenderer { @Override public Component getTreeCellRendererComponent(JTree tree, Object value, boolean sel, boolean expanded, boolean leaf, int row, boolean focus) { Object obj = ((DefaultMutableTreeNode) value).getUserObject(); if ("".equals(obj) || obj == null) //$NON-NLS-1$ { obj = LanguageBundle.getString("in_none"); //$NON-NLS-1$ } super.getTreeCellRendererComponent(tree, obj, sel, expanded, leaf, row, focus); if (obj instanceof InfoFacade && character != null && !character.isQualifiedFor((InfoFacade) obj)) { setForeground(UIPropertyContext.getNotQualifiedColor()); } if (obj instanceof InfoFacade && ((InfoFacade) obj).isNamePI()) { setFont(FontManipulation.bold_italic(getFont())); } else { setFont(FontManipulation.plain(getFont())); } return this; } }