telegps: Add missing TeleGPSGraphUI.java file
[fw/altos] / telegps / TeleGPSGraphUI.java
1 /*
2  * Copyright © 2010 Anthony Towns
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; version 2 or any later version of the License.
7  *
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.
12  *
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.
16  */
17
18 package org.altusmetrum.telegps;
19
20 import java.io.*;
21 import java.util.ArrayList;
22
23 import java.awt.*;
24 import javax.swing.*;
25 import org.altusmetrum.altoslib_4.*;
26 import org.altusmetrum.altosuilib_2.*;
27
28 import org.jfree.chart.ChartPanel;
29 import org.jfree.chart.JFreeChart;
30 import org.jfree.ui.RefineryUtilities;
31
32 public class TeleGPSGraphUI extends AltosUIFrame
33 {
34         JTabbedPane             pane;
35         AltosGraph              graph;
36         AltosUIEnable           enable;
37         AltosSiteMap            map;
38         AltosState              state;
39         AltosFlightStats        stats;
40         AltosGraphDataSet       graphDataSet;
41
42         void fill_map(AltosStateIterable states) {
43                 for (AltosState state : states) {
44                         if (state.gps != null && state.gps.locked && state.gps.nsat >= 4)
45                                 map.show(state, null);
46                 }
47         }
48
49         TeleGPSGraphUI(AltosStateIterable states, File file) throws InterruptedException, IOException {
50                 super(file.getName());
51                 state = null;
52
53                 pane = new JTabbedPane();
54
55                 enable = new AltosUIEnable();
56                 stats = new AltosFlightStats(states);
57                 graphDataSet = new AltosGraphDataSet(states);
58                 graph = new AltosGraph(enable, stats, graphDataSet);
59                 map = new AltosSiteMap();
60
61                 pane.add("Flight Graph", graph.panel);
62                 pane.add("Configure Graph", enable);
63                 fill_map(states);
64                 pane.add("Map", map);
65
66                 setContentPane (pane);
67
68                 pack();
69
70                 setDefaultCloseOperation(DISPOSE_ON_CLOSE);
71                 setVisible(true);
72                 if (state != null)
73                         map.centre(state);
74         }
75 }