Package DisplayProject

Source Code of DisplayProject.TreeViewCellRenderer

/*
Copyright (c) 2003-2009 ITerative Consulting Pty Ltd. All Rights Reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted
provided that the following conditions are met:

o Redistributions of source code must retain the above copyright notice, this list of conditions and
the following disclaimer.
 
o Redistributions in binary form must reproduce the above copyright notice, this list of conditions
and the following disclaimer in the documentation and/or other materials provided with the distribution.
   
o This jcTOOL Helper Class software, whether in binary or source form may not be used within,
or to derive, any other product without the specific prior written permission of the copyright holder

 
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.


*/
package DisplayProject;

import java.awt.Component;
import java.awt.Image;

import javax.swing.ImageIcon;
import javax.swing.JLabel;
import javax.swing.JTree;
import javax.swing.tree.DefaultTreeCellRenderer;

import DisplayProject.factory.TableFactory;
import Framework.ImageData;

/**
* The cell Renderer use to render elements in a {@link javax.swing.JTree}
*/
@SuppressWarnings("serial")
public class TreeViewCellRenderer extends DefaultTreeCellRenderer {
    public Component getTreeCellRendererComponent(
            JTree tree,
            Object value,
            boolean sel,
            boolean expanded,
            boolean leaf,
            int row,
            boolean hasFocus) {

        Component result = super.getTreeCellRendererComponent(tree, value, sel, expanded, leaf, row, hasFocus);

        if (result != null && value != null && result instanceof JLabel && value instanceof DisplayNode) {
            DisplayNode aNode = (DisplayNode)value;
            JLabel aLabel = (JLabel)result;
            ImageData image = selected ? aNode.getDVSelectedIcon() : aNode.getDVSmallIcon();

            if (image == null) image = !selected ? aNode.getDVSelectedIcon() : aNode.getDVSmallIcon();

            if (image == null){
                aLabel.setIcon(null);
            } else {
                ImageIcon icon = new ImageIcon(image.getValue().getScaledInstance(16, 16, Image.SCALE_DEFAULT));
                aLabel.setIcon(icon);
            }
            if ((aNode.getDVNodeText() == null)||(aNode.getDVNodeText().length()==0))//PM:7 oct. 2008:performance
                aLabel.setText(aNode.toString());
            else
                aLabel.setText(aNode.getDVNodeText().toString());

//            DC Change colour as per Forte
            if (selected) {

                    if (hasFocus) {
//                Not required set in call to super
//                setOpaque(false);
                        setBackground(TableFactory.HIGHLIGHT_COLOUR_FOCUS  );
                        setForeground(getTextSelectionColor());
                    } else {
                        setOpaque(true);
                    setBackground(TableFactory.HIGHLIGHT_COLOUR_NO_FOCUS);
                        setForeground(getTextNonSelectionColor());
                    }
            } else {
                    super.setBackground(getBackgroundNonSelectionColor());
                    setForeground(getTextNonSelectionColor());
                    setBorderSelectionColor(null);
            }
        }
        return result;
    }

}
TOP

Related Classes of DisplayProject.TreeViewCellRenderer

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.