altos: Use installed pdclib
[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_1;
19
20 import java.io.*;
21 import java.util.ArrayList;
22
23 import java.awt.*;
24 import javax.swing.*;
25 import org.altusmetrum.altoslib_2.*;
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                 setLabel(String.format("%s (%s)", label, units.show_units()));
52         }
53         
54         public void set_enable(boolean enable) {
55                 if (enable) {
56                         visible++;
57                         if (visible > ref)
58                                 System.out.printf("too many visible\n");
59                 } else {
60                         visible--;
61                         if (visible < 0)
62                                 System.out.printf("too few visible\n");
63                 }
64                 setVisible(visible > 0);
65                 if (enable)
66                         autoAdjustRange();
67         }
68
69         public void ref(boolean enable) {
70                 ++ref;
71                 if (enable) {
72                         ++visible;
73                         setVisible(visible > 0);
74                 }
75         }
76
77         public AltosUIAxis(String label, AltosUnits units, Color color, int index, int flags) {
78                 this.label = label;
79                 this.units = units;
80                 this.index = index;
81                 this.visible = 0;
82                 this.ref = 0;
83                 setLabelPaint(color);
84                 setTickLabelPaint(color);
85                 setVisible(false);
86                 if ((flags & axis_integer) != 0)
87                         setStandardTickUnits(NumberAxis.createIntegerTickUnits());
88                 setAutoRangeIncludesZero((flags & axis_include_zero) != 0);
89         }
90
91         public AltosUIAxis(String label, AltosUnits units, Color color, int index) {
92                 this(label, units, color, index, axis_default);
93         }
94 }