altos: remove teleterra-v0.1, also an ancient cc1111 project
[fw/altos] / altosuilib / AltosDataChooser.java
1 /*
2  * Copyright © 2010 Keith Packard <keithp@keithp.com>
3  *
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; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
17  */
18
19 package org.altusmetrum.altosuilib_13;
20
21 import javax.swing.*;
22 import javax.swing.filechooser.FileNameExtensionFilter;
23 import java.io.*;
24 import org.altusmetrum.altoslib_13.*;
25
26 public class AltosDataChooser extends JFileChooser {
27         JFrame  frame;
28         String  filename;
29         File    file;
30
31         public String filename() {
32                 return filename;
33         }
34
35         public File file() {
36                 return file;
37         }
38
39         public AltosRecordSet runDialog() {
40                 int     ret;
41
42                 ret = showOpenDialog(frame);
43                 if (ret == APPROVE_OPTION) {
44                         file = getSelectedFile();
45                         if (file == null)
46                                 return null;
47                         try {
48                                 return AltosLib.record_set(file);
49                         } catch (IOException ie) {
50                                 JOptionPane.showMessageDialog(frame,
51                                                               ie.getMessage(),
52                                                               "Error reading file",
53                                                               JOptionPane.ERROR_MESSAGE);
54                         }
55                 }
56                 return null;
57         }
58
59         public AltosDataChooser(JFrame in_frame) {
60                 frame = in_frame;
61                 setDialogTitle("Select Flight Record File");
62                 setFileFilter(new FileNameExtensionFilter("On-board Log file",
63                                                           "eeprom"));
64                 setFileFilter(new FileNameExtensionFilter("Telemetry file",
65                                                           "telem"));
66                 setFileFilter(new FileNameExtensionFilter("Flight data file",
67                                                           "telem", "eeprom"));
68                 setCurrentDirectory(AltosUIPreferences.logdir());
69         }
70 }