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

Last change on this file since 6037 was 5460, checked in by Don-vip, 12 years ago

global use of Main.isDisplayingMapView()

  • Property svn:eol-style set to native
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.SHIFT), 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", true));
23 if (Main.isDisplayingMapView()) {
24 Main.map.mapView.repaint();
25 }
26 }
27}
Note: See TracBrowser for help on using the repository browser.