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

Annotation of /trunk/src/skrueger/geotools/MapPaneToolBar.java

Parent Directory Parent Directory | Revision Log Revision Log


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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26