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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 417 - (hide annotations)
Fri Sep 25 16:34:10 2009 UTC (15 years, 5 months ago) by alfonx
File size: 27785 byte(s)
* AV-Feature: Search button only appears if there are labels to search in the map
* AV-Feature: "Beautified" the AtlasMapView a bit.. less lines.. smoother text rendering..

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.Color;
33     import java.awt.Graphics;
34     import java.awt.event.ActionEvent;
35 alfonx 414 import java.awt.event.ActionListener;
36 alfonx 244 import java.util.ArrayList;
37 alfonx 414 import java.util.HashSet;
38 alfonx 244 import java.util.Locale;
39 alfonx 414 import java.util.Set;
40 alfonx 244 import java.util.SortedMap;
41     import java.util.TreeMap;
42    
43     import javax.swing.AbstractAction;
44     import javax.swing.AbstractButton;
45     import javax.swing.Action;
46     import javax.swing.BorderFactory;
47     import javax.swing.Icon;
48     import javax.swing.ImageIcon;
49     import javax.swing.JButton;
50     import javax.swing.JComponent;
51     import javax.swing.JToggleButton;
52     import javax.swing.JToolBar;
53    
54     import org.apache.log4j.Logger;
55    
56     import schmitzm.geotools.gui.JMapPane;
57     import schmitzm.geotools.map.event.JMapPaneEvent;
58     import schmitzm.geotools.map.event.JMapPaneListener;
59     import schmitzm.geotools.map.event.MapAreaChangedEvent;
60     import schmitzm.lang.LangUtil;
61     import schmitzm.lang.ResourceProvider;
62     import schmitzm.swing.ButtonGroup;
63     import schmitzm.swing.SwingUtil;
64    
65     import com.vividsolutions.jts.geom.Envelope;
66    
67     /**
68     * A toolbar to control an {@link JMapPane} (Atlas visualization). This contains
69     * two types of buttons. A group of <i>tools</i> for the mouse actions on the
70     * map represented by {@link JToggleButton JToggleButtons}, where only one tool
71     * can be activated every time. And some (general) <i>actions</i>, represented
72     * by normal {@link JButton JButtons}.
73     *
74     * @author <a href="mailto:[email protected]">Martin Schmitz</a>
75     * (University of Bonn/Germany)
76     * @version 1.2 Stefan Krüger
77     */
78     public class MapPaneToolBar extends JToolBar {
79     private static final Logger LOGGER = Logger.getLogger(MapPaneToolBar.class
80     .getName());
81    
82     public static ResourceProvider RESOURCE = new ResourceProvider(LangUtil
83     .extendPackagePath(MapPaneToolBar.class,
84     "resource.locales.mapPaneToolbar"), Locale.ENGLISH);
85    
86     public static String R(String key, Object... values) {
87     return RESOURCE.getString(key, values);
88     }
89    
90     /** Constant for the tool "Panning" (10). */
91     public static final int TOOL_PAN = 10;
92     /** Constant for the tool "Info" (20). */
93     public static final int TOOL_INFO = 20;
94     public static final int SEPERATOR0 = 99;
95    
96     /** Constant for the tool "Zoom In" (110). */
97     public static final int TOOL_ZOOMIN = 110;
98     /** Constant for the tool "Zoom Out" (120). */
99     public static final int TOOL_ZOOMOUT = 120;
100     /** Constant for the action "Zoom back" (130). */
101     public static final int ACTION_ZOOM_BACK = 130;
102     /** Constant for the action "Zoom forward" (140). */
103     public static final int ACTION_ZOOM_FORWARD = 140;
104     public static final int SEPERATOR1 = 199;
105    
106     /**
107     * Constant for the tool "Selection Reset" which clears the selection (240).
108     */
109     public static final int TOOL_SELECTION_CLEAR = 240;
110    
111     /**
112     * Constant for the tool "Select" which sets the Selection to the selected
113     * features (210).
114     */
115     public static final int TOOL_SELECTION_SET = 210;
116     /**
117     * Constant for the tool "Selection add" which adds the features to the
118     * Selection (220).
119     */
120     public static final int TOOL_SELECTION_ADD = 220;
121     /**
122     * Constant for the tool "Selection subtract" which removes the selected
123     * features from the selection (230).
124     */
125     public static final int TOOL_SELECTION_REMOVE = 230;
126    
127 alfonx 297 public static final int ACTION_CHARTS = 401;
128    
129 alfonx 244 /** Tool currently selected */
130     protected int selectedTool = TOOL_ZOOMIN;
131    
132     /** Holds the tool buttons of the tool bar. */
133 alfonx 414 final protected SortedMap<Integer, JComponent> toolAndActionButtons = new TreeMap<Integer, JComponent>();
134 alfonx 244 /** Controls that only one tool button is activated. */
135     protected ButtonGroup toolButtonGroup = null;
136    
137     // SK: Musste ich ändern damit man Tools und Actions in der Reihenfolge
138     // mischen kann.
139     // /** Holds the action buttons of the bar. */
140     // protected SortedMap<Integer, JButton> actionButtons = null;
141    
142     /** Holds the {@link JMapPane} this tool bar controls. */
143     protected JMapPane mapPane = null;
144    
145     /**
146     * A List to remember the last Envelopes that have been watched. Used for
147     * the zoomBack- and zoomForwardButtons *
148     */
149     protected ArrayList<Envelope> lastZooms = new ArrayList<Envelope>();
150     /** Holds the index to the current element in {@link #lastZooms}. */
151     protected int zoomBackIndex = 0;
152    
153     /** Listener to sniff the zoom actions on the map. */
154     protected JMapPaneListener mapPaneListener = null;
155    
156     protected boolean zoomBackForwardButtonInAction;
157    
158 alfonx 414 /** Listeners what want to be informed about a change of the selected tool **/
159     protected Set<MapPaneToolSelectedListener> toolSelectionListeners = new HashSet<MapPaneToolSelectedListener>();
160    
161     /** This listener is added to all {@link JToggleButton} **/
162     private final ActionListener toolSelectedListener = new ActionListener(){
163    
164     @Override
165     public void actionPerformed(ActionEvent e) {
166     JToggleButton tb = (JToggleButton) e.getSource();
167    
168     // Inform the listeners about a newly selected tool
169     for (MapPaneToolSelectedListener l : toolSelectionListeners) {
170     l.toolSelected(Integer.valueOf( tb.getName() ) ) ;
171     }
172     }
173    
174     };
175    
176 alfonx 244 /**
177     * Creates a new toolbar. Notice: This toolbar does nothing until
178     * {@link #setMapPane(JMapPane)} is called!
179     */
180     public MapPaneToolBar() {
181     this(null);
182     }
183 alfonx 414
184     public void addButtonSelectedListener(MapPaneToolSelectedListener listener ) {
185     toolSelectionListeners.add(listener);
186     }
187 alfonx 244
188 alfonx 414 public void removeButtonSelectedListener(MapPaneToolSelectedListener listener ) {
189     toolSelectionListeners .remove(listener);
190     }
191    
192 alfonx 244 /**
193     * Creates a new tool bar.
194     *
195     * @param mapPane
196     * {@link JMapPane} the tool bar controls
197     */
198     public MapPaneToolBar(JMapPane mapPane) {
199     super("Control the map", JToolBar.HORIZONTAL);
200 alfonx 417
201     // I want to see nothing on the background
202     setOpaque(false);
203     setBorder(null);
204    
205 alfonx 244 this.toolButtonGroup = new ButtonGroup();
206    
207     // Create a Listener to listen to the zooms on the JMapPane
208     this.mapPaneListener = new JMapPaneListener() {
209     public void performMapPaneEvent(JMapPaneEvent e) {
210     if (!(e instanceof MapAreaChangedEvent))
211     return;
212    
213     if (zoomBackForwardButtonInAction) {
214     zoomBackForwardButtonInAction = false;
215     return;
216     }
217    
218     final MapAreaChangedEvent mapAreaChangedEvent = (MapAreaChangedEvent) e;
219     Envelope oldMapArea = mapAreaChangedEvent.getOldMapArea();
220    
221     final Envelope mapArea = mapAreaChangedEvent.getNewMapArea();
222     if (mapArea == null || mapArea.equals(oldMapArea) ) {
223     // If the MapArea didn't change... we don't want to register it as a zoom action.
224     return;
225     }
226    
227     if (lastZooms.size() == 0 && oldMapArea != null) {
228     lastZooms.add(oldMapArea);
229     zoomBackIndex = 1;
230     }
231     if (mapArea == null)
232     return;
233    
234     if (lastZooms.size() > 0
235     && mapArea.equals(lastZooms.get(lastZooms.size() - 1))) {
236     // LOGGER.debug("MapAreaChangedEvent ausgelassen bei der Zaehlung der Zoomschritt weil identisch");
237     return;
238     }
239    
240     if (lastZooms.size() > 0)
241     while (zoomBackIndex < lastZooms.size())
242     lastZooms.remove(lastZooms.size() - 1);
243    
244     lastZooms.add(mapArea);
245     zoomBackIndex = lastZooms.size();
246     setButtonEnabled(ACTION_ZOOM_BACK, lastZooms.size() > 1);
247     setButtonEnabled(ACTION_ZOOM_FORWARD, false);
248     }
249     };
250    
251     setMapPane(mapPane);
252     setFloatable(false);
253     setRollover(true);
254    
255     init();
256     }
257    
258     /**
259     * Sets the {@link JMapPane} controlled by this tool bar.
260     *
261     * @param mapPane
262     * {@link JMapPane} to control (if {@code null} this tool bar
263     * controls NOTHING!)
264     */
265     public void setMapPane(JMapPane mapPane) {
266     // Remove listener from old MapPane
267     if (this.mapPane != null)
268     this.mapPane.removeMapPaneListener(mapPaneListener);
269     this.mapPane = mapPane;
270     if (this.mapPane != null && mapPaneListener != null)
271     this.mapPane.addMapPaneListener(mapPaneListener);
272     }
273    
274     /**
275     * Calls {@link #initToolsAndActions()} and {@link #initActions()} and then
276     * puts all tool buttons and all actions buttons to the tool bar.
277     */
278     protected void init() {
279 alfonx 417
280 alfonx 244 initToolsAndActions();
281    
282     addSeparator(SEPERATOR0, new JToolBar.Separator());
283     addSeparator(SEPERATOR1, new JToolBar.Separator());
284    
285     initToolBar();
286     }
287    
288     /**
289     * Creates the tool buttons and action buttons and seperators, adds them to
290     * {@link #toolAndActionButtons} and finally creates a button group for all
291     * tools. So sub-classes which override this method should FIRST add their
292     * new tool buttons to {@link #toolAndActionButtons} before calling {@code
293     * super.initTools()}.
294     */
295     protected void initToolsAndActions() {
296     // Panning
297     addTool(new MapPaneToolBarAction(TOOL_PAN, this, "", new ImageIcon(
298     MapView.class.getResource("resource/icons/pan.png")), R("MapPaneButtons.Pan.TT")), false);
299     // Info
300     addTool(new MapPaneToolBarAction(TOOL_INFO, this, "", new ImageIcon(
301     MapView.class.getResource("resource/icons/info.png")),R("MapPaneButtons.Info.TT")), false);
302    
303     // Zoom in
304     addTool(new MapPaneToolBarAction(TOOL_ZOOMIN, this, "", new ImageIcon(
305     MapView.class.getResource("resource/icons/zoom_in.png")), R("MapPaneButtons.ZoomIn.TT")),
306     false);
307     // Zoom out
308     addTool(new MapPaneToolBarAction(TOOL_ZOOMOUT, this, "", new ImageIcon(
309     MapView.class.getResource("resource/icons/zoom_out.png")), R("MapPaneButtons.ZoomOut.TT")),
310     false);
311    
312     // Action button to revert the last zoom
313     addAction(new MapPaneToolBarAction(ACTION_ZOOM_BACK, this, "",
314     new ImageIcon(MapView.class
315     .getResource("resource/icons/zoom_back.png")), R("MapPaneButtons.LastZoom.TT")), false);
316     setButtonEnabled(ACTION_ZOOM_BACK, false);
317    
318     // Action button to redo the last zoom
319     addAction(new MapPaneToolBarAction(ACTION_ZOOM_FORWARD, this, "",
320     new ImageIcon(MapView.class
321     .getResource("resource/icons/zoom_forward.png")), R("MapPaneButtons.NextZoom.TT")),
322     false);
323     setButtonEnabled(ACTION_ZOOM_FORWARD, false);
324    
325     // set the selected tool enabled
326     setSelectedTool(selectedTool);
327    
328     }
329 alfonx 417
330     @Override
331     public void paint(Graphics g) {
332     super.paint(g);
333     }
334 alfonx 244
335     /**
336     * Clears the GUI of all components and adds all tool and action buttons to
337     * the tool bar.
338     */
339     public void initToolBar() {
340 alfonx 417 // setOpaque(true);
341     //
342     // setAlignmentY(1f);
343     // setAlignmentX(0.5f);
344 alfonx 244 removeAll();
345 alfonx 417
346     // // Separator to the left of the tool actions to start
347     // // the tool buttons with the map (not with the coordinate grid)
348     // Dimension dimension = new Dimension(49, 10);
349     // addSeparator(dimension);
350    
351    
352 alfonx 244 // Tool buttons
353 alfonx 414 for (Integer bKey : toolAndActionButtons.keySet()) {
354    
355     JComponent b = toolAndActionButtons.get(bKey);
356    
357     if (b instanceof JToggleButton) {
358     JToggleButton tb = (JToggleButton) b;
359     tb.setName(bKey.toString());
360     tb.addActionListener( toolSelectedListener );
361     }
362    
363 alfonx 244 add(b);
364 alfonx 414 }
365 alfonx 244
366     if (!toolAndActionButtons.containsKey(selectedTool)) {
367     /**
368     * This might be a bit specific, but IF selection buttons are
369     * available, select one of them.. if not, select the INFO tool.
370     */
371    
372     if (toolAndActionButtons.containsKey(TOOL_SELECTION_SET)) {
373     setSelectedTool(TOOL_SELECTION_SET);
374     } else if (toolAndActionButtons.containsKey(TOOL_INFO)) {
375     setSelectedTool(TOOL_INFO);
376     } else {
377     // TODO What to do now?!
378     setSelectedTool(null);
379     }
380    
381     }
382    
383     revalidate();
384     repaint();
385     }
386    
387     // Space between tool buttons and action buttons
388     // SK: Seperators are now als manages like actions and tools
389     // Dimension dimension2 = new Dimension( 10,10);
390     // this.addSeparator(dimension2);
391    
392     // // Action buttons
393     // for (JButton b : actionButtons.values())
394     // add(b);
395     // }
396    
397     /**
398     * Performs the activation of a tool.
399     *
400     * @param tool
401     * the tool to activate
402     * @param e
403     * the event of the button
404     */
405     public void performToolButton(int tool, ActionEvent e) {
406     if (mapPane == null)
407     return;
408    
409     selectedTool = tool;
410    
411     switch (tool) {
412     case TOOL_PAN:
413     // Set the mouse tool to "Panning"
414     mapPane.setWindowSelectionState(JMapPane.NONE);
415     mapPane.setState(JMapPane.PAN);
416     mapPane.setNormalCursor(SwingUtil.PAN_CURSOR);
417     break;
418     case TOOL_INFO:
419     // Set the mouse tool to "Info"
420     mapPane.setWindowSelectionState(JMapPane.NONE);
421     mapPane.setState(JMapPane.SELECT_TOP); // Why not:
422     // JMapPane.SELECT_TOP_ONEONLY
423     // properly removed it to save
424     // performance
425     mapPane.setNormalCursor(SwingUtil.CROSSHAIR_CURSOR);
426     break;
427     case TOOL_ZOOMIN:
428     // Set the mouse tool to "Zoom in"
429     mapPane.setWindowSelectionState(JMapPane.ZOOM_IN);
430     mapPane.setState(JMapPane.ZOOM_IN);
431     mapPane.setNormalCursor(SwingUtil.ZOOMIN_CURSOR);
432     break;
433     case TOOL_ZOOMOUT:
434     // Set the mouse tool to "Zoom out"
435     mapPane.setWindowSelectionState(JMapPane.NONE);
436     mapPane.setState(JMapPane.ZOOM_OUT);
437     mapPane.setNormalCursor(SwingUtil.ZOOMOUT_CURSOR);
438     break;
439     default:
440     // Set map actions to default
441     mapPane.setWindowSelectionState(JMapPane.NONE);
442     mapPane.setState(JMapPane.NONE);
443     mapPane.setNormalCursor(null);
444     break;
445     }
446     mapPane.updateCursor();
447     }
448    
449     /**
450     * @param id
451     * The ID of the Component to remove. The change will not be
452     * visible until {@link #initToolBar()} is called.
453     * @return <code>null</code> or the component that has been removed.
454     */
455     public JComponent removeId(int id) {
456     return toolAndActionButtons.remove(id);
457     }
458    
459     /**
460     * Performs the action of an action button.
461     *
462     * @param tool
463     * the action
464     * @param e
465     * the event of the button
466     */
467     protected void performActionButton(int action, ActionEvent e) {
468     if (mapPane == null)
469     return;
470    
471     // Perform the action "Zoom back": Revert the last zoom
472     if (action == ACTION_ZOOM_BACK) {
473     if (zoomBackIndex <= 1)
474     return;
475    
476     zoomBackForwardButtonInAction = true;
477     zoomBackIndex--;
478     getButton(ACTION_ZOOM_FORWARD).setEnabled(true);
479     getButton(ACTION_ZOOM_BACK).setEnabled(zoomBackIndex > 1);
480    
481     mapPane.setMapArea(lastZooms.get(zoomBackIndex - 1));
482     mapPane.refresh();
483     }
484    
485     // Perform the action "Zoom forward": Re-do the last zoom
486     if (action == ACTION_ZOOM_FORWARD) {
487     if (zoomBackIndex < lastZooms.size()) {
488     zoomBackForwardButtonInAction = true;
489     zoomBackIndex++;
490     getButton(ACTION_ZOOM_BACK).setEnabled(true);
491     getButton(ACTION_ZOOM_FORWARD).setEnabled(
492     zoomBackIndex < lastZooms.size());
493    
494     mapPane.setMapArea(lastZooms.get(zoomBackIndex - 1));
495     mapPane.refresh();
496     }
497     }
498     }
499    
500     /**
501     * Adds a tool to the tool bar. Does nothing if a tool or action with the
502     * specified ID already exists!
503     *
504     * @param buttonAction
505     * action for the toggle button
506     * @param resetToolBar
507     * indicates whether the toolbar GUI is reset after adding the
508     * button (if adding several actions it useful only to reset the
509     * GUI for the last added tool)
510     */
511     public void addTool(MapPaneToolBarAction buttonAction, boolean resetToolBar) {
512     if (isButtonIDUsed(buttonAction.getID())) {
513     LOGGER
514     .warn("addTool(.) ignored because ID already used for tool or action: "
515     + buttonAction.getID());
516     return;
517     }
518     JToggleButton button = new JToggleButton(buttonAction);
519     button.setBorder(BorderFactory.createRaisedBevelBorder());
520     toolButtonGroup.add(button);
521     toolAndActionButtons.put(buttonAction.getID(), button);
522     if (resetToolBar)
523     initToolBar();
524     }
525    
526 alfonx 297
527    
528 alfonx 244 /**
529     * Adds a tool to the tool bar and resets the toolbar GUI.
530     *
531     * @param buttonAction
532     * action for the toggle button
533     */
534     public void addTool(MapPaneToolBarAction buttonAction) {
535     addTool(buttonAction, true);
536     }
537    
538     /**
539     * Adds an action to the tool bar. Does nothing if a tool or action with the
540     * specified ID already exists!
541     *
542     * @param buttonAction
543     * action for the button
544     * @param resetToolBar
545     * indicates whether the toolbar GUI is reset after adding the
546     * button (if adding several actions it useful only to reset the
547     * GUI for the last added tool)
548     */
549     public void addAction(MapPaneToolBarAction buttonAction,
550     boolean resetToolBar) {
551     if (isButtonIDUsed(buttonAction.getID())) {
552     LOGGER
553     .warn("addAction(.) ignored because ID already used for tool or action: "
554     + buttonAction.getID());
555     return;
556     }
557     JButton button = new JButton(buttonAction);
558     button.setBorder(BorderFactory.createRaisedBevelBorder());
559     toolAndActionButtons.put(buttonAction.getID(), button);
560     if (resetToolBar)
561     initToolBar();
562     }
563 alfonx 297
564     /**
565     * Adds any JComponent to the tool bar. Does nothing if a tool or action with the
566     * specified ID already exists!
567     *
568     * @param component A {@link JComponent} that shall be added
569     * @param id The ID associaded with the {@link JComponent}
570     * @param resetToolBar
571     * indicates whether the toolbar GUI is reset after adding the
572     * button (if adding several actions it useful only to reset the
573     * GUI for the last added tool)
574     */
575     public void addJComponent(JComponent component, int id,
576     boolean resetToolBar) {
577 alfonx 244
578 alfonx 297 if (isButtonIDUsed(id)) {
579     LOGGER
580     .warn("addAction(.) ignored because ID already used for tool or action: "
581     + id);
582     return;
583     }
584    
585     toolAndActionButtons.put(id, component);
586     if (resetToolBar)
587     initToolBar();
588     }
589    
590 alfonx 244 public void addSeparator(int id, Separator separator) {
591     if (isButtonIDUsed(id)) {
592     LOGGER
593     .warn("addSeparator(.) ignored because ID already used for tool or action. ");
594     return;
595     }
596     toolAndActionButtons.put(id, separator);
597     }
598    
599     /**
600     * Adds an action to the tool bar and resets the toolbar GUI.
601     *
602     * @param buttonAction
603     * action for the toggle button
604     */
605     public void addAction(MapPaneToolBarAction buttonAction) {
606     addAction(buttonAction, true);
607     }
608    
609     /**
610     * Returns the button for a specific tool or action.
611     *
612     * @param id
613     * the constant for any button in the {@link MapPaneToolBar}
614     * @return a {@link JButton} if {@code id} specifies an
615     * {@linkplain #getActionButton(int) action button} or
616     * {@link JToogleButton} if {@code id} specifies a
617     * {@linkplain #getToolButton(int) tool button}
618     */
619     public AbstractButton getButton(int id) {
620     AbstractButton button = (AbstractButton) toolAndActionButtons.get(id);
621     if (button == null)
622     LOGGER.warn("Unknown tool or action ID: " + id);
623     return button;
624     }
625    
626     /**
627     * Returns the button for a specific tool.
628     *
629     * @param tool
630     * the constant for a tool
631     */
632     public JToggleButton getToolButton(int tool) {
633     AbstractButton button = getButton(tool);
634     if (button != null && !(button instanceof JToggleButton)) {
635     LOGGER.warn("ID specifies no tool: " + tool);
636     button = null;
637     }
638     return (JToggleButton) button;
639     }
640    
641     /**
642     * Returns the button for a specific action.
643     *
644     * @param action
645     * the constant an action
646     */
647     public JButton getActionButton(int action) {
648     AbstractButton button = getButton(action);
649     if (button != null && !(button instanceof JButton)) {
650     LOGGER.warn("ID specifies no action: " + action);
651     button = null;
652     }
653     return (JButton) button;
654    
655     }
656    
657     /**
658     * Sets the selected tool.
659     *
660     * @param tool
661     * ID of the tool
662     */
663     public void setSelectedTool(Integer tool) {
664     if (tool == null)
665     toolButtonGroup.setUnselected();
666    
667     JToggleButton button = getToolButton(tool);
668     if (button == null)
669     return;
670     button.setSelected(true);
671     button.getAction().actionPerformed(null);
672    
673     selectedTool = tool;
674     }
675    
676     /**
677     * Returns the selected tool.
678     *
679     * @return -1 if no tool is active
680     */
681     public int getSelectedTool() {
682     if (toolButtonGroup.getSelectedButton() == null)
683     return -1;
684     return selectedTool;
685     }
686    
687     /**
688     * Sets whether a tool or action is activated or not. The visible property
689     * of the button is not affected.
690     *
691     * @param id
692     * tool or actionID
693     * @param enabled
694     * if {@code true} the tool becomes available
695     */
696     public void setButtonEnabled(int id, boolean enabled) {
697     AbstractButton button = getButton(id);
698     if (button == null)
699     return;
700     button.setEnabled(enabled);
701     }
702    
703     /**
704     * Sets whether a tool or action is activated or not.
705     *
706     * @param id
707     * tool or actionID
708     * @param enabled
709     * if {@code true} the tool becomes available
710     * @param hideOnDisable
711     * if {@code true} the button is also hidden if {@code enabled}
712     * is {@code false}
713     */
714     public void setButtonEnabled(int id, boolean enabled, boolean hideOnDisable) {
715     AbstractButton button = getButton(id);
716     if (button == null)
717     return;
718     button.setEnabled(enabled);
719     // if button is enabled, it becomes visible anyway
720     // if button is disabled and the "hide" option is set, it is also hidden
721     if (enabled)
722     button.setVisible(true);
723     else
724     button.setVisible(!hideOnDisable);
725     }
726    
727     /**
728     * Checks whether a ID is already used for a tool or action.
729     *
730     * @param tool
731     * tool ID
732     */
733     public boolean isButtonIDUsed(int id) {
734     return toolAndActionButtons.get(id) != null;
735     }
736    
737     /**
738     * Checks whether a tool is activated.
739     *
740     * @param tool
741     * tool ID
742     * @return {@code false} if an unknown ID is specified
743     */
744     public boolean isButtonEnabled(int id) {
745     AbstractButton button = getButton(id);
746     if (button != null)
747     return button.isEnabled();
748     return false;
749     }
750    
751     /**
752     * Sets the activation for all tools.
753     *
754     * @param enabled
755     * if {@code true} all tools becomes available
756     * @param hideOnDisable
757     * if {@code true} the buttons are also hidden if {@code enabled}
758     * is {@code false}
759     */
760     public void setAllToolsEnabled(boolean enabled, boolean hideOnDisable) {
761     for (int tool : toolAndActionButtons.keySet())
762     setButtonEnabled(tool, enabled, hideOnDisable);
763     }
764    
765     /**
766     * Sets the activation for all actions.
767     *
768     * @param enabled
769     * if {@code true} all actions becomes available
770     * @param hideOnDisable
771     * if {@code true} the buttons are also hidden if {@code enabled}
772     * is {@code false}
773     */
774     public void setAllActionsEnabled(boolean enabled, boolean hideOnDisable) {
775     for (int id : toolAndActionButtons.keySet()) {
776     if (toolAndActionButtons.get(id) instanceof JButton) {
777     setButtonEnabled(id, enabled, hideOnDisable);
778     }
779     }
780    
781     }
782    
783     /**
784     * Returns the maximum ID of tools.
785     */
786     public int getMaxToolID() {
787     return toolAndActionButtons.lastKey();
788     }
789    
790     /**
791     * Returns the minimum ID of tools.
792     */
793     public int getMinToolID() {
794     return toolAndActionButtons.firstKey();
795     }
796    
797     /**
798     * Extends the {@link AbstractAction} with maintaining an ID and the
799     * {@link MapPaneToolBar} the actions controls. Additionally this class
800     * automatically calls
801     * {@link MapPaneToolBar#performToolButton(int, ActionEvent)} or
802     * {@link MapPaneToolBar#performActionButton(int, ActionEvent)} depending on
803     * whether the action is added via
804     * {@link MapPaneToolBar#addTool(MapPaneToolBarAction)} or
805     * {@link MapPaneToolBar#addAction(MapPaneToolBarAction)}.
806     *
807     * @author <a href="mailto:[email protected]">Martin Schmitz</a>
808     * (University of Bonn/Germany)
809     */
810     public static class MapPaneToolBarAction extends AbstractAction {
811     /** The ID of the action */
812     protected int id = -1;
813     /** The tool bar, this action is made for. */
814     protected MapPaneToolBar toolBar = null;
815    
816     /**
817     * Creates a new action with a dummy description and no icon.
818     *
819     * @param id
820     * unique ID for the action
821     * @param toolBar
822     * toolbar this action is made for
823     */
824     public MapPaneToolBarAction(int id, MapPaneToolBar toolBar) {
825     this(id, toolBar, "" + id);
826     }
827    
828     /**
829     * Creates a new action without an icon.
830     *
831     * @param id
832     * unique ID for the action
833     * @param toolBar
834     * toolbar this action is made for
835     * @param name
836     * description used for buttons or menus
837     */
838     public MapPaneToolBarAction(int id, MapPaneToolBar toolBar, String name) {
839     this(id, toolBar, name, null);
840     }
841    
842     /**
843     * Creates a new action.
844     *
845     * @param id
846     * unique ID for the action
847     * @param toolBar
848     * toolbar this action is made for
849     * @param name
850     * description used for buttons or menus
851     * @param icon
852     * icon used for buttons or menus
853     */
854     public MapPaneToolBarAction(int id, MapPaneToolBar toolBar,
855     String name, Icon icon) {
856     this (id, toolBar, name, icon, null);
857     }
858    
859     /**
860     * Creates a new action.
861     *
862     * @param id
863     * unique ID for the action
864     * @param toolBar
865     * The {@link MapPaneToolBar} this action is made for
866     * @param name
867     * description used for buttons or menus
868     * @param icon
869     * icon used for buttons or menus
870     * @param toolTip
871     * Tooltip to use for the button or menu
872     */
873     public MapPaneToolBarAction(int id, MapPaneToolBar toolBar,
874     String name, Icon icon, String toolTip) {
875     super(name, icon);
876    
877     if (toolTip != null && !toolTip.trim().isEmpty()){
878     putValue(Action.SHORT_DESCRIPTION, toolTip);
879     }
880    
881     this.id = id;
882     this.toolBar = toolBar;
883     }
884    
885     /**
886     * Calls {@link MapPaneToolBar#performToolButton(int, ActionEvent)} or
887     * {@link MapPaneToolBar#performActionButton(int, ActionEvent)}
888     * depending on whether the action is added to the toolbar via
889     * {@link MapPaneToolBar#addTool(MapPaneToolBarAction)} or
890     * {@link MapPaneToolBar#addAction(MapPaneToolBarAction)}.
891     */
892     public void actionPerformed(ActionEvent e) {
893     if (toolBar.toolAndActionButtons.get(id) instanceof JToggleButton)
894     toolBar.performToolButton(id, e);
895     else if (toolBar.toolAndActionButtons.get(id) instanceof JButton)
896     toolBar.performActionButton(id, e);
897     }
898    
899     /**
900     * Returns the (unique) id of this action.
901     *
902     * @return
903     */
904     public int getID() {
905     return id;
906     }
907     }
908    
909     /**
910     * Nuetzlich wenn die Componente gedruckt (z.B. wenn ein Screenshot gemacht wird) wird. Dann werden wird der
911     * Hintergrund auf WEISS gesetzt.
912     *
913     * @author <a href="mailto:[email protected]">Stefan Alfons
914     * Kr&uuml;ger</a>
915     */
916     @Override
917     public void print(Graphics g) {
918     Color orig = getBackground();
919     setBackground(Color.WHITE);
920     // wrap in try/finally so that we always restore the state
921     try {
922     super.print(g);
923     } finally {
924     setBackground(orig);
925     }
926     }
927 alfonx 414
928 alfonx 244 }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26