source: josm/trunk/src/org/openstreetmap/josm/actions/InfoAction.java @ 5241

Revision 4982, 1.6 KB checked in by stoecker, 3 months ago (diff)

see #7226 - patch by akks (fixed a bit) - fix shortcut deprecations

  • Property svn:eol-style set to native
Line 
1//License: GPL. Copyright 2007 by Immanuel Scholz and others
2package org.openstreetmap.josm.actions;
3
4import java.awt.event.ActionEvent;
5import static org.openstreetmap.josm.tools.I18n.tr;
6import static org.openstreetmap.josm.gui.help.HelpUtil.ht;
7
8import java.awt.event.KeyEvent;
9
10import java.util.Collection;
11import org.openstreetmap.josm.Main;
12import org.openstreetmap.josm.data.osm.DataSet;
13import org.openstreetmap.josm.data.osm.OsmPrimitive;
14import org.openstreetmap.josm.gui.dialogs.InspectPrimitiveDialog;
15import org.openstreetmap.josm.tools.Shortcut;
16
17public class InfoAction extends JosmAction {
18
19    public InfoAction() {
20        super(tr("Advanced info"), "about",
21            tr("Display advanced object information about OSM nodes, ways, or relations."),
22            Shortcut.registerShortcut("core:info",
23                tr("Advanced info"), KeyEvent.VK_I, Shortcut.CTRL),
24            true, "action/info", true);
25        putValue("help", ht("/Action/InfoAboutElements"));
26    }
27
28    @Override
29    public void actionPerformed(ActionEvent ae) {
30        DataSet set = getCurrentDataSet();
31                if (set != null) {
32                        new InspectPrimitiveDialog(set.getSelected(), Main.map.mapView.getEditLayer()).showDialog();
33                }
34    }
35
36    @Override
37    public void updateEnabledState() {
38        if (getCurrentDataSet() == null) {
39            setEnabled(false);
40        } else {
41            updateEnabledState(getCurrentDataSet().getSelected());
42        }
43    }
44
45    @Override
46    protected void updateEnabledState(Collection<? extends OsmPrimitive> selection) {
47        setEnabled(!selection.isEmpty());
48    }
49}
Note: See TracBrowser for help on using the repository browser.