Import of Ekit 0.9h
[old-projects.git] / ekit / com / hexidec / ekit / component / ImageFileChooser.java
1 /*
2 GNU Lesser General Public License
3
4 ImageFileChooser
5 Copyright (C) 2000 Frits Jalvingh & Howard Kistler
6
7 This library is free software; you can redistribute it and/or
8 modify it under the terms of the GNU Lesser General Public
9 License as published by the Free Software Foundation; either
10 version 2.1 of the License, or (at your option) any later version.
11
12 This library is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 Lesser General Public License for more details.
16
17 You should have received a copy of the GNU Lesser General Public
18 License along with this library; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 */
21
22 package com.hexidec.ekit.component;
23
24 import java.io.File;
25 import javax.swing.JFileChooser;
26
27 /** Class for providing a chooser that lets the user select an image to insert
28 */
29 public class ImageFileChooser extends JFileChooser
30 {
31 /** Constructor that takes a default directory to start in, specified as a File
32 * @param File with the default path
33 */
34 public ImageFileChooser(File fileCurrentDirectory)
35 {
36 this.setCurrentDirectory(fileCurrentDirectory);
37 this.setAccessory(new ImageFileChooserPreview(this));
38 }
39
40 /** Constructor that takes a default directory to start in, specified as a String
41 * @param String current directory path.
42 */
43 public ImageFileChooser(String strCurrentPath)
44 {
45 this(new File(strCurrentPath));
46 }
47
48 /** Empty constructor
49 */
50 public ImageFileChooser()
51 {
52 this((File)null);
53 }
54 }