source: josm/trunk/src/org/openstreetmap/josm/actions/DownloadAction.java@ 4851

Last change on this file since 4851 was 4191, checked in by stoecker, 13 years ago

remove old debug stuff

  • Property svn:eol-style set to native
File size: 2.2 KB
Line 
1// License: GPL. Copyright 2007 by Immanuel Scholz and others
2package org.openstreetmap.josm.actions;
3
4import static org.openstreetmap.josm.gui.help.HelpUtil.ht;
5import static org.openstreetmap.josm.tools.I18n.tr;
6
7import java.awt.event.ActionEvent;
8import java.awt.event.KeyEvent;
9import java.util.concurrent.Future;
10
11import org.openstreetmap.josm.Main;
12import org.openstreetmap.josm.actions.downloadtasks.DownloadGpsTask;
13import org.openstreetmap.josm.actions.downloadtasks.DownloadOsmTask;
14import org.openstreetmap.josm.actions.downloadtasks.PostDownloadHandler;
15import org.openstreetmap.josm.data.Bounds;
16import org.openstreetmap.josm.gui.download.DownloadDialog;
17import org.openstreetmap.josm.tools.Shortcut;
18
19/**
20 * Action that opens a connection to the osm server and downloads map data.
21 *
22 * An dialog is displayed asking the user to specify a rectangle to grab.
23 * The url and account settings from the preferences are used.
24 *
25 * @author imi
26 */
27public class DownloadAction extends JosmAction {
28 public DownloadAction() {
29 super(tr("Download from OSM..."), "download", tr("Download map data from the OSM server."),
30 Shortcut.registerShortcut("file:download", tr("File: {0}", tr("Download from OSM...")), KeyEvent.VK_D, Shortcut.GROUPS_ALT1+Shortcut.GROUP_HOTKEY), true);
31 putValue("help", ht("/Action/Download"));
32 }
33
34 public void actionPerformed(ActionEvent e) {
35 DownloadDialog dialog = DownloadDialog.getInstance();
36 dialog.restoreSettings();
37 dialog.setVisible(true);
38 if (! dialog.isCanceled()) {
39 dialog.rememberSettings();
40 Bounds area = dialog.getSelectedDownloadArea();
41 if (dialog.isDownloadOsmData()) {
42 DownloadOsmTask task = new DownloadOsmTask();
43 Future<?> future = task.download(dialog.isNewLayerRequired(), area, null);
44 Main.worker.submit(new PostDownloadHandler(task, future));
45 }
46 if (dialog.isDownloadGpxData()) {
47 DownloadGpsTask task = new DownloadGpsTask();
48 Future<?> future = task.download(dialog.isNewLayerRequired(),area, null);
49 Main.worker.submit(new PostDownloadHandler(task, future));
50 }
51 }
52 }
53}
Note: See TracBrowser for help on using the repository browser.