(no commit message)
[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  * 
30  */
31 public class ZoomableBackgroundXYPlot extends XYPlot {
32     
33     /*
34      * Initial domain axis. 
35      */
36     private double _x1 = 1.0;
37     private double _x2 = -1.0; // _x2 < _x1 initially to make signify uninitialized values.
38     
39     /*
40      * Initial range axis.
41      */
42     private double _y1 = 1.0;
43     private double _y2 = -1.0; // _y2 < _y1 initially to make signify uninitialized values.
44     
45     public ZoomableBackgroundXYPlot(XYDataset aDataset, 
46             ValueAxis aDomainAxis, ValueAxis aRangeAxis, XYItemRenderer aRenderer) { 
47         super(aDataset, aDomainAxis, aRangeAxis, aRenderer);
48     }
49     
50     /* (non-Javadoc)
51      * @see org.jfree.chart.plot.Plot#drawBackgroundImage(java.awt.Graphics2D, java.awt.geom.Rectangle2D)
52      */
53     @Override
54     protected void drawBackgroundImage(Graphics2D g2, Rectangle2D area) {
55         //System.out.println("--------");
56         //System.out.println("Area: " + area);
57         //System.out.println("Graphics clip: " + g2.getClipBounds());
58         //System.out.println("Domain axis: " + getDomainAxis().getLowerBound() + " " + 
59         //        getDomainAxis().getUpperBound());
60         
61         // Get the current domain axis bounds
62         double y1 = getDomainAxis().getLowerBound();
63         double y2 = getDomainAxis().getUpperBound();
64         double x1 = getRangeAxis().getLowerBound();
65         double x2 = getRangeAxis().getUpperBound();
66         
67         if ( _x2 < _x1 ) { 
68             // initial domain axis bounds
69             _y1 = y1;
70             _y2 = y2;
71             _x1 = x1;
72             _x2 = x2;
73         }
74         
75         Image background = getBackgroundImage();
76         int width = background.getWidth(null);
77         int height = background.getHeight(null);
78         
79         // Determine the part of the image to be drawn on the screen based on the scaling
80         // of the domain axes. 
81         int imageX1 = (int)Math.round(1 + (x1 - _x1)*(width-1)/(_x2 - _x1));
82         int imageX2 = (int)Math.round(1 + (x2 - _x1)*(width-1)/(_x2 - _x1));
83         // Note: y-axis of image goes from bottom to top. 
84         int imageY2 = (int)Math.round(height + (y1 - _y1)*(1-height)/(_y2 - _y1));
85         int imageY1 = (int)Math.round(height + (y2 - _y1)*(1-height)/(_y2 - _y1));
86         
87         // Draw the correct part of the image on the screen. 
88         g2.drawImage(background, (int)area.getMinX(), (int)area.getMinY(), (int)area.getMaxX(), (int)area.getMaxY(), 
89                        imageX1, imageY1, imageX2, imageY2, null);
90      
91        // System.out.println("========");
92     }
93
94 }