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

Legend:
Removed from v.165  
changed lines
  Added in v.516

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26