source: josm/trunk/src/org/openstreetmap/josm/actions/NewAction.java@ 3775

Last change on this file since 3775 was 3753, checked in by stoecker, 13 years ago

fix help topics

  • Property svn:eol-style set to native
File size: 952 bytes
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;
5import static org.openstreetmap.josm.gui.help.HelpUtil.ht;
6
7import java.awt.event.ActionEvent;
8import java.awt.event.KeyEvent;
9
10import org.openstreetmap.josm.Main;
11import org.openstreetmap.josm.data.osm.DataSet;
12import org.openstreetmap.josm.gui.layer.OsmDataLayer;
13import org.openstreetmap.josm.tools.Shortcut;
14
15public class NewAction extends JosmAction {
16
17 public NewAction() {
18 super(tr("New Layer"), "new", tr("Create a new map layer."),
19 Shortcut.registerShortcut("system:new", tr("File: {0}", tr("New Layer")), KeyEvent.VK_N, Shortcut.GROUP_MENU), true);
20 putValue("help", ht("/Action/NewLayer"));
21 }
22
23 public void actionPerformed(ActionEvent e) {
24 Main.main.addLayer(new OsmDataLayer(new DataSet(), OsmDataLayer.createNewName(), null));
25 }
26}
Note: See TracBrowser for help on using the repository browser.