X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=ekit%2Fcom%2Fhexidec%2Fekit%2Fcomponent%2FImageFileChooser.java;h=82d169441c558d89d7bded89db88079a6ae000d4;hb=6ce136dad31e39a1684a657ed5c9b33fba069623;hp=ad1618cd51b0416abba64ab61539744f2ecb3588;hpb=6dd702802493556cff5e55eb4982d23e79a30832;p=old-projects.git diff --git a/ekit/com/hexidec/ekit/component/ImageFileChooser.java b/ekit/com/hexidec/ekit/component/ImageFileChooser.java index ad1618c..82d1694 100644 --- a/ekit/com/hexidec/ekit/component/ImageFileChooser.java +++ b/ekit/com/hexidec/ekit/component/ImageFileChooser.java @@ -1,54 +1,54 @@ -/* -GNU Lesser General Public License - -ImageFileChooser -Copyright (C) 2000-2002 Frits Jalvingh & Howard Kistler - -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 -*/ - -package com.hexidec.ekit.component; - -import java.io.File; -import javax.swing.JFileChooser; - -/** Class for providing a chooser that lets the user select an image to insert - */ -public class ImageFileChooser extends JFileChooser -{ - /** Constructor that takes a default directory to start in, specified as a File - * @param File with the default path - */ - public ImageFileChooser(File fileCurrentDirectory) - { - this.setCurrentDirectory(fileCurrentDirectory); - this.setAccessory(new ImageFileChooserPreview(this)); - } - - /** Constructor that takes a default directory to start in, specified as a String - * @param String current directory path. - */ - public ImageFileChooser(String strCurrentPath) - { - this(new File(strCurrentPath)); - } - - /** Empty constructor - */ - public ImageFileChooser() - { - this((File)null); - } -} +/* +GNU Lesser General Public License + +ImageFileChooser +Copyright (C) 2000 Frits Jalvingh & Howard Kistler + +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 +*/ + +package com.hexidec.ekit.component; + +import java.io.File; +import javax.swing.JFileChooser; + +/** Class for providing a chooser that lets the user select an image to insert + */ +public class ImageFileChooser extends JFileChooser +{ + /** Constructor that takes a default directory to start in, specified as a File + * @param File with the default path + */ + public ImageFileChooser(File fileCurrentDirectory) + { + this.setCurrentDirectory(fileCurrentDirectory); + this.setAccessory(new ImageFileChooserPreview(this)); + } + + /** Constructor that takes a default directory to start in, specified as a String + * @param String current directory path. + */ + public ImageFileChooser(String strCurrentPath) + { + this(new File(strCurrentPath)); + } + + /** Empty constructor + */ + public ImageFileChooser() + { + this((File)null); + } +}