Package pivot.wtk.content

Source Code of pivot.wtk.content.TreeViewFileRenderer

/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements.  See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to you 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 pivot.wtk.content;

import java.awt.Color;
import java.awt.Font;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.FileNotFoundException;

import pivot.io.Folder;
import pivot.wtk.FlowPane;
import pivot.wtk.HorizontalAlignment;
import pivot.wtk.ImageView;
import pivot.wtk.Label;
import pivot.wtk.TreeView;
import pivot.wtk.VerticalAlignment;
import pivot.wtk.media.Image;
import pivot.wtk.media.Picture;
import sun.awt.shell.ShellFolder;

/**
* Tree view renderer for displaying file system contents.
*
* @author gbrown
*/
public class TreeViewFileRenderer extends FlowPane implements TreeView.NodeRenderer {
    private ImageView imageView = new ImageView();
    private Label label = new Label();

    private boolean useNativeIcons = true;

    public static final int ICON_WIDTH = 16;
    public static final int ICON_HEIGHT = 16;

    private static final Image defaultFolderImage =
        Image.load(TreeViewFileRenderer.class.getResource("folder.png"));
    private static final Image defaultFileImage =
        Image.load(TreeViewFileRenderer.class.getResource("page_white.png"));

    public TreeViewFileRenderer() {
        super();

        getStyles().put("horizontalAlignment", HorizontalAlignment.LEFT);
        getStyles().put("verticalAlignment", VerticalAlignment.CENTER);

        add(imageView);
        add(label);

        imageView.setPreferredSize(ICON_WIDTH, ICON_HEIGHT);
    }

    public void setSize(int width, int height) {
        super.setSize(width, height);

        // Since this component doesn't have a parent, it won't be validated
        // via layout; ensure that it is valid here
        validate();
    }

    @Override
    public int getPreferredHeight(int width) {
        int preferredHeight = super.getPreferredHeight(width);
        return preferredHeight;
    }

    public void render(Object node, TreeView treeView, boolean expanded,
        boolean selected, TreeView.NodeCheckState checkState,
        boolean highlighted, boolean disabled) {
        File file = (File)node;

        // Update the image view
        Image icon = null;

        ShellFolder shellFolder = null;
        try {
            shellFolder = ShellFolder.getShellFolder(file);
        } catch(FileNotFoundException exception) {
        }

        java.awt.Image image = null;
        if (shellFolder != null) {
            image = shellFolder.getIcon(false);
        }

        if (image instanceof BufferedImage
            && useNativeIcons) {
            icon = new Picture((BufferedImage)image);
        } else {
            if (file instanceof Folder) {
                icon = defaultFolderImage;
            } else {
                icon = defaultFileImage;
            }
        }

        imageView.setImage(icon);
        imageView.getStyles().put("opacity",
            (treeView.isEnabled() && !disabled) ? 1.0f : 0.5f);

        // Update the label
        label.setText(file.getName());

        Object labelFont = treeView.getStyles().get("font");
        if (labelFont instanceof Font) {
            label.getStyles().put("font", labelFont);
        }

        Object color = null;
        if (treeView.isEnabled() && !disabled) {
            if (selected) {
                if (treeView.isFocused()) {
                    color = treeView.getStyles().get("selectionColor");
                } else {
                    color = treeView.getStyles().get("inactiveSelectionColor");
                }
            } else {
                color = treeView.getStyles().get("color");
            }
        } else {
            color = treeView.getStyles().get("disabledColor");
        }

        if (color instanceof Color) {
            label.getStyles().put("color", color);
        }
    }

    public boolean getUseNativeIcons() {
        return useNativeIcons;
    }

    public void setUseNativeIcons(boolean useNativeIcons) {
        this.useNativeIcons = useNativeIcons;
    }
}
TOP

Related Classes of pivot.wtk.content.TreeViewFileRenderer

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.