Switch from GPLv2 to GPLv2+
[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                 String u = units.parse_units();
53                 if (u != null)
54                         setLabel(String.format("%s (%s)", label, u));
55                 else
56                         setLabel(label);
57         }
58
59         public void set_enable(boolean enable) {
60                 if (enable) {
61                         visible++;
62                         if (visible > ref)
63                                 System.out.printf("too many visible\n");
64                 } else {
65                         visible--;
66                         if (visible < 0)
67                                 System.out.printf("too few visible\n");
68                 }
69                 setVisible(visible > 0);
70                 if (enable)
71                         autoAdjustRange();
72         }
73
74         public void ref(boolean enable) {
75                 ++ref;
76                 if (enable) {
77                         ++visible;
78                         setVisible(visible > 0);
79                 }
80         }
81
82         public AltosUIAxis(String label, AltosUnits units, Color color, int index, int flags) {
83                 this.label = label;
84                 this.units = units;
85                 this.index = index;
86                 this.visible = 0;
87                 this.ref = 0;
88                 setLabelPaint(color);
89                 setTickLabelPaint(color);
90                 setVisible(false);
91                 if ((flags & axis_integer) != 0)
92                         setStandardTickUnits(NumberAxis.createIntegerTickUnits());
93                 setAutoRangeIncludesZero((flags & axis_include_zero) != 0);
94         }
95
96         public AltosUIAxis(String label, AltosUnits units, Color color, int index) {
97                 this(label, units, color, index, axis_default);
98         }
99 }