Made the track serializable.
[utils] / gps / src / org / wamblee / gpx / ZoomableBackgroundXYPlot.java
1 /*
2  * Copyright 2006 the original author or authors.
3  * 
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  * 
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  * 
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */ 
16
17 package org.wamblee.gpx;
18
19 import java.awt.Graphics2D;
20 import java.awt.Image;
21 import java.awt.geom.Rectangle2D;
22
23 import org.jfree.chart.axis.ValueAxis;
24 import org.jfree.chart.plot.XYPlot;
25 import org.jfree.chart.renderer.xy.XYItemRenderer;
26 import org.jfree.data.xy.XYDataset;
27
28 /**
29  * Extension of XY plot that provides automatic zooming of the background 
30  * image. 
31  */
32 public class ZoomableBackgroundXYPlot extends XYPlot {
33     
34     /*
35      * Initial domain axis. 
36      */
37     private double _x1 = 1.0;
38     private double _x2 = -1.0; // _x2 < _x1 initially to make signify uninitialized values.
39     
40     /*
41      * Initial range axis.
42      */
43     private double _y1 = 1.0;
44     private double _y2 = -1.0; // _y2 < _y1 initially to make signify uninitialized values.
45     
46     public ZoomableBackgroundXYPlot(XYDataset aDataset, 
47             ValueAxis aDomainAxis, ValueAxis aRangeAxis, XYItemRenderer aRenderer) { 
48         super(aDataset, aDomainAxis, aRangeAxis, aRenderer);
49     }
50     
51     /* (non-Javadoc)
52      * @see org.jfree.chart.plot.Plot#drawBackgroundImage(java.awt.Graphics2D, java.awt.geom.Rectangle2D)
53      */
54     @Override
55     protected void drawBackgroundImage(Graphics2D g2, Rectangle2D area) {
56         //System.out.println("--------");
57         //System.out.println("Area: " + area);
58         //System.out.println("Graphics clip: " + g2.getClipBounds());
59         //System.out.println("Domain axis: " + getDomainAxis().getLowerBound() + " " + 
60         //        getDomainAxis().getUpperBound());
61         
62         // Get the current domain axis bounds
63         double y1 = getDomainAxis().getLowerBound();
64         double y2 = getDomainAxis().getUpperBound();
65         double x1 = getRangeAxis().getLowerBound();
66         double x2 = getRangeAxis().getUpperBound();
67         
68         if ( _x2 < _x1 ) { 
69             // initial domain axis bounds
70             _y1 = y1;
71             _y2 = y2;
72             _x1 = x1;
73             _x2 = x2;
74         }
75         
76         Image background = getBackgroundImage();
77         int width = background.getWidth(null);
78         int height = background.getHeight(null);
79         
80         // Determine the part of the image to be drawn on the screen based on the scaling
81         // of the domain axes. 
82         int imageX1 = (int)Math.round(1 + (x1 - _x1)*(width-1)/(_x2 - _x1));
83         int imageX2 = (int)Math.round(1 + (x2 - _x1)*(width-1)/(_x2 - _x1));
84         // Note: y-axis of image goes from bottom to top. 
85         int imageY2 = (int)Math.round(height + (y1 - _y1)*(1-height)/(_y2 - _y1));
86         int imageY1 = (int)Math.round(height + (y2 - _y1)*(1-height)/(_y2 - _y1));
87         
88         // Draw the correct part of the image on the screen. 
89         g2.drawImage(background, (int)area.getMinX(), (int)area.getMinY(), (int)area.getMaxX(), (int)area.getMaxY(), 
90                        imageX1, imageY1, imageX2, imageY2, null);
91      
92        // System.out.println("========");
93     }
94
95 }