Import of Ekit 0.9h
[old-projects.git] / ekit / com / hexidec / ekit / component / ImageFileChooser.java
CommitLineData
6ce136da
JL
1/*
2GNU Lesser General Public License
3
4ImageFileChooser
5Copyright (C) 2000 Frits Jalvingh & Howard Kistler
6
7This library is free software; you can redistribute it and/or
8modify it under the terms of the GNU Lesser General Public
9License as published by the Free Software Foundation; either
10version 2.1 of the License, or (at your option) any later version.
11
12This library is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15Lesser General Public License for more details.
16
17You should have received a copy of the GNU Lesser General Public
18License along with this library; if not, write to the Free Software
19Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20*/
21
22package com.hexidec.ekit.component;
23
24import java.io.File;
25import javax.swing.JFileChooser;
26
27/** Class for providing a chooser that lets the user select an image to insert
28 */
29public 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}