| 1 | //License: GPL. Copyright 2007 by Immanuel Scholz and others |
|---|
| 2 | package org.openstreetmap.josm.actions; |
|---|
| 3 | |
|---|
| 4 | import java.awt.event.ActionEvent; |
|---|
| 5 | import java.awt.event.KeyEvent; |
|---|
| 6 | import java.util.Collection; |
|---|
| 7 | |
|---|
| 8 | import org.openstreetmap.josm.Main; |
|---|
| 9 | import org.openstreetmap.josm.data.osm.DataSet; |
|---|
| 10 | import org.openstreetmap.josm.data.osm.OsmPrimitive; |
|---|
| 11 | import org.openstreetmap.josm.gui.history.HistoryBrowserDialogManager; |
|---|
| 12 | import org.openstreetmap.josm.tools.Shortcut; |
|---|
| 13 | |
|---|
| 14 | import static org.openstreetmap.josm.tools.I18n.tr; |
|---|
| 15 | import static org.openstreetmap.josm.gui.help.HelpUtil.ht; |
|---|
| 16 | |
|---|
| 17 | public class HistoryInfoAction extends JosmAction { |
|---|
| 18 | |
|---|
| 19 | public HistoryInfoAction() { |
|---|
| 20 | super(tr("History"), "about", |
|---|
| 21 | tr("Display history information about OSM ways, nodes, or relations."), |
|---|
| 22 | Shortcut.registerShortcut("core:historyinfo", |
|---|
| 23 | tr("History"), KeyEvent.VK_H, Shortcut.CTRL), false); |
|---|
| 24 | putValue("help", ht("/Action/ObjectHistory")); |
|---|
| 25 | putValue("toolbar", "action/historyinfo"); |
|---|
| 26 | Main.toolbar.register(this); |
|---|
| 27 | } |
|---|
| 28 | |
|---|
| 29 | @Override |
|---|
| 30 | public void actionPerformed(ActionEvent ae) { |
|---|
| 31 | DataSet set = getCurrentDataSet(); |
|---|
| 32 | if (set != null) { |
|---|
| 33 | HistoryBrowserDialogManager.getInstance().showHistory(set.getSelected()); |
|---|
| 34 | } |
|---|
| 35 | } |
|---|
| 36 | |
|---|
| 37 | @Override |
|---|
| 38 | public void updateEnabledState() { |
|---|
| 39 | if (getCurrentDataSet() == null) { |
|---|
| 40 | setEnabled(false); |
|---|
| 41 | } else { |
|---|
| 42 | updateEnabledState(getCurrentDataSet().getSelected()); |
|---|
| 43 | } |
|---|
| 44 | } |
|---|
| 45 | |
|---|
| 46 | @Override |
|---|
| 47 | protected void updateEnabledState(Collection<? extends OsmPrimitive> selection) { |
|---|
| 48 | setEnabled(!selection.isEmpty()); |
|---|
| 49 | } |
|---|
| 50 | } |
|---|