source: osm/applications/editors/josm/plugins/reltoolbox/src/relcontext/actions/DuplicateChosenRelationAction.java@ 34130

Last change on this file since 34130 was 33694, checked in by donvip, 8 years ago

fix #josm15320

File size: 1.6 KB
Line 
1// License: GPL. For details, see LICENSE file.
2package relcontext.actions;
3
4import static org.openstreetmap.josm.tools.I18n.tr;
5
6import java.awt.event.ActionEvent;
7
8import javax.swing.AbstractAction;
9
10import org.openstreetmap.josm.command.AddCommand;
11import org.openstreetmap.josm.data.osm.DataSet;
12import org.openstreetmap.josm.data.osm.Relation;
13import org.openstreetmap.josm.gui.MainApplication;
14import org.openstreetmap.josm.tools.ImageProvider;
15
16import relcontext.ChosenRelation;
17import relcontext.ChosenRelationListener;
18
19public class DuplicateChosenRelationAction extends AbstractAction implements ChosenRelationListener {
20 private final ChosenRelation rel;
21
22 public DuplicateChosenRelationAction(ChosenRelation rel) {
23 super(tr("Duplicate relation"));
24 putValue(SMALL_ICON, ImageProvider.get("duplicate"));
25 putValue(SHORT_DESCRIPTION, tr("Create a copy of this relation and open it in another editor window"));
26 this.rel = rel;
27 rel.addChosenRelationListener(this);
28 setEnabled(rel.get() != null);
29 }
30
31 @Override
32 public void actionPerformed(ActionEvent e) {
33 DataSet ds = MainApplication.getLayerManager().getEditDataSet();
34 if (ds != null) {
35 Relation r = rel.get();
36 Relation copy = new Relation(r, true);
37 MainApplication.undoRedo.add(new AddCommand(ds, copy));
38 rel.set(copy);
39 ds.setSelected(copy);
40 }
41 }
42
43 @Override
44 public void chosenRelationChanged(Relation oldRelation, Relation newRelation) {
45 setEnabled(newRelation != null);
46 }
47}
Note: See TracBrowser for help on using the repository browser.