altosdroid: fixup fetching active device address
[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; version 2 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.altosuilib_3;
19
20 import java.io.*;
21 import java.util.ArrayList;
22
23 import java.awt.*;
24 import javax.swing.*;
25 import org.altusmetrum.altoslib_5.*;
26
27 import org.jfree.ui.*;
28 import org.jfree.chart.*;
29 import org.jfree.chart.plot.*;
30 import org.jfree.chart.axis.*;
31 import org.jfree.chart.renderer.*;
32 import org.jfree.chart.renderer.xy.*;
33 import org.jfree.chart.labels.*;
34 import org.jfree.data.xy.*;
35 import org.jfree.data.*;
36
37 public class AltosUIAxis extends NumberAxis {
38         String          label;
39         AltosUnits      units;
40         Color           color;
41         int             ref;
42         int             visible;
43         int             index;
44
45         public final static int axis_integer = 1;
46         public final static int axis_include_zero = 2;
47
48         public final static int axis_default = axis_include_zero;
49
50         public void set_units() {
51                 String u = units.show_units();
52                 if (u != null)
53                         setLabel(String.format("%s (%s)", label, u));
54                 else
55                         setLabel(label);
56         }
57
58         public void set_enable(boolean enable) {
59                 if (enable) {
60                         visible++;
61                         if (visible > ref)
62                                 System.out.printf("too many visible\n");
63                 } else {
64                         visible--;
65                         if (visible < 0)
66                                 System.out.printf("too few visible\n");
67                 }
68                 setVisible(visible > 0);
69                 if (enable)
70                         autoAdjustRange();
71         }
72
73         public void ref(boolean enable) {
74                 ++ref;
75                 if (enable) {
76                         ++visible;
77                         setVisible(visible > 0);
78                 }
79         }
80
81         public AltosUIAxis(String label, AltosUnits units, Color color, int index, int flags) {
82                 this.label = label;
83                 this.units = units;
84                 this.index = index;
85                 this.visible = 0;
86                 this.ref = 0;
87                 setLabelPaint(color);
88                 setTickLabelPaint(color);
89                 setVisible(false);
90                 if ((flags & axis_integer) != 0)
91                         setStandardTickUnits(NumberAxis.createIntegerTickUnits());
92                 setAutoRangeIncludesZero((flags & axis_include_zero) != 0);
93         }
94
95         public AltosUIAxis(String label, AltosUnits units, Color color, int index) {
96                 this(label, units, color, index, axis_default);
97         }
98 }