/[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

revision 227 by alfonx, Fri Jul 17 07:25:29 2009 UTC revision 244 by alfonx, Wed Jul 29 09:33:33 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, focussing (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          protected final GeoMapPane geoMapPane = new GeoMapPane();  import javax.swing.JSplitPane;
39    
40          private MapPaneToolBar jToolBar;  import org.apache.log4j.Logger;
41    import org.geotools.renderer.lite.StreamingRenderer;
42          /**  import org.geotools.renderer.shape.TransitionShapefileRenderer;
43           * Creates a new {@link MapView}. A {@link MapView} is a combination of a  
44           * {@link GeoMapPane}, a {@link MapContextManagerInterface} on the left, and  import schmitzm.geotools.gui.GeoMapPane;
45           * some buttons floating over the {@link JMapPane}  import schmitzm.geotools.gui.JMapPane;
46           */  import schmitzm.geotools.gui.MapContextControlPane;
47          public MapView(Component parentGui, MapPaneToolBar toolBar) {  import schmitzm.geotools.gui.MapPaneStatusBar;
48                  super(new BorderLayout());  import schmitzm.geotools.styling.ColorMapManager;
49                  // Call initialize() by yourself afterwards.  
50                  // Needed because variables for the overwritten methods  /**
51                  // are not yet set.   * Achtung! Dieser code ist verwuestet TODO DOKU und initialize schöner machen.
52                  getGeoMapPane().getMapPane().setWaitCursorComponent(parentGui);   * SK
53                  if (toolBar == null)   */
54                          toolBar = new MapPaneToolBar(getMapPane());  public class MapView extends JPanel {
55                  jToolBar = toolBar;          private static final Logger LOGGER = Logger.getLogger(MapView.class);
56          }  
57            private final JSplitPane splitPane = new JSplitPane(
58          /**                          JSplitPane.HORIZONTAL_SPLIT);
59           * Creates a new {@link MapView}. A {@link MapView} is a combination of a  
60           * {@link GeoMapPane}, a {@link MapContextManagerInterface} on the left, and          protected MapPaneStatusBar statusBar = null;
61           * some buttons floating over the {@link JMapPane}  
62           */          /**
63          public MapView(Component parentGui) {           * Komponente, in der die Karten, der Massstab und das Koordinaten-Raster
64                  this(parentGui, null);           * dargestellt werden.
65          }           */
66    
67          /**          protected final GeoMapPane geoMapPane = new GeoMapPane();
68           * This routine creates the main components of the GUI: The left Side and  
69           * the map on the right side.<br/>          private MapPaneToolBar jToolBar;
70           * Calls #getSidePanel() which can be overwritten (call super!).<br/>  
71           *          /**
72           * This method initialized the variables {@link #statusBar} and           * Creates a new {@link MapView}. A {@link MapView} is a combination of a
73           * {@link #splitPane}           * {@link GeoMapPane}, a {@link MapContextManagerInterface} on the left, and
74           *           * some buttons floating over the {@link JMapPane}
75           * @see #adjustSizeOfGeoMapPane()           */
76           */          public MapView(Component parentGui, MapPaneToolBar toolBar) {
77          public void initialize() {                  super(new BorderLayout());
78                  // horizontales SplitPane initialisieren                  // Call initialize() by yourself afterwards.
79                    // Needed because variables for the overwritten methods
80                  // Status-Line to show Coordinates and Rastervalues.                  // are not yet set.
81                  statusBar = new MapPaneStatusBar(getGeoMapPane().getMapPane());                  getGeoMapPane().getMapPane().setWaitCursorComponent(parentGui);
82                  statusBar.setBorder(BorderFactory.createCompoundBorder(BorderFactory                  if (toolBar == null)
83                                  .createLoweredBevelBorder(), BorderFactory.createEmptyBorder(2,                          toolBar = new MapPaneToolBar(getMapPane());
84                                  5, 2, 5)));                  jToolBar = toolBar;
85                  this.add(statusBar, BorderLayout.SOUTH);          }
86    
87                  /**          /**
88                   * The layout of the split pane can be configured in the atlas.           * Creates a new {@link MapView}. A {@link MapView} is a combination of a
89                   * setDividerLocation(-1); has no effect here because the component is           * {@link GeoMapPane}, a {@link MapContextManagerInterface} on the left, and
90                   * not visible yet.           * some buttons floating over the {@link JMapPane}
91                   */           */
92                  getSplitPane().setDividerSize(5);          public MapView(Component parentGui) {
93                    this(parentGui, null);
94                  getSplitPane().setResizeWeight(0.0);          }
95                  getSplitPane().add(getSidePane());  
96            /**
97                  /***********************************************************************           * This routine creates the main components of the GUI: The left Side and
98                   * To the right side we now add a JPanel that consists of a toolbar and           * the map on the right side.<br/>
99                   * a gmp           * Calls #getSidePanel() which can be overwritten (call super!).<br/>
100                   */           *
101                  JPanel newRight = new JPanel(new BorderLayout());           * This method initialized the variables {@link #statusBar} and
102                  newRight.add(getToolBar(), BorderLayout.NORTH);           * {@link #splitPane}
103                  newRight.add(getGeoMapPane(), BorderLayout.CENTER);           *
104                  getSplitPane().add(newRight);           * @see #adjustSizeOfGeoMapPane()
105             */
106                  this.add(getSplitPane(), BorderLayout.CENTER);          public void initialize() {
107          }                  // horizontales SplitPane initialisieren
108    
109          /**                  // Status-Line to show Coordinates and Rastervalues.
110           * Returns the tool bar which controls the active mouse actions on the map.                  statusBar = new MapPaneStatusBar(getGeoMapPane().getMapPane());
111           *                  statusBar.setBorder(BorderFactory.createCompoundBorder(BorderFactory
112           * @return                                  .createLoweredBevelBorder(), BorderFactory.createEmptyBorder(2,
113           */                                  5, 2, 5)));
114          public MapPaneToolBar getToolBar() {                  this.add(statusBar, BorderLayout.SOUTH);
115                  return jToolBar;  
116          }                  /**
117                     * The layout of the split pane can be configured in the atlas.
118          /**                   * setDividerLocation(-1); has no effect here because the component is
119           * Returns the split pane which divides the layer list from the map panel.                   * not visible yet.
120           */                   */
121          public JSplitPane getSplitPane() {                  getSplitPane().setDividerSize(5);
122                  return splitPane;  
123          }                  getSplitPane().setResizeWeight(0.0);
124                    getSplitPane().add(getSidePane());
125          /**  
126           * Sets the active tool. Simply calls                  /***********************************************************************
127           * {@link MapPaneToolBar#setSelectedTool(Integer)}.                   * To the right side we now add a JPanel that consists of a toolbar and
128           *                   * a gmp
129           * @param tool                   */
130           *            One of {@link #TOOL_INFO}, {@link #TOOL_PAN} .. constants                  JPanel newRight = new JPanel(new BorderLayout());
131           */                  newRight.add(getToolBar(), BorderLayout.NORTH);
132          public void setSelectedTool(Integer tool) {                  newRight.add(getGeoMapPane(), BorderLayout.CENTER);
133                  jToolBar.setSelectedTool(tool);                  getSplitPane().add(newRight);
134          }  
135                    this.add(getSplitPane(), BorderLayout.CENTER);
136          /**          }
137           * Sets whether a tool is activated or not. Simply calls  
138           * {@link MapPaneToolBar#setButtonEnabled(int, boolean, boolean)}.          /**
139           *           * Returns the tool bar which controls the active mouse actions on the map.
140           * @param tool           *
141           *            tool ID           * @return
142           * @param enabled           */
143           *            if {@code true} the tool becomes available          public MapPaneToolBar getToolBar() {
144           * @param hideOnDisable                  return jToolBar;
145           *            if {@code true} the button is also hidden if {@code enabled}          }
146           *            is {@code false}  
147           */          /**
148          public void setToolEnabled(Integer tool, boolean enabled,           * Returns the split pane which divides the layer list from the map panel.
149                          boolean hideOnDisable) {           */
150                  jToolBar.setButtonEnabled(tool, enabled, hideOnDisable);          public JSplitPane getSplitPane() {
151          }                  return splitPane;
152            }
153          /**  
154           * Sets the activation for all tools. Simply calls          /**
155           * {@link MapPaneToolBar#setAllToolsEnabled(boolean, boolean)}.           * Sets the active tool. Simply calls
156           *           * {@link MapPaneToolBar#setSelectedTool(Integer)}.
157           * @param enabled           *
158           *            if {@code true} all tool becomes available           * @param tool
159           * @param hideOnDisable           *            One of {@link #TOOL_INFO}, {@link #TOOL_PAN} .. constants
160           *            if {@code true} the buttons are also hidden if {@code enabled}           */
161           *            is {@code false}          public void setSelectedTool(Integer tool) {
162           */                  jToolBar.setSelectedTool(tool);
163          public void setAllToolsEnabled(boolean enabled, boolean hideOnDisable) {          }
164                  jToolBar.setAllToolsEnabled(enabled, hideOnDisable);  
165          }          /**
166             * Sets whether a tool is activated or not. Simply calls
167          /**           * {@link MapPaneToolBar#setButtonEnabled(int, boolean, boolean)}.
168           * Checks whether a tool is activated. Simply calls           *
169           * {@link MapPaneToolBar#isButtonEnabled(Integer)}.           * @param tool
170           *           *            tool ID
171           * @param tool           * @param enabled
172           *            tool ID           *            if {@code true} the tool becomes available
173           * @return {@code false} if an unknown ID is specified           * @param hideOnDisable
174           */           *            if {@code true} the button is also hidden if {@code enabled}
175          public boolean isToolEnabled(Integer tool) {           *            is {@code false}
176                  return jToolBar.isButtonEnabled(tool);           */
177          }          public void setToolEnabled(Integer tool, boolean enabled,
178                            boolean hideOnDisable) {
179          /**                  jToolBar.setButtonEnabled(tool, enabled, hideOnDisable);
180           * called by initialize() to fill the left of the XULUMapView Supposed to be          }
181           * overwritten by AtlasMapView or DesignMapView  
182           */          /**
183          public JComponent getSidePane() {           * Sets the activation for all tools. Simply calls
184                  return new MapContextControlPane(getGeoMapPane().getMapPane(),           * {@link MapPaneToolBar#setAllToolsEnabled(boolean, boolean)}.
185                                  new ColorMapManager());           *
186          }           * @param enabled
187             *            if {@code true} all tool becomes available
188          /**           * @param hideOnDisable
189           * Liefert die Status-Zeile, in der die Koordinaten und Raster-Werte           *            if {@code true} the buttons are also hidden if {@code enabled}
190           * angezeigt werden.           *            is {@code false}
191           */           */
192          public MapPaneStatusBar getStatusBar() {          public void setAllToolsEnabled(boolean enabled, boolean hideOnDisable) {
193                  return this.statusBar;                  jToolBar.setAllToolsEnabled(enabled, hideOnDisable);
194          }          }
195    
196          /**          /**
197           * Liefert den Karten-Bereich der Komponente.           * Checks whether a tool is activated. Simply calls
198           */           * {@link MapPaneToolBar#isButtonEnabled(Integer)}.
199          public final JMapPane getMapPane() {           *
200                  return getGeoMapPane().getMapPane();           * @param tool
201          }           *            tool ID
202             * @return {@code false} if an unknown ID is specified
203          public GeoMapPane getGeoMapPane() {           */
204                  return geoMapPane;          public boolean isToolEnabled(Integer tool) {
205          }                  return jToolBar.isButtonEnabled(tool);
206            }
207          public int getSelectedTool() {  
208                  return jToolBar.getSelectedTool();          /**
209          }           * called by initialize() to fill the left of the XULUMapView Supposed to be
210             * overwritten by AtlasMapView or DesignMapView
211  }           */
212            public JComponent getSidePane() {
213                    return new MapContextControlPane(getGeoMapPane().getMapPane(),
214                                    new ColorMapManager());
215            }
216    
217            /**
218             * Liefert die Status-Zeile, in der die Koordinaten und Raster-Werte
219             * angezeigt werden.
220             */
221            public MapPaneStatusBar getStatusBar() {
222                    return this.statusBar;
223            }
224    
225            /**
226             * Liefert den Karten-Bereich der Komponente.
227             */
228            public final JMapPane getMapPane() {
229                    return getGeoMapPane().getMapPane();
230            }
231    
232            public GeoMapPane getGeoMapPane() {
233                    return geoMapPane;
234            }
235    
236            public int getSelectedTool() {
237                    return jToolBar.getSelectedTool();
238            }
239    
240    }

Legend:
Removed from v.227  
changed lines
  Added in v.244

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26