2 * Copyright © 2013 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; either version 2 of the License, or
7 * (at your option) any later version.
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.
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.
19 package org.altusmetrum.altosuilib_12;
22 import java.util.ArrayList;
26 import org.altusmetrum.altoslib_12.*;
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.*;
38 public class AltosUIMarker implements AltosUIGrapher {
39 ArrayList<ValueMarker> markers;
46 private void remove_markers() {
47 for (ValueMarker marker : markers)
48 plot.removeDomainMarker(marker);
51 private void add_markers() {
52 for (ValueMarker marker : markers)
53 plot.addDomainMarker(marker);
56 public void set_units() {
59 public boolean need_reset() { return true; }
61 public void set_enable(boolean enable) {
62 if (enabled == enable)
74 markers = new ArrayList<ValueMarker>();
77 public void add(AltosUIDataPoint dataPoint) {
79 int id = dataPoint.id(fetch);
84 ValueMarker marker = new ValueMarker(dataPoint.x());
85 marker.setLabel(dataPoint.id_name(fetch));
86 marker.setLabelAnchor(RectangleAnchor.TOP_RIGHT);
87 marker.setLabelTextAnchor(TextAnchor.TOP_LEFT);
88 marker.setPaint(color);
90 plot.addDomainMarker(marker);
93 } catch (AltosUIDataMissing m) {
97 public AltosUIMarker (int fetch, Color color, XYPlot plot, boolean enable) {
98 markers = new ArrayList<ValueMarker>();
103 this.enabled = enable;
106 public void setNotify(boolean notify) {
109 public void fireSeriesChanged() {
112 public AltosUIMarker (int fetch, Color color, XYPlot plot) {
113 this(fetch, color, plot, true);