telegps: Track graph windows as one of the TeleGPS windows
[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 java.awt.event.*;
25 import javax.swing.*;
26 import java.io.*;
27 import java.util.concurrent.*;
28 import java.util.*;
29 import org.altusmetrum.altoslib_4.*;
30 import org.altusmetrum.altosuilib_2.*;
31
32 import org.jfree.chart.ChartPanel;
33 import org.jfree.chart.JFreeChart;
34 import org.jfree.ui.RefineryUtilities;
35
36 public class TeleGPSGraphUI extends AltosUIFrame
37 {
38         JTabbedPane             pane;
39         AltosGraph              graph;
40         AltosUIEnable           enable;
41         AltosSiteMap            map;
42         AltosState              state;
43         AltosFlightStats        stats;
44         AltosGraphDataSet       graphDataSet;
45
46         void fill_map(AltosStateIterable states) {
47                 for (AltosState state : states) {
48                         if (state.gps != null && state.gps.locked && state.gps.nsat >= 4)
49                                 map.show(state, null);
50                 }
51         }
52
53         private void close() {
54                 setVisible(false);
55                 dispose();
56                 TeleGPS.subtract_window();
57         }
58
59         TeleGPSGraphUI(AltosStateIterable states, File file) throws InterruptedException, IOException {
60                 super(file.getName());
61                 state = null;
62
63                 pane = new JTabbedPane();
64
65                 enable = new AltosUIEnable();
66                 stats = new AltosFlightStats(states);
67                 graphDataSet = new AltosGraphDataSet(states);
68                 graph = new AltosGraph(enable, stats, graphDataSet);
69                 map = new AltosSiteMap();
70
71                 pane.add("Flight Graph", graph.panel);
72                 pane.add("Configure Graph", enable);
73                 fill_map(states);
74                 pane.add("Map", map);
75
76                 setContentPane (pane);
77
78                 addWindowListener(new WindowAdapter() {
79                                 @Override
80                                 public void windowClosing(WindowEvent e) {
81                                         close();
82                                 }
83                         });
84
85                 pack();
86
87                 setDefaultCloseOperation(DO_NOTHING_ON_CLOSE);
88
89                 TeleGPS.add_window();
90
91                 setVisible(true);
92
93                 if (state != null)
94                         map.centre(state);
95
96         }
97 }