source: osm/applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/MenuActionNewLocation.java@ 32556

Last change on this file since 32556 was 32556, checked in by donvip, 8 years ago

checkstyle

  • Property svn:eol-style set to native
File size: 8.2 KB
Line 
1// License: GPL. For details, see LICENSE file.
2package cadastre_fr;
3
4import static org.openstreetmap.josm.tools.I18n.tr;
5
6import java.awt.GridBagLayout;
7import java.awt.event.ActionEvent;
8import java.util.ArrayList;
9
10import javax.swing.JComboBox;
11import javax.swing.JLabel;
12import javax.swing.JOptionPane;
13import javax.swing.JPanel;
14import javax.swing.JTextField;
15
16import org.openstreetmap.josm.Main;
17import org.openstreetmap.josm.actions.JosmAction;
18import org.openstreetmap.josm.gui.layer.Layer;
19import org.openstreetmap.josm.tools.GBC;
20
21public class MenuActionNewLocation extends JosmAction {
22
23 private static final long serialVersionUID = 1L;
24
25 // CHECKSTYLE.OFF: LineLength
26 // CHECKSTYLE.OFF: SingleSpaceSeparator
27
28 private static final String[] departements = {
29 "", tr("(optional)"),
30 "001", "01 - Ain", "002", "02 - Aisne", "003", "03 - Allier", "004", "04 - Alpes de Haute-Provence", "005", "05 - Hautes-Alpes",
31 "006", "06 - Alpes-Maritimes", "007", "07 - Ard\u00eache", "008", "08 - Ardennes", "009", "09 - Ari\u00e8ge", "010", "10 - Aube",
32 "011", "11 - Aude", "012", "12 - Aveyron", "013", "13 - Bouches-du-Rh\u00f4ne", "014", "14 - Calvados", "015", "15 - Cantal",
33 "016", "16 - Charente", "017", "17 - Charente-Maritime", "018", "18 - Cher", "019", "19 - Corr\u00e8ze",
34 "02A", "2A - Corse-du-Sud", "02B", "2B - Haute-Corse",
35 "021", "21 - C\u00f4te-d'Or", "022", "22 - C\u00f4tes d'Armor", "023", "23 - Creuse", "024", "24 - Dordogne", "025", "25 - Doubs",
36 "026", "26 - Dr\u00f4me", "027", "27 - Eure", "028", "28 - Eure-et-Loir", "029", "29 - Finist\u00e8re", "030", "30 - Gard",
37 "031", "31 - Haute-Garonne", "032", "32 - Gers", "033", "33 - Gironde", "034", "34 - H\u00e9rault", "035", "35 - Ille-et-Vilaine",
38 "036", "36 - Indre", "037", "37 - Indre-et-Loire", "038", "38 - Is\u00e8re", "039", "39 - Jura", "040", "40 - Landes",
39 "041", "41 - Loir-et-Cher", "042", "42 - Loire", "043", "43 - Haute-Loire", "044", "44 - Loire-Atlantique", "045", "45 - Loiret",
40 "046", "46 - Lot", "047", "47 - Lot-et-Garonne", "048", "48 - Loz\u00e8re", "049", "49 - Maine-et-Loire", "050", "50 - Manche",
41 "051", "51 - Marne", "052", "52 - Haute-Marne", "053", "53 - Mayenne", "054", "54 - Meurthe-et-Moselle", "055", "55 - Meuse",
42 "056", "56 - Morbihan", "057", "57 - Moselle", "058", "58 - Ni\u00e8vre", "059", "59 - Nord", "060", "60 - Oise",
43 "061", "61 - Orne", "062", "62 - Pas-de-Calais", "063", "63 - Puy-de-D\u00f4me", "064", "64 - Pyr\u00e9n\u00e9es-Atlantiques", "065", "65 - Hautes-Pyr\u00e9n\u00e9es",
44 "066", "66 - Pyr\u00e9n\u00e9es-Orientales", "067", "67 - Bas-Rhin", "068", "68 - Haut-Rhin", "069", "69 - Rh\u00f4ne", "070", "70 - Haute-Sa\u00f4ne",
45 "071", "71 - Sa\u00f4ne-et-Loire", "072", "72 - Sarthe", "073", "73 - Savoie", "074", "74 - Haute-Savoie", "075", "75 - Paris",
46 "076", "76 - Seine-Maritime", "077", "77 - Seine-et-Marne", "078", "78 - Yvelines", "079", "79 - Deux-S\u00e8vres", "080", "80 - Somme",
47 "081", "81 - Tarn", "082", "82 - Tarn-et-Garonne", "083", "83 - Var", "084", "84 - Vaucluse", "085", "85 - Vend\u00e9e",
48 "086", "86 - Vienne", "087", "87 - Haute-Vienne", "088", "88 - Vosges", "089", "89 - Yonne", "090", "90 - Territoire de Belfort",
49 "091", "91 - Essonne", "092", "92 - Hauts-de-Seine", "093", "93 - Seine-Saint-Denis", "094", "94 - Val-de-Marne", "095", "95 - Val-d'Oise",
50 "971", "971 - Guadeloupe", "972", "972 - Martinique", "973", "973 - Guyane", "974", "974 - R\u00e9union"
51 };
52
53 // CHECKSTYLE.ON: SingleSpaceSeparator
54 // CHECKSTYLE.ON: LineLength
55
56 public MenuActionNewLocation() {
57 super(tr("Change location"), "cadastre_small", tr("Set a new location for the next request"), null, false,
58 "cadastrefr/newlocation", true);
59 }
60
61 @Override
62 public void actionPerformed(ActionEvent e) {
63 WMSLayer wmsLayer = addNewLayer(new ArrayList<WMSLayer>());
64 if (wmsLayer != null)
65 DownloadWMSVectorImage.download(wmsLayer);
66 }
67
68 public WMSLayer addNewLayer(ArrayList<WMSLayer> existingLayers) {
69 String location = "";
70 String codeDepartement = "";
71 String codeCommune = "";
72 JLabel labelSectionNewLocation = new JLabel(tr("Add a new municipality layer"));
73 JPanel p = new JPanel(new GridBagLayout());
74 JLabel labelLocation = new JLabel(tr("Commune"));
75 final JTextField inputTown = new JTextField(Main.pref.get("cadastrewms.location"));
76 inputTown.setToolTipText(tr("<html>Enter the town,village or city name.<br>"
77 + "Use the syntax and punctuation known by www.cadastre.gouv.fr .</html>"));
78 JLabel labelDepartement = new JLabel(tr("Departement"));
79 final JComboBox<String> inputDepartement = new JComboBox<>();
80 for (int i = 1; i < departements.length; i += 2) {
81 inputDepartement.addItem(departements[i]);
82 }
83 inputDepartement.setToolTipText(tr("<html>Departement number (optional)</html>"));
84 if (!Main.pref.get("cadastrewms.codeDepartement").equals("")) {
85 for (int i = 0; i < departements.length; i += 2) {
86 if (departements[i].equals(Main.pref.get("cadastrewms.codeDepartement")))
87 inputDepartement.setSelectedIndex(i/2);
88 }
89 }
90 p.add(labelSectionNewLocation, GBC.eol());
91 p.add(labelLocation, GBC.std().insets(10, 0, 0, 0));
92 p.add(inputTown, GBC.eol().fill(GBC.HORIZONTAL).insets(5, 0, 0, 5));
93 p.add(labelDepartement, GBC.std().insets(10, 0, 0, 0));
94 p.add(inputDepartement, GBC.eol().fill(GBC.HORIZONTAL).insets(5, 0, 0, 5));
95 JOptionPane pane = new JOptionPane(p, JOptionPane.INFORMATION_MESSAGE, JOptionPane.OK_CANCEL_OPTION, null) {
96 private static final long serialVersionUID = 1L;
97
98 @Override
99 public void selectInitialValue() {
100 inputTown.requestFocusInWindow();
101 inputTown.selectAll();
102 }
103 };
104 pane.createDialog(Main.parent, tr("Add new layer")).setVisible(true);
105 if (!Integer.valueOf(JOptionPane.OK_OPTION).equals(pane.getValue()))
106 return null;
107
108 WMSLayer wmsLayer = null;
109 if (!inputTown.getText().equals("")) {
110 location = inputTown.getText().toUpperCase();
111 codeDepartement = departements[inputDepartement.getSelectedIndex()*2];
112 Main.pref.put("cadastrewms.location", location);
113 Main.pref.put("cadastrewms.codeCommune", codeCommune);
114 Main.pref.put("cadastrewms.codeDepartement", codeDepartement);
115 if (Main.map != null) {
116 for (Layer l : Main.getLayerManager().getLayers()) {
117 if (l instanceof WMSLayer && l.getName().equalsIgnoreCase(location)) {
118 return null;
119 }
120 }
121 }
122 // add the layer if it doesn't exist
123 int zone = CadastrePlugin.getCadastreProjectionLayoutZone();
124 wmsLayer = new WMSLayer(location, codeCommune, zone);
125 wmsLayer.setDepartement(codeDepartement);
126 CadastrePlugin.addWMSLayer(wmsLayer);
127 Main.info("Add new layer with Location:" + inputTown.getText());
128 } else if (existingLayers != null && existingLayers.size() > 0 && Main.getLayerManager().getActiveLayer() instanceof WMSLayer) {
129 wmsLayer = (WMSLayer) Main.getLayerManager().getActiveLayer();
130 }
131
132 return wmsLayer;
133 }
134}
Note: See TracBrowser for help on using the repository browser.