Switch from GPLv2 to GPLv2+
[fw/altos] / altosuilib / AltosUIMarker.java
1 /*
2  * Copyright © 2013 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_11;
20
21 import java.io.*;
22 import java.util.ArrayList;
23
24 import java.awt.*;
25 import javax.swing.*;
26 import org.altusmetrum.altoslib_11.*;
27
28 import org.jfree.ui.*;
29 import org.jfree.chart.*;
30 import org.jfree.chart.plot.*;
31 import org.jfree.chart.axis.*;
32 import org.jfree.chart.renderer.*;
33 import org.jfree.chart.renderer.xy.*;
34 import org.jfree.chart.labels.*;
35 import org.jfree.data.xy.*;
36 import org.jfree.data.*;
37
38 public class AltosUIMarker implements AltosUIGrapher {
39         ArrayList<ValueMarker>  markers;
40         int                     last_id;
41         XYPlot                  plot;
42         boolean                 enabled;
43         int                     fetch;
44         Color                   color;
45
46         private void remove_markers() {
47                 for (ValueMarker marker : markers)
48                         plot.removeDomainMarker(marker);
49         }
50
51         private void add_markers() {
52                 for (ValueMarker marker : markers)
53                         plot.addDomainMarker(marker);
54         }
55
56         public void set_units() {
57         }
58
59         public void set_enable(boolean enable) {
60                 if (enabled == enable)
61                         return;
62                 if (enable)
63                         add_markers();
64                 else
65                         remove_markers();
66                 enabled = enable;
67         }
68
69         public void clear() {
70                 if (enabled)
71                         remove_markers();
72                 markers = new ArrayList<ValueMarker>();
73         }
74
75         public void add(AltosUIDataPoint dataPoint) {
76                 try {
77                         int id = dataPoint.id(fetch);
78                         if (id < 0)
79                                 return;
80                         if (id == last_id)
81                                 return;
82                         ValueMarker marker = new ValueMarker(dataPoint.x());
83                         marker.setLabel(dataPoint.id_name(fetch));
84                         marker.setLabelAnchor(RectangleAnchor.TOP_RIGHT);
85                         marker.setLabelTextAnchor(TextAnchor.TOP_LEFT);
86                         marker.setPaint(color);
87                         if (enabled)
88                                 plot.addDomainMarker(marker);
89                         markers.add(marker);
90                         last_id = id;
91                 } catch (AltosUIDataMissing m) {
92                 }
93         }
94
95         public AltosUIMarker (int fetch, Color color, XYPlot plot, boolean enable) {
96                 markers = new ArrayList<ValueMarker>();
97                 last_id = -1;
98                 this.fetch = fetch;
99                 this.color = color;
100                 this.plot = plot;
101                 this.enabled = enable;
102         }
103
104         public void setNotify(boolean notify) {
105         }
106
107         public void fireSeriesChanged() {
108         }
109
110         public AltosUIMarker (int fetch, Color color, XYPlot plot) {
111                 this(fetch, color, plot, true);
112         }
113 }