2 * Copyright © 2010 Keith Packard <keithp@keithp.com>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; version 2 of the License.
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
21 import java.awt.event.*;
23 import javax.swing.filechooser.FileNameExtensionFilter;
24 import javax.swing.table.*;
28 import java.util.prefs.*;
29 import org.altusmetrum.AltosLib.*;
31 public class AltosDataChooser extends JFileChooser {
36 public String filename() {
44 public AltosRecordIterable runDialog() {
47 ret = showOpenDialog(frame);
48 if (ret == APPROVE_OPTION) {
49 file = getSelectedFile();
52 filename = file.getName();
54 if (filename.endsWith("eeprom")) {
55 FileInputStream in = new FileInputStream(file);
56 return new AltosEepromIterable(in);
57 } else if (filename.endsWith("telem")) {
58 FileInputStream in = new FileInputStream(file);
59 return new AltosTelemetryIterable(in);
60 } else if (filename.endsWith("mega")) {
61 FileInputStream in = new FileInputStream(file);
62 return new AltosEepromMegaIterable(in);
64 throw new FileNotFoundException();
66 } catch (FileNotFoundException fe) {
67 JOptionPane.showMessageDialog(frame,
70 JOptionPane.ERROR_MESSAGE);
76 public AltosDataChooser(JFrame in_frame) {
78 setDialogTitle("Select Flight Record File");
79 setFileFilter(new FileNameExtensionFilter("Flight data file",
81 setCurrentDirectory(AltosUIPreferences.logdir());