/[schmitzm]/branches/1.0-gt2-2.6/src/skrueger/geotools/MapView.java
ViewVC logotype

Annotation of /branches/1.0-gt2-2.6/src/skrueger/geotools/MapView.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 315 - (hide annotations)
Wed Aug 26 11:03:27 2009 UTC (15 years, 6 months ago) by mojays
File size: 7355 byte(s)
Branch created from SCHMITZM 1.0 (rev 313) to switch to gt2-2.6.x.
1 alfonx 244 /*******************************************************************************
2     * Copyright (c) 2009 Martin O. J. Schmitz.
3     *
4     * This file is part of the SCHMITZM library - a collection of utility
5 alfonx 256 * classes based on Java 1.6, focusing (not only) on Java Swing
6 alfonx 244 * and the Geotools library.
7     *
8     * The SCHMITZM project is hosted at:
9     * http://wald.intevation.org/projects/schmitzm/
10     *
11     * This program is free software; you can redistribute it and/or
12     * modify it under the terms of the GNU Lesser General Public License
13     * as published by the Free Software Foundation; either version 3
14     * of the License, or (at your option) any later version.
15     *
16     * This program is distributed in the hope that it will be useful,
17     * but WITHOUT ANY WARRANTY; without even the implied warranty of
18     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19     * GNU General Public License for more details.
20     *
21     * You should have received a copy of the GNU Lesser General Public License (license.txt)
22     * along with this program; if not, write to the Free Software
23     * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
24     * or try this link: http://www.gnu.org/licenses/lgpl.html
25     *
26     * Contributors:
27     * Martin O. J. Schmitz - initial API and implementation
28     * Stefan A. Krüger - additional utility classes
29     ******************************************************************************/
30     package skrueger.geotools;
31    
32     import java.awt.BorderLayout;
33     import java.awt.Component;
34    
35     import javax.swing.BorderFactory;
36     import javax.swing.JComponent;
37     import javax.swing.JPanel;
38     import javax.swing.JSplitPane;
39    
40     import org.apache.log4j.Logger;
41    
42     import schmitzm.geotools.gui.GeoMapPane;
43     import schmitzm.geotools.gui.JMapPane;
44     import schmitzm.geotools.gui.MapContextControlPane;
45     import schmitzm.geotools.gui.MapPaneStatusBar;
46     import schmitzm.geotools.styling.ColorMapManager;
47    
48     /**
49     * Achtung! Dieser code ist verwuestet TODO DOKU und initialize schöner machen.
50     * SK
51     */
52     public class MapView extends JPanel {
53     private static final Logger LOGGER = Logger.getLogger(MapView.class);
54    
55     private final JSplitPane splitPane = new JSplitPane(
56     JSplitPane.HORIZONTAL_SPLIT);
57    
58     protected MapPaneStatusBar statusBar = null;
59    
60     /**
61     * Komponente, in der die Karten, der Massstab und das Koordinaten-Raster
62     * dargestellt werden.
63     */
64    
65     protected final GeoMapPane geoMapPane = new GeoMapPane();
66    
67     private MapPaneToolBar jToolBar;
68    
69     /**
70     * Creates a new {@link MapView}. A {@link MapView} is a combination of a
71     * {@link GeoMapPane}, a {@link MapContextManagerInterface} on the left, and
72     * some buttons floating over the {@link JMapPane}
73     */
74     public MapView(Component parentGui, MapPaneToolBar toolBar) {
75     super(new BorderLayout());
76     // Call initialize() by yourself afterwards.
77     // Needed because variables for the overwritten methods
78     // are not yet set.
79     getGeoMapPane().getMapPane().setWaitCursorComponent(parentGui);
80     if (toolBar == null)
81     toolBar = new MapPaneToolBar(getMapPane());
82     jToolBar = toolBar;
83     }
84    
85     /**
86     * Creates a new {@link MapView}. A {@link MapView} is a combination of a
87     * {@link GeoMapPane}, a {@link MapContextManagerInterface} on the left, and
88     * some buttons floating over the {@link JMapPane}
89     */
90     public MapView(Component parentGui) {
91     this(parentGui, null);
92     }
93    
94     /**
95     * This routine creates the main components of the GUI: The left Side and
96     * the map on the right side.<br/>
97     * Calls #getSidePanel() which can be overwritten (call super!).<br/>
98     *
99     * This method initialized the variables {@link #statusBar} and
100     * {@link #splitPane}
101     *
102     * @see #adjustSizeOfGeoMapPane()
103     */
104     public void initialize() {
105     // horizontales SplitPane initialisieren
106    
107     // Status-Line to show Coordinates and Rastervalues.
108     statusBar = new MapPaneStatusBar(getGeoMapPane().getMapPane());
109     statusBar.setBorder(BorderFactory.createCompoundBorder(BorderFactory
110     .createLoweredBevelBorder(), BorderFactory.createEmptyBorder(2,
111     5, 2, 5)));
112     this.add(statusBar, BorderLayout.SOUTH);
113    
114     /**
115     * The layout of the split pane can be configured in the atlas.
116     * setDividerLocation(-1); has no effect here because the component is
117     * not visible yet.
118     */
119     getSplitPane().setDividerSize(5);
120    
121     getSplitPane().setResizeWeight(0.0);
122     getSplitPane().add(getSidePane());
123    
124     /***********************************************************************
125     * To the right side we now add a JPanel that consists of a toolbar and
126     * a gmp
127     */
128     JPanel newRight = new JPanel(new BorderLayout());
129     newRight.add(getToolBar(), BorderLayout.NORTH);
130     newRight.add(getGeoMapPane(), BorderLayout.CENTER);
131     getSplitPane().add(newRight);
132    
133     this.add(getSplitPane(), BorderLayout.CENTER);
134     }
135    
136     /**
137     * Returns the tool bar which controls the active mouse actions on the map.
138     *
139     * @return
140     */
141     public MapPaneToolBar getToolBar() {
142     return jToolBar;
143     }
144    
145     /**
146     * Returns the split pane which divides the layer list from the map panel.
147     */
148     public JSplitPane getSplitPane() {
149     return splitPane;
150     }
151    
152     /**
153     * Sets the active tool. Simply calls
154     * {@link MapPaneToolBar#setSelectedTool(Integer)}.
155     *
156     * @param tool
157     * One of {@link #TOOL_INFO}, {@link #TOOL_PAN} .. constants
158     */
159     public void setSelectedTool(Integer tool) {
160     jToolBar.setSelectedTool(tool);
161     }
162    
163     /**
164     * Sets whether a tool is activated or not. Simply calls
165     * {@link MapPaneToolBar#setButtonEnabled(int, boolean, boolean)}.
166     *
167     * @param tool
168     * tool ID
169     * @param enabled
170     * if {@code true} the tool becomes available
171     * @param hideOnDisable
172     * if {@code true} the button is also hidden if {@code enabled}
173     * is {@code false}
174     */
175     public void setToolEnabled(Integer tool, boolean enabled,
176     boolean hideOnDisable) {
177     jToolBar.setButtonEnabled(tool, enabled, hideOnDisable);
178     }
179    
180     /**
181     * Sets the activation for all tools. Simply calls
182     * {@link MapPaneToolBar#setAllToolsEnabled(boolean, boolean)}.
183     *
184     * @param enabled
185     * if {@code true} all tool becomes available
186     * @param hideOnDisable
187     * if {@code true} the buttons are also hidden if {@code enabled}
188     * is {@code false}
189     */
190     public void setAllToolsEnabled(boolean enabled, boolean hideOnDisable) {
191     jToolBar.setAllToolsEnabled(enabled, hideOnDisable);
192     }
193    
194     /**
195     * Checks whether a tool is activated. Simply calls
196     * {@link MapPaneToolBar#isButtonEnabled(Integer)}.
197     *
198     * @param tool
199     * tool ID
200     * @return {@code false} if an unknown ID is specified
201     */
202     public boolean isToolEnabled(Integer tool) {
203     return jToolBar.isButtonEnabled(tool);
204     }
205    
206     /**
207     * called by initialize() to fill the left of the XULUMapView Supposed to be
208     * overwritten by AtlasMapView or DesignMapView
209     */
210     public JComponent getSidePane() {
211     return new MapContextControlPane(getGeoMapPane().getMapPane(),
212     new ColorMapManager());
213     }
214    
215     /**
216     * Liefert die Status-Zeile, in der die Koordinaten und Raster-Werte
217     * angezeigt werden.
218     */
219     public MapPaneStatusBar getStatusBar() {
220     return this.statusBar;
221     }
222    
223     /**
224     * Liefert den Karten-Bereich der Komponente.
225     */
226     public final JMapPane getMapPane() {
227     return getGeoMapPane().getMapPane();
228     }
229    
230     public GeoMapPane getGeoMapPane() {
231     return geoMapPane;
232     }
233    
234     public int getSelectedTool() {
235     return jToolBar.getSelectedTool();
236     }
237    
238     }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26