1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
|
package ij.io;
import ij.*;
import ij.gui.*;
import ij.plugin.frame.Recorder;
import ij.util.Java2;
import java.awt.*;
import java.io.*;
import javax.swing.*;
import javax.swing.filechooser.*;
/** This class displays a dialog box that allows the user can select a directory. */
public class DirectoryChooser {
private String directory;
private String title;
/** Display a dialog using the specified title. */
public DirectoryChooser(String title) {
this.title = title;
if (IJ.isMacOSX())
getDirectoryUsingFileDialog(title);
else {
String macroOptions = Macro.getOptions();
if (macroOptions!=null)
directory = Macro.getValue(macroOptions, title, null);
if (directory==null) {
if (EventQueue.isDispatchThread())
getDirectoryUsingJFileChooserOnThisThread(title);
else
getDirectoryUsingJFileChooser(title);
}
}
}
// runs JFileChooser on event dispatch thread to avoid possible thread deadlocks
void getDirectoryUsingJFileChooser(final String title) {
Java2.setSystemLookAndFeel();
try {
EventQueue.invokeAndWait(new Runnable() {
public void run() {
JFileChooser chooser = new JFileChooser();
chooser.setDialogTitle(title);
chooser.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
String defaultDir = OpenDialog.getDefaultDirectory();
if (defaultDir!=null) {
File f = new File(defaultDir);
if (IJ.debugMode)
IJ.log("DirectoryChooser,setSelectedFile: "+f);
chooser.setSelectedFile(f);
}
chooser.setApproveButtonText("Select");
if (chooser.showOpenDialog(null)==JFileChooser.APPROVE_OPTION) {
File file = chooser.getSelectedFile();
directory = file.getAbsolutePath();
if (!directory.endsWith(File.separator))
directory += File.separator;
OpenDialog.setDefaultDirectory(directory);
}
}
});
} catch (Exception e) {}
}
// Choose a directory using JFileChooser on the current thread
void getDirectoryUsingJFileChooserOnThisThread(final String title) {
Java2.setSystemLookAndFeel();
try {
JFileChooser chooser = new JFileChooser();
chooser.setDialogTitle(title);
chooser.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
String defaultDir = OpenDialog.getDefaultDirectory();
if (defaultDir!=null) {
File f = new File(defaultDir);
if (IJ.debugMode)
IJ.log("DirectoryChooser,setSelectedFile: "+f);
chooser.setSelectedFile(f);
}
chooser.setApproveButtonText("Select");
if (chooser.showOpenDialog(null)==JFileChooser.APPROVE_OPTION) {
File file = chooser.getSelectedFile();
directory = file.getAbsolutePath();
if (!directory.endsWith(File.separator))
directory += File.separator;
OpenDialog.setDefaultDirectory(directory);
}
} catch (Exception e) {}
}
// On Mac OS X, we can select directories using the native file open dialog
void getDirectoryUsingFileDialog(String title) {
boolean saveUseJFC = Prefs.useJFileChooser;
Prefs.useJFileChooser = false;
System.setProperty("apple.awt.fileDialogForDirectories", "true");
String dir=null, name=null;
String defaultDir = OpenDialog.getDefaultDirectory();
if (defaultDir!=null) {
File f = new File(defaultDir);
dir = f.getParent();
name = f.getName();
}
if (IJ.debugMode)
IJ.log("DirectoryChooser: dir=\""+dir+"\", file=\""+name+"\"");
OpenDialog od = new OpenDialog(title, dir, name);
if (od.getDirectory()==null)
directory = null;
else
directory = od.getDirectory() + od.getFileName() + "/";
if (directory!=null)
OpenDialog.setDefaultDirectory(directory);
System.setProperty("apple.awt.fileDialogForDirectories", "false");
Prefs.useJFileChooser = saveUseJFC;
}
/** Returns the directory selected by the user. */
public String getDirectory() {
if (IJ.debugMode)
IJ.log("DirectoryChooser.getDirectory: "+directory);
if (Recorder.record && !IJ.isMacOSX())
Recorder.recordPath(title, directory);
return directory;
}
/** Sets the default directory presented in the dialog. */
public static void setDefaultDirectory(String dir) {
if (dir==null || (new File(dir)).isDirectory())
OpenDialog.setDefaultDirectory(dir);
}
//private void setSystemLookAndFeel() {
// try {
// UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
// } catch(Throwable t) {}
//}
}
|