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

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

Parent Directory Parent Directory | Revision Log Revision Log


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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26