altosuilib: Adapt to AltosFlightSeries data processing plan
[fw/altos] / altosuilib / AltosUIAxis.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 AltosUIAxis extends NumberAxis {
39         String          label;
40         AltosUnits      units;
41         Color           color;
42         int             ref;
43         int             visible;
44         int             index;
45
46         public final static int axis_integer = 1;
47         public final static int axis_include_zero = 2;
48
49         public final static int axis_default = axis_include_zero;
50
51         public void set_units() {
52                 if (units != null) {
53                         String u = units.parse_units();
54                         if (u != null) {
55                                 setLabel(String.format("%s (%s)", label, u));
56                                 return;
57                         }
58                 }
59                 setLabel(label);
60         }
61
62         public void set_enable(boolean enable) {
63                 System.out.printf("axis %s set enable visible %d ref %d\n", label, visible, ref);
64                 if (enable) {
65                         visible++;
66                         if (visible > ref)
67                                 System.out.printf("too many visible\n");
68                 } else {
69                         visible--;
70                         if (visible < 0)
71                                 System.out.printf("too few visible\n");
72                 }
73                 setVisible(visible > 0);
74                 if (enable)
75                         autoAdjustRange();
76         }
77
78         public void ref(boolean enable) {
79                 ++ref;
80                 if (enable) {
81                         ++visible;
82                         setVisible(visible > 0);
83                 }
84         }
85
86         public AltosUIAxis(String label, AltosUnits units, Color color, int index, int flags) {
87                 this.label = label;
88                 this.units = units;
89                 this.index = index;
90                 this.visible = 0;
91                 this.ref = 0;
92                 setLabelPaint(color);
93                 setTickLabelPaint(color);
94                 setVisible(false);
95                 if ((flags & axis_integer) != 0)
96                         setStandardTickUnits(NumberAxis.createIntegerTickUnits());
97                 setAutoRangeIncludesZero((flags & axis_include_zero) != 0);
98         }
99
100         public AltosUIAxis(String label, AltosUnits units, Color color, int index) {
101                 this(label, units, color, index, axis_default);
102         }
103 }