1 | // License: GPL. Copyright 2007 by Immanuel Scholz and others
|
---|
2 | package org.openstreetmap.josm.actions;
|
---|
3 |
|
---|
4 | import static org.openstreetmap.josm.tools.I18n.tr;
|
---|
5 |
|
---|
6 | import java.util.Collection;
|
---|
7 |
|
---|
8 | import javax.swing.AbstractAction;
|
---|
9 |
|
---|
10 | import org.openstreetmap.josm.Main;
|
---|
11 | import org.openstreetmap.josm.data.SelectionChangedListener;
|
---|
12 | import org.openstreetmap.josm.data.osm.DataSet;
|
---|
13 | import org.openstreetmap.josm.data.osm.OsmPrimitive;
|
---|
14 | import org.openstreetmap.josm.gui.MapView;
|
---|
15 | import org.openstreetmap.josm.gui.layer.Layer;
|
---|
16 | import org.openstreetmap.josm.gui.layer.OsmDataLayer;
|
---|
17 | import org.openstreetmap.josm.tools.Destroyable;
|
---|
18 | import org.openstreetmap.josm.tools.ImageProvider;
|
---|
19 | import org.openstreetmap.josm.tools.Shortcut;
|
---|
20 |
|
---|
21 | /**
|
---|
22 | * Base class helper for all Actions in JOSM. Just to make the life easier.
|
---|
23 | *
|
---|
24 | * A JosmAction is a {@see LayerChangeListener} and a {@see SelectionChangedListener}. Upon
|
---|
25 | * a layer change event or a selection change event it invokes {@see #updateEnabled()}.
|
---|
26 | * Subclasses can override {@see #updateEnabled()} in order to update the {@see #isEnabled()}-state
|
---|
27 | * of a JosmAction depending on the {@see #getCurrentDataSet()} and the current layers
|
---|
28 | * (see also {@see #getEditLayer()}).
|
---|
29 | *
|
---|
30 | * destroy() from interface Destroyable is called e.g. for MapModes, when the last layer has
|
---|
31 | * been removed and so the mapframe will be destroyed. For other JosmActions, destroy() may never
|
---|
32 | * be called (currently).
|
---|
33 | *
|
---|
34 | * @author imi
|
---|
35 | */
|
---|
36 | abstract public class JosmAction extends AbstractAction implements Destroyable {
|
---|
37 |
|
---|
38 | protected Shortcut sc;
|
---|
39 | private LayerChangeAdapter layerChangeAdapter;
|
---|
40 | private SelectionChangeAdapter selectionChangeAdapter;
|
---|
41 |
|
---|
42 | public Shortcut getShortcut() {
|
---|
43 | if (sc == null) {
|
---|
44 | sc = Shortcut.registerShortcut("core:none", tr("No Shortcut"), 0, Shortcut.GROUP_NONE);
|
---|
45 | // as this shortcut is shared by all action that don't want to have a shortcut,
|
---|
46 | // we shouldn't allow the user to change it...
|
---|
47 | // this is handled by special name "core:none"
|
---|
48 | }
|
---|
49 | return sc;
|
---|
50 | }
|
---|
51 |
|
---|
52 | /**
|
---|
53 | * The new super for all actions.
|
---|
54 | *
|
---|
55 | * Use this super constructor to setup your action. It takes 5 parameters:
|
---|
56 | *
|
---|
57 | * @param name the action's text as displayed on the menu (if it is added to a menu)
|
---|
58 | * @param iconName the filename of the icon to use
|
---|
59 | * @param tooltip a longer description of the action that will be displayed in the tooltip. Please note
|
---|
60 | * that html is not supported for menu actions on some platforms.
|
---|
61 | * @param shortcut a ready-created shortcut object or null if you don't want a shortcut. But you always
|
---|
62 | * do want a shortcut, remember you can always register it with group=none, so you
|
---|
63 | * won't be assigned a shortcut unless the user configures one. If you pass null here,
|
---|
64 | * the user CANNOT configure a shortcut for your action.
|
---|
65 | * @param register register this action for the toolbar preferences?
|
---|
66 | */
|
---|
67 | public JosmAction(String name, String iconName, String tooltip, Shortcut shortcut, boolean register) {
|
---|
68 | this(name, iconName, tooltip, shortcut, register, true);
|
---|
69 | }
|
---|
70 |
|
---|
71 | /**
|
---|
72 | * Even newer super for all actions. Use if you don't want to install layer changed and selection changed adapters
|
---|
73 | * @param name
|
---|
74 | * @param iconName
|
---|
75 | * @param tooltip
|
---|
76 | * @param shortcut
|
---|
77 | * @param register
|
---|
78 | * @param installAdapters
|
---|
79 | */
|
---|
80 | public JosmAction(String name, String iconName, String tooltip, Shortcut shortcut, boolean register, boolean installAdapters) {
|
---|
81 | super(name, iconName == null ? null : ImageProvider.get(iconName));
|
---|
82 | setHelpId();
|
---|
83 | sc = shortcut;
|
---|
84 | if (sc != null) {
|
---|
85 | Main.registerActionShortcut(this, sc);
|
---|
86 | }
|
---|
87 | putValue(SHORT_DESCRIPTION, Main.platform.makeTooltip(tooltip, sc));
|
---|
88 | if (getValue("toolbar") == null) {
|
---|
89 | putValue("toolbar", iconName);
|
---|
90 | }
|
---|
91 | if (register) {
|
---|
92 | Main.toolbar.register(this);
|
---|
93 | }
|
---|
94 | if (installAdapters) {
|
---|
95 | installAdapters();
|
---|
96 | }
|
---|
97 | }
|
---|
98 |
|
---|
99 | public JosmAction() {
|
---|
100 | this(true);
|
---|
101 | }
|
---|
102 |
|
---|
103 | public JosmAction(boolean installAdapters) {
|
---|
104 | setHelpId();
|
---|
105 | if (installAdapters) {
|
---|
106 | installAdapters();
|
---|
107 | }
|
---|
108 | }
|
---|
109 |
|
---|
110 | public void destroy() {
|
---|
111 | if (sc != null) {
|
---|
112 | Main.unregisterActionShortcut(this);
|
---|
113 | }
|
---|
114 | MapView.removeLayerChangeListener(layerChangeAdapter);
|
---|
115 | DataSet.removeSelectionListener(selectionChangeAdapter);
|
---|
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 static 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 static DataSet getCurrentDataSet() {
|
---|
141 | return Main.main.getCurrentDataSet();
|
---|
142 | }
|
---|
143 |
|
---|
144 | protected void installAdapters() {
|
---|
145 | // make this action listen to layer change and selection change events
|
---|
146 | //
|
---|
147 | layerChangeAdapter = new LayerChangeAdapter();
|
---|
148 | selectionChangeAdapter = new SelectionChangeAdapter();
|
---|
149 | MapView.addLayerChangeListener(layerChangeAdapter);
|
---|
150 | DataSet.addSelectionListener(selectionChangeAdapter);
|
---|
151 | initEnabledState();
|
---|
152 | }
|
---|
153 |
|
---|
154 | /**
|
---|
155 | * Override in subclasses to init the enabled state of an action when it is
|
---|
156 | * created. Default behaviour is to call {@see #updateEnabledState()}
|
---|
157 | *
|
---|
158 | * @see #updateEnabledState()
|
---|
159 | * @see #updateEnabledState(Collection)
|
---|
160 | */
|
---|
161 | protected void initEnabledState() {
|
---|
162 | updateEnabledState();
|
---|
163 | }
|
---|
164 |
|
---|
165 | /**
|
---|
166 | * Override in subclasses to update the enabled state of the action when
|
---|
167 | * something in the JOSM state changes, i.e. when a layer is removed or added.
|
---|
168 | *
|
---|
169 | * See {@see #updateEnabledState(Collection)} to respond to changes in the collection
|
---|
170 | * of selected primitives.
|
---|
171 | *
|
---|
172 | * Default behavior is empty.
|
---|
173 | *
|
---|
174 | * @see #updateEnabledState(Collection)
|
---|
175 | * @see #initEnabledState()
|
---|
176 | */
|
---|
177 | protected void updateEnabledState() {
|
---|
178 | }
|
---|
179 |
|
---|
180 | /**
|
---|
181 | * Override in subclasses to update the enabled state of the action if the
|
---|
182 | * collection of selected primitives changes. This method is called with the
|
---|
183 | * new selection.
|
---|
184 | *
|
---|
185 | * @param selection the collection of selected primitives; may be empty, but not null
|
---|
186 | *
|
---|
187 | * @see #updateEnabledState()
|
---|
188 | * @see #initEnabledState()
|
---|
189 | */
|
---|
190 | protected void updateEnabledState(Collection<? extends OsmPrimitive> selection) {
|
---|
191 | }
|
---|
192 |
|
---|
193 | /**
|
---|
194 | * Adapter for layer change events
|
---|
195 | *
|
---|
196 | */
|
---|
197 | private class LayerChangeAdapter implements MapView.LayerChangeListener {
|
---|
198 | public void activeLayerChange(Layer oldLayer, Layer newLayer) {
|
---|
199 | updateEnabledState();
|
---|
200 | }
|
---|
201 |
|
---|
202 | public void layerAdded(Layer newLayer) {
|
---|
203 | updateEnabledState();
|
---|
204 | }
|
---|
205 |
|
---|
206 | public void layerRemoved(Layer oldLayer) {
|
---|
207 | updateEnabledState();
|
---|
208 | }
|
---|
209 | }
|
---|
210 |
|
---|
211 | /**
|
---|
212 | * Adapter for selection change events
|
---|
213 | *
|
---|
214 | */
|
---|
215 | private class SelectionChangeAdapter implements SelectionChangedListener {
|
---|
216 | public void selectionChanged(Collection<? extends OsmPrimitive> newSelection) {
|
---|
217 | updateEnabledState(newSelection);
|
---|
218 | }
|
---|
219 | }
|
---|
220 | }
|
---|