Package org.antlr.xjlib.appkit.utils

Source Code of org.antlr.xjlib.appkit.utils.XJFileChooser

/*

[The "BSD licence"]
Copyright (c) 2005 Jean Bovet
All rights reserved.

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

1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. 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.
3. The name of the author may not be used to endorse or promote products
derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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 org.antlr.xjlib.appkit.utils;

import org.antlr.xjlib.appkit.app.XJApplication;
import org.antlr.xjlib.appkit.frame.XJDialog;
import org.antlr.xjlib.foundation.XJSystem;
import org.antlr.xjlib.foundation.XJUtils;

import javax.swing.*;
import javax.swing.filechooser.FileFilter;
import java.awt.*;
import java.io.File;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;

public class XJFileChooser {

    private static XJFileChooser shared = new XJFileChooser();

    private List<String> selectedFilePaths = null;
    private String selectedFilePath = null;
    private String selectedFileExtension = null;

    static {
        if(XJSystem.isMacOS()) {
            // Allow traversal of bundle on Mac OS X
            UIManager.put("JFileChooser.appBundleIsTraversable", "always");
            UIManager.put("JFileChooser.packageIsTraversable", "always");
        }
    }

    public static XJFileChooser shared() {
        return shared;
    }

    public boolean displayOpenDialog(Component parent, boolean multiple) {
        return displayOpenDialog(parent, null, (List<String>)null, false);
    }

    public boolean displayOpenDialog(Component parent, String extension, String description, boolean multiple) {
        return displayOpenDialog(parent, Collections.singletonList(extension), Collections.singletonList(description), multiple);
    }

    public boolean displayOpenDialog(Component parent, List extensions, String description, boolean multiple) {
        return displayOpenDialog(parent, Collections.singletonList(extensions), Collections.singletonList(description), multiple);
    }

    public boolean displayOpenDialog(Component parent, List extensions, List<String> descriptions, boolean multiple) {
        if(parent != null)
            parent = XJDialog.resolveOwner(parent.getParent());

        JFileChooser chooser = new JFileChooser();
        chooser.setMultiSelectionEnabled(multiple);
        if(extensions == null || extensions.size() == 0)
            chooser.setAcceptAllFileFilterUsed(true);
        else {
            for(int i=0; i<extensions.size(); i++) {
                XJFileFilter ff = XJFileFilter.createFileFilter(extensions.get(i),
                        descriptions.get(i));
                chooser.addChoosableFileFilter(ff);
                if(extensions.size() == 1 && i == 0)
                    chooser.setFileFilter(ff);
            }
            if(extensions.size() > 1)
                chooser.setFileFilter(chooser.getAcceptAllFileFilter());
        }

        loadDefaultDirectory(chooser);

        if(chooser.showOpenDialog(parent==null?null:parent) == JFileChooser.APPROVE_OPTION) {
            selectedFilePath = chooser.getSelectedFile().getAbsolutePath();
            selectedFilePaths = filesToList(chooser.getSelectedFiles());
            if(extensions != null && extensions.size() >= 0) {
                FileFilter ff = chooser.getFileFilter();
                if(ff instanceof XJFileFilter) {
                    XJFileFilter filter = (XJFileFilter)ff;
                    if(selectedFilePath.indexOf(".") == -1)
                        selectedFilePath += "."+filter.getDefaultExtension();
                }
            }
            saveCurrentDirectory(chooser);
            return XJApplication.YES;
        } else
            return XJApplication.NO;
    }

    private static final String DEFAULT_DIR = "xjfilechooser.default.dir";

    private void loadDefaultDirectory(JFileChooser chooser) {
        String currentDir = XJApplication.shared().getPreferences().getString(DEFAULT_DIR, null);
        if(currentDir != null) {
            File dir = new File(currentDir);
            if(dir.exists()) {
                chooser.setCurrentDirectory(dir);
            }
        }
    }

    private void saveCurrentDirectory(JFileChooser chooser) {
        // FIX AW-107
        String dir = chooser.getSelectedFile().getAbsolutePath();
        if(!chooser.getSelectedFile().isDirectory()) {
            dir = XJUtils.getPathByDeletingLastComponent(chooser.getSelectedFile().getAbsolutePath());
        }
        XJApplication.shared().getPreferences().setString(DEFAULT_DIR, dir);
    }

    private List<String> filesToList(File[] files) {
        List<String> array = new ArrayList<String>();
        for (File file : files) array.add(file.getAbsolutePath());
        return array;
    }

    public boolean displaySaveDialog(Component parent, String extension, String extensionDescription, boolean acceptAll) {
        return displaySaveDialog(parent, Collections.singletonList(extension),
                Collections.singletonList(extensionDescription), acceptAll);
    }

    public boolean displaySaveDialog(Component parent, List extensions, String extensionDescription, boolean acceptAll) {
        return displaySaveDialog(parent, Collections.singletonList(extensions),
                Collections.singletonList(extensionDescription), acceptAll);
    }

    public boolean displaySaveDialog(Component parent, List extensions, List<String> descriptions, boolean acceptAll) {
        if(parent != null)
            parent = XJDialog.resolveOwner(parent.getParent());

        JFileChooser chooser = new JFileChooser();
        applyExtensions(extensions, chooser, acceptAll, descriptions);
        loadDefaultDirectory(chooser);

        if(chooser.showSaveDialog(parent) == JFileChooser.APPROVE_OPTION) {
            selectedFilePath = chooser.getSelectedFile().getAbsolutePath();
            selectedFilePaths = filesToList(chooser.getSelectedFiles());
            selectedFileExtension = getExtension(extensions, chooser);
            if(selectedFileExtension != null && !selectedFilePath.endsWith("."+selectedFileExtension)) {
                selectedFilePath += "."+selectedFileExtension;               
            }

            if(new File(selectedFilePath).exists()) {
                String name = XJUtils.getLastPathComponent(selectedFilePath);
                if(XJAlert.displayAlert(parent, "Warning",
                        "The file '"+name+"' already exists. Do you want to replace it?",
                        "Cancel",
                        "Replace",
                        1, 0) == 0)
                    return XJApplication.NO;
            }

            saveCurrentDirectory(chooser);

            return XJApplication.YES;
        } else
            return XJApplication.NO;
    }

    public boolean displayChooseDirectory(Component parent) {
        return displayChooseDirectory(parent, null, null, true);
    }

    public boolean displayChooseDirectory(Component parent, List extensions, List<String> descriptions, boolean acceptAll) {
        if(parent != null)
            parent = XJDialog.resolveOwner(parent.getParent());

        JFileChooser chooser = new JFileChooser();
        chooser.setDialogTitle("Select a directory");
        applyExtensions(extensions, chooser, acceptAll, descriptions);
        loadDefaultDirectory(chooser);
        chooser.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
        boolean result;
        if(chooser.showOpenDialog(parent) == JFileChooser.APPROVE_OPTION) {
            selectedFilePath = chooser.getSelectedFile().getAbsolutePath();
            selectedFileExtension = getExtension(extensions, chooser);
            if(!new File(selectedFilePath).exists()) {
                if(XJAlert.displayAlert(parent,
                        "Directory does not exist",
                        "This directory does not exist. ANTLRWorks will create it if you choose to continue.",
                        "Cancel", "Continue", 1, 0) == 1)
                {
                    new File(selectedFilePath).mkdirs();
                    saveCurrentDirectory(chooser);
                    result = XJApplication.YES;
                } else {
                    result = XJApplication.NO;
                }
            } else {
                saveCurrentDirectory(chooser);
                result = XJApplication.YES;
            }
        } else
            result = XJApplication.NO;

        if(parent instanceof JDialog) {
            /** Make sure that if the parent is a modal dialog, it is back to
             * front: by default, Swing doesn't bring back the dialog to front.
             */

            JDialog dialog = (JDialog)parent;
            if(dialog.isModal())
                dialog.toFront();
        }
        return result;
    }

    private String getExtension(List extensions, JFileChooser chooser) {
        if(extensions != null && extensions.size() >= 0) {
            FileFilter ff = chooser.getFileFilter();
            if(ff instanceof XJFileFilter) {
                XJFileFilter filter = (XJFileFilter)ff;
                if(!filter.accept(selectedFilePath))
                    return filter.getDefaultExtension();
            }
        }
        return XJUtils.getPathExtension(selectedFilePath);
    }

    private void applyExtensions(List extensions, JFileChooser chooser, boolean acceptAll, List<String> descriptions) {
        if(extensions == null || extensions.size() == 0)
            chooser.setAcceptAllFileFilterUsed(acceptAll);
        else {
            chooser.setAcceptAllFileFilterUsed(acceptAll);
            XJFileFilter firstFF = null;
            for(int i=0; i<extensions.size(); i++) {
                XJFileFilter ff = XJFileFilter.createFileFilter(extensions.get(i),
                        descriptions.get(i));
                chooser.addChoosableFileFilter(ff);
                if((extensions.size() == 1 || !acceptAll) && i == 0)
                    firstFF = ff;
            }
            if(extensions.size() > 1 && acceptAll)
                chooser.setFileFilter(chooser.getAcceptAllFileFilter());
            else
                chooser.setFileFilter(firstFF);
        }
    }

    public String getSelectedFilePath() {
        return selectedFilePath;
    }

    public List<String> getSelectedFilePaths() {
        return selectedFilePaths;
    }

    public String getSelectedFileExtension() {
        return selectedFileExtension;
    }
}
TOP

Related Classes of org.antlr.xjlib.appkit.utils.XJFileChooser

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.