Initial revision
[old-projects.git] / ekit / com / hexidec / ekit / component / ImageFileChooser.java
diff --git a/ekit/com/hexidec/ekit/component/ImageFileChooser.java b/ekit/com/hexidec/ekit/component/ImageFileChooser.java
new file mode 100644 (file)
index 0000000..ad1618c
--- /dev/null
@@ -0,0 +1,54 @@
+/*\r
+GNU Lesser General Public License\r
+\r
+ImageFileChooser\r
+Copyright (C) 2000-2002  Frits Jalvingh & Howard Kistler\r
+\r
+This library is free software; you can redistribute it and/or\r
+modify it under the terms of the GNU Lesser General Public\r
+License as published by the Free Software Foundation; either\r
+version 2.1 of the License, or (at your option) any later version.\r
+\r
+This library is distributed in the hope that it will be useful,\r
+but WITHOUT ANY WARRANTY; without even the implied warranty of\r
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\r
+Lesser General Public License for more details.\r
+\r
+You should have received a copy of the GNU Lesser General Public\r
+License along with this library; if not, write to the Free Software\r
+Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA\r
+*/\r
+\r
+package com.hexidec.ekit.component;\r
+\r
+import java.io.File;\r
+import javax.swing.JFileChooser;\r
+\r
+/** Class for providing a chooser that lets the user select an image to insert\r
+  */\r
+public class ImageFileChooser extends JFileChooser\r
+{\r
+       /** Constructor that takes a default directory to start in, specified as a File\r
+         * @param File with the default path\r
+         */\r
+       public ImageFileChooser(File fileCurrentDirectory)\r
+       {\r
+               this.setCurrentDirectory(fileCurrentDirectory);\r
+               this.setAccessory(new ImageFileChooserPreview(this));\r
+   }\r
+\r
+       /** Constructor that takes a default directory to start in, specified as a String\r
+         * @param String current directory path.\r
+         */\r
+       public ImageFileChooser(String strCurrentPath)\r
+       {\r
+               this(new File(strCurrentPath));\r
+       }\r
+\r
+       /** Empty constructor\r
+         */\r
+       public ImageFileChooser()\r
+       {\r
+               this((File)null);\r
+       }\r
+}\r