/[schmitzm]/trunk/src/skrueger/geotools/MapView.java
ViewVC logotype

Diff of /trunk/src/skrueger/geotools/MapView.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

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

Legend:
Removed from v.226  
changed lines
  Added in v.414

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26