source: josm/trunk/src/org/openstreetmap/josm/actions/JosmAction.java@ 1935

Last change on this file since 1935 was 1935, checked in by Gubaer, 15 years ago

fixed #3203: pressing DEL deletes Layer instead of objects
Enabled DEL in layer list again, should not interfere with DEL on map view anymore.

  • Property svn:eol-style set to native
File size: 6.8 KB
Line 
1// License: GPL. Copyright 2007 by Immanuel Scholz and others
2package org.openstreetmap.josm.actions;
3
4import static org.openstreetmap.josm.tools.I18n.tr;
5
6import java.util.Collection;
7
8import javax.swing.AbstractAction;
9import javax.swing.JComponent;
10
11import org.openstreetmap.josm.Main;
12import org.openstreetmap.josm.data.SelectionChangedListener;
13import org.openstreetmap.josm.data.osm.DataSet;
14import org.openstreetmap.josm.data.osm.OsmPrimitive;
15import org.openstreetmap.josm.gui.layer.Layer;
16import org.openstreetmap.josm.gui.layer.OsmDataLayer;
17import org.openstreetmap.josm.gui.layer.Layer.LayerChangeListener;
18import org.openstreetmap.josm.tools.Destroyable;
19import org.openstreetmap.josm.tools.ImageProvider;
20import org.openstreetmap.josm.tools.Shortcut;
21
22/**
23 * Base class helper for all Actions in JOSM. Just to make the life easier.
24 *
25 * A JosmAction is a {@see LayerChangeListener} and a {@see SelectionChangedListener}. Upon
26 * a layer change event or a selection change event it invokes {@see #updateEnabled()}.
27 * Subclasses can override {@see #updateEnabled()} in order to update the {@see #isEnabled()}-state
28 * of a JosmAction depending on the {@see #getCurrentDataSet()} and the current layers
29 * (see also {@see #getEditLayer()}).
30 *
31 * destroy() from interface Destroyable is called e.g. for MapModes, when the last layer has
32 * been removed and so the mapframe will be destroyed. For other JosmActions, destroy() may never
33 * be called (currently).
34 *
35 * @author imi
36 */
37abstract public class JosmAction extends AbstractAction implements Destroyable {
38
39 protected Shortcut sc;
40 private LayerChangeAdapter layerChangeAdapter;
41 private SelectionChangeAdapter selectionChangeAdapter;
42
43 public Shortcut getShortcut() {
44 if (sc == null) {
45 sc = Shortcut.registerShortcut("core:none", tr("No Shortcut"), 0, Shortcut.GROUP_NONE);
46 // as this shortcut is shared by all action that don't want to have a shortcut,
47 // we shouldn't allow the user to change it...
48 // this is handled by special name "core:none"
49 }
50 return sc;
51 }
52
53 /**
54 * The new super for all actions.
55 *
56 * Use this super constructor to setup your action. It takes 5 parameters:
57 *
58 * @param name the action's text as displayed on the menu (if it is added to a menu)
59 * @param iconName the filename of the icon to use
60 * @param tooltip a longer description of the action that will be displayed in the tooltip. Please note
61 * that html is not supported for menu actions on some platforms.
62 * @param shortcut a ready-created shortcut object or null if you don't want a shortcut. But you always
63 * do want a shortcut, remember you can always register it with group=none, so you
64 * won't be assigned a shortcut unless the user configures one. If you pass null here,
65 * the user CANNOT configure a shortcut for your action.
66 * @param register register this action for the toolbar preferences?
67 */
68 public JosmAction(String name, String iconName, String tooltip, Shortcut shortcut, boolean register) {
69 super(name, iconName == null ? null : ImageProvider.get(iconName));
70 setHelpId();
71 sc = shortcut;
72 if (sc != null) {
73 Main.contentPane.getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW).put(sc.getKeyStroke(), name);
74 Main.contentPane.getActionMap().put(name, this);
75 }
76 putValue(SHORT_DESCRIPTION, Main.platform.makeTooltip(tooltip, sc));
77 putValue("toolbar", iconName);
78 if (register) {
79 Main.toolbar.register(this);
80 }
81 installAdapters();
82 }
83
84 public JosmAction() {
85 setHelpId();
86 installAdapters();
87 }
88
89 public void destroy() {
90 if (sc != null) {
91 Main.contentPane.getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW).remove(sc.getKeyStroke());
92 Main.contentPane.getActionMap().remove(sc.getKeyStroke());
93 }
94 if (Layer.listeners != null) {
95 Layer.listeners.remove(layerChangeAdapter);
96 }
97 if (DataSet.selListeners != null) {
98 DataSet.selListeners.remove(selectionChangeAdapter);
99 }
100 }
101
102
103
104 /**
105 * needs to be overridden to be useful
106 */
107 public void pasteBufferChanged(DataSet newPasteBuffer) {
108 return;
109 }
110
111 /**
112 * needs to be overridden to be useful
113 */
114 public void addListener(JosmAction a) {
115 return;
116 }
117
118 private void setHelpId() {
119 String helpId = "Action/"+getClass().getName().substring(getClass().getName().lastIndexOf('.')+1);
120 if (helpId.endsWith("Action")) {
121 helpId = helpId.substring(0, helpId.length()-6);
122 }
123 putValue("help", helpId);
124 }
125
126 /**
127 * Replies the current edit layer
128 *
129 * @return the current edit layer. null, if no edit layer exists
130 */
131 protected OsmDataLayer getEditLayer() {
132 return Main.main.getEditLayer();
133 }
134
135 /**
136 * Replies the current dataset
137 *
138 * @return the current dataset. null, if no current dataset exists
139 */
140 protected DataSet getCurrentDataSet() {
141 return Main.main.getCurrentDataSet();
142 }
143
144 private void installAdapters() {
145 // make this action listen to layer change and selection change events
146 //
147 layerChangeAdapter = new LayerChangeAdapter();
148 selectionChangeAdapter = new SelectionChangeAdapter();
149 Layer.listeners.add(layerChangeAdapter);
150 DataSet.selListeners.add(selectionChangeAdapter);
151 updateEnabledState();
152 }
153
154 /**
155 * This method is called when a layer change event or a selection update event
156 * occurs, see {@see LayerChangeListener} and {@see SelectionChangedListener}.
157 *
158 * The default implementation is empty. Subclasses can override the method
159 * in order to set the {@see #isEnabled()}-state of a JosmAction depending on
160 * the {@see #getCurrentDataSet()} and the current layers (see
161 * also {@see #getEditLayer()}).
162 *
163 */
164 protected void updateEnabledState() {
165 // override in subclasses
166 }
167
168 /**
169 * Adapter for layer change events
170 *
171 */
172 private class LayerChangeAdapter implements LayerChangeListener {
173 public void activeLayerChange(Layer oldLayer, Layer newLayer) {
174 updateEnabledState();
175 }
176
177 public void layerAdded(Layer newLayer) {
178 updateEnabledState();
179 }
180
181 public void layerRemoved(Layer oldLayer) {
182 updateEnabledState();
183 }
184 }
185
186 /**
187 * Adapter for selection change events
188 *
189 */
190 private class SelectionChangeAdapter implements SelectionChangedListener {
191 public void selectionChanged(Collection<? extends OsmPrimitive> newSelection) {
192 updateEnabledState();
193 }
194 }
195}
Note: See TracBrowser for help on using the repository browser.