| 1 | // License: GPL. Copyright 2007 by Immanuel Scholz and others |
|---|
| 2 | package org.openstreetmap.josm.actions; |
|---|
| 3 | |
|---|
| 4 | import static org.openstreetmap.josm.gui.help.HelpUtil.ht; |
|---|
| 5 | import static org.openstreetmap.josm.tools.I18n.tr; |
|---|
| 6 | |
|---|
| 7 | import java.awt.event.ActionEvent; |
|---|
| 8 | import java.awt.event.KeyEvent; |
|---|
| 9 | import java.util.concurrent.Future; |
|---|
| 10 | |
|---|
| 11 | import org.openstreetmap.josm.Main; |
|---|
| 12 | import org.openstreetmap.josm.actions.downloadtasks.DownloadGpsTask; |
|---|
| 13 | import org.openstreetmap.josm.actions.downloadtasks.DownloadOsmTask; |
|---|
| 14 | import org.openstreetmap.josm.actions.downloadtasks.PostDownloadHandler; |
|---|
| 15 | import org.openstreetmap.josm.data.Bounds; |
|---|
| 16 | import org.openstreetmap.josm.gui.download.DownloadDialog; |
|---|
| 17 | import 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 | */ |
|---|
| 27 | public 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_DOWN, Shortcut.CTRL_SHIFT), 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 | } |
|---|