altosuilib: Set graph title to include product/serial/flight info
[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                 if (enable) {
64                         visible++;
65                         if (visible > ref)
66                                 System.out.printf("too many visible\n");
67                 } else {
68                         visible--;
69                         if (visible < 0)
70                                 System.out.printf("too few visible\n");
71                 }
72                 setVisible(visible > 0);
73                 if (enable)
74                         autoAdjustRange();
75         }
76
77         public void ref(boolean enable) {
78                 ++ref;
79                 if (enable) {
80                         ++visible;
81                         setVisible(visible > 0);
82                 }
83         }
84
85         public AltosUIAxis(String label, AltosUnits units, Color color, int index, int flags) {
86                 this.label = label;
87                 this.units = units;
88                 this.index = index;
89                 this.visible = 0;
90                 this.ref = 0;
91                 setLabelPaint(color);
92                 setTickLabelPaint(color);
93                 setVisible(false);
94                 if ((flags & axis_integer) != 0)
95                         setStandardTickUnits(NumberAxis.createIntegerTickUnits());
96                 setAutoRangeIncludesZero((flags & axis_include_zero) != 0);
97         }
98
99         public AltosUIAxis(String label, AltosUnits units, Color color, int index) {
100                 this(label, units, color, index, axis_default);
101         }
102 }