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

Last change on this file since 1724 was 1502, checked in by stoecker, 15 years ago

fix #2282 - NPE

File size: 916 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;
5
6import java.awt.event.ActionEvent;
7import java.awt.event.KeyEvent;
8
9import org.openstreetmap.josm.Main;
10import org.openstreetmap.josm.tools.Shortcut;
11
12public class ToggleGPXLinesAction extends JosmAction {
13
14 public ToggleGPXLinesAction() {
15 super(tr("Toggle GPX Lines"), "gps-lines", tr("Toggles the global setting ''{0}''.", tr("Draw lines between raw gps points.")),
16 Shortcut.registerShortcut("view:gpxlines", tr("View: {0}", tr("Toggle GPX Lines")), KeyEvent.VK_X, Shortcut.GROUP_MENU, Shortcut.SHIFT_DEFAULT), true);
17 }
18
19 public void actionPerformed(ActionEvent e) {
20 Main.pref.put("draw.rawgps.lines", !Main.pref.getBoolean("draw.rawgps.lines"));
21 if(Main.map != null)
22 Main.map.mapView.repaint();
23 }
24}
Note: See TracBrowser for help on using the repository browser.