source: josm/trunk/src/org/openstreetmap/josm/actions/ToggleGPXLinesAction.java@ 2702

Last change on this file since 2702 was 2323, checked in by Gubaer, 14 years ago

Added explicit help topics
See also current list of help topics with links to source files and to help pages

File size: 1.0 KB
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.tools.Shortcut;
12
13public class ToggleGPXLinesAction extends JosmAction {
14
15 public ToggleGPXLinesAction() {
16 super(tr("Toggle GPX Lines"), "gps-lines", tr("Toggles the global setting ''{0}''.", tr("Draw lines between raw gps points.")),
17 Shortcut.registerShortcut("view:gpxlines", tr("View: {0}", tr("Toggle GPX Lines")), KeyEvent.VK_X, Shortcut.GROUP_MENU, Shortcut.SHIFT_DEFAULT), true);
18 putValue("help", ht("/Action/ToggleGPXLines"));
19 }
20
21 public void actionPerformed(ActionEvent e) {
22 Main.pref.put("draw.rawgps.lines", !Main.pref.getBoolean("draw.rawgps.lines"));
23 if(Main.map != null)
24 Main.map.mapView.repaint();
25 }
26}
Note: See TracBrowser for help on using the repository browser.