| 1 | // License: GPL. v2 and later. Copyright 2008-2009 by Pieren <pieren3@gmail.com> and others
|
|---|
| 2 | package cadastre_fr;
|
|---|
| 3 |
|
|---|
| 4 | import static org.openstreetmap.josm.gui.help.HelpUtil.ht;
|
|---|
| 5 | import static org.openstreetmap.josm.tools.I18n.marktr;
|
|---|
| 6 | import static org.openstreetmap.josm.tools.I18n.tr;
|
|---|
| 7 |
|
|---|
| 8 | import java.awt.event.ActionEvent;
|
|---|
| 9 | import java.awt.event.ActionListener;
|
|---|
| 10 | import java.awt.event.KeyEvent;
|
|---|
| 11 |
|
|---|
| 12 | import javax.swing.JCheckBoxMenuItem;
|
|---|
| 13 | import javax.swing.JDialog;
|
|---|
| 14 | import javax.swing.JMenu;
|
|---|
| 15 | import javax.swing.JMenuItem;
|
|---|
| 16 | import javax.swing.JOptionPane;
|
|---|
| 17 | import javax.swing.KeyStroke;
|
|---|
| 18 |
|
|---|
| 19 | import org.openstreetmap.josm.Main;
|
|---|
| 20 | import org.openstreetmap.josm.actions.JosmAction;
|
|---|
| 21 | import org.openstreetmap.josm.actions.UploadAction;
|
|---|
| 22 | import org.openstreetmap.josm.gui.MainMenu;
|
|---|
| 23 | import org.openstreetmap.josm.gui.MapFrame;
|
|---|
| 24 | import org.openstreetmap.josm.gui.IconToggleButton;
|
|---|
| 25 | import org.openstreetmap.josm.gui.layer.Layer;
|
|---|
| 26 | import org.openstreetmap.josm.gui.preferences.PreferenceSetting;
|
|---|
| 27 | import org.openstreetmap.josm.plugins.Plugin;
|
|---|
| 28 | import org.openstreetmap.josm.plugins.PluginInformation;
|
|---|
| 29 | import org.openstreetmap.josm.data.projection.*;
|
|---|
| 30 |
|
|---|
| 31 | /**
|
|---|
| 32 | *
|
|---|
| 33 | * Plugin to access the French Cadastre WMS server at www.cadastre.gouv.fr This
|
|---|
| 34 | * WMS server requires some specific handling like retrieving a cookie for a
|
|---|
| 35 | * limitation in case of no activity, or the request to the server shall provide
|
|---|
| 36 | * a city/town/village code.
|
|---|
| 37 | *
|
|---|
| 38 | * @author Pieren <pieren3@gmail.com>,
|
|---|
| 39 | * @author <matthieu.lochegnies@gmail.com> for the extension to codeCommune
|
|---|
| 40 | * @version 0.8
|
|---|
| 41 | * History:
|
|---|
| 42 | * 0.1 17-Jun-2008 first prototype using a first Lambert projection impl. in core
|
|---|
| 43 | * 0.2 22-Jun-2008 first stable version
|
|---|
| 44 | * 0.3 24-Jun-2008 add code departement
|
|---|
| 45 | * 0.4 06-Jul-2008 - add images scales, icons, menu items disabling
|
|---|
| 46 | * - remove dependencies of wmsplugin
|
|---|
| 47 | * - add option to force a Lambert zone (for median locations)
|
|---|
| 48 | * - add auto-sourcing
|
|---|
| 49 | * 0.5 16-Aug-2008 - add transparency in layer (allowing multiple wms layers displayed together)
|
|---|
| 50 | * - no overlapping of grabbed images if transparency is enabled
|
|---|
| 51 | * - set one layer per location
|
|---|
| 52 | * - use utf-8 charset in POST request to server
|
|---|
| 53 | * - improve the preferences setting dialog
|
|---|
| 54 | * - cancel the current download is now possible
|
|---|
| 55 | * - add automatic images caching and load on request (+ manage cache directory size)
|
|---|
| 56 | * - enable auto-sourcing only if a WMS layer is used
|
|---|
| 57 | * 0.6 18-Aug-2008 - suppress the null-exception message after the dialog 'open a layer first'
|
|---|
| 58 | * - process the overlapping images when cache is loaded from disk
|
|---|
| 59 | * - save the last 'new location request' text again in preferences
|
|---|
| 60 | * - avoid duplicate layers with same name
|
|---|
| 61 | * - set text input for new locations in upper case
|
|---|
| 62 | * - the cache directory is configurable in "cadastrewms.cacheDir"
|
|---|
| 63 | * - improve configuration change updates
|
|---|
| 64 | * 0.7 24-Aug-2008 - mask images only if transparency enabled
|
|---|
| 65 | * - validate projection name by Lambert.toString() method
|
|---|
| 66 | * 0.8 25-Jan-2009 - display returned list of communes if direct name is not recognized by server
|
|---|
| 67 | * - new possible grab factor of 100 square meters fixed size
|
|---|
| 68 | * - minor fixes due to changes in JOSM core classes
|
|---|
| 69 | * - first draft of raster image support
|
|---|
| 70 | * 0.9 05-Feb-2009 - grab vectorized full commune bbox, save in file, convert to OSM way
|
|---|
| 71 | * and simplify
|
|---|
| 72 | * 1.0 18-Feb-2009 - fix various bugs in color management and preference dialog
|
|---|
| 73 | * - increase PNG picture size requested to WMS (800x1000)
|
|---|
| 74 | * - set 4th grab scale fixed size configurable (from 25 to 1000 meters)
|
|---|
| 75 | * 1.1 11-Jun-2009 - fixed a null exception error when trying to displace a vectorized layer
|
|---|
| 76 | * - propose to use shortcut F11 for grabbing
|
|---|
| 77 | * 1.2 16-Aug-2009 - implementation of raster image grabbing, cropping and georeferencing (not the
|
|---|
| 78 | * overview rasters (Tableau d'assemblage) but directly small units (Feuille)
|
|---|
| 79 | * 1.3 23-Aug-2009 - improve georeferencing action cancellation
|
|---|
| 80 | * - fixed bug of raster image loaded from cache not working on Java1.6
|
|---|
| 81 | * - improve mouse click bounce detection during georeferencing process
|
|---|
| 82 | * 1.4 25-Oct-2009 - add support for new Lambert CC 9 Zones projection
|
|---|
| 83 | * - add optional crosspieces display on raster image layers
|
|---|
| 84 | * - add automatic raster images georeferencing when WMS provides data
|
|---|
| 85 | * - re-implement manual adjustment mode in raster image layer
|
|---|
| 86 | * 1.5 21-Nov-2009 - major changes in projection in core : no magical zone prediction anymore for
|
|---|
| 87 | * Lambert 4 and 9 zones; grid translation implemented for Lambert 4 zones;
|
|---|
| 88 | * support of subprojections in preferences for zones setting and UTM20N
|
|---|
| 89 | * - removed autosourcing of empty new nodes
|
|---|
| 90 | * 1.6 28-Nov-2009 - Fix minor issues if Grab is called without layer (possible since projection rework)
|
|---|
| 91 | * 1.7 12-Dec-2009 - Change URL's changes for cookie and downgrade imgs resolution due to WMS changes
|
|---|
| 92 | * 1.8 11-Mar-2010 - filter the mouse button 1 during georeferencing
|
|---|
| 93 | * - retry if getting a new cookie failed (10 times during 30 seconds)
|
|---|
| 94 | * - cookie expiration automatically detected and renewed (after 30 minutes)
|
|---|
| 95 | * - proper WMS layer cleanup at destruction (workaround for memory leak)
|
|---|
| 96 | * - new cache format (v3) storing original image and cropped image bbox + angle
|
|---|
| 97 | * - new cache format (v4) storing original image size for later rotation
|
|---|
| 98 | * - cache files read compatible with previous formats
|
|---|
| 99 | * - raster image rotation issues fixed, now using shift+ctrl key instead of ctrl
|
|---|
| 100 | * - raster image adjustment using default system menu modifier (ctrl for windows) for Mac support
|
|---|
| 101 | * - image resolution configurable (high, medium, low) like the online interface
|
|---|
| 102 | * - layer selection configurable for vectorized images
|
|---|
| 103 | * - improved download cancellation
|
|---|
| 104 | * - from Erik Amzallag:
|
|---|
| 105 | * - possibility to modify the auto-sourcing text just before upload
|
|---|
| 106 | * - from Clément Ménier:
|
|---|
| 107 | * - new option allowing an auto-selection of the first cadastre layer for grab
|
|---|
| 108 | * - non-modal JDialog in MenuActionGrabPlanImage
|
|---|
| 109 | * - new options in the image filter (bilinear, bicubic)
|
|---|
| 110 | */
|
|---|
| 111 | public class CadastrePlugin extends Plugin {
|
|---|
| 112 | static String VERSION = "1.8";
|
|---|
| 113 |
|
|---|
| 114 | static JMenu cadastreJMenu;
|
|---|
| 115 |
|
|---|
| 116 | public static CadastreGrabber cadastreGrabber = new CadastreGrabber();
|
|---|
| 117 |
|
|---|
| 118 | public static String source = "";
|
|---|
| 119 |
|
|---|
| 120 | // true if the checkbox "auto-sourcing" is set in the plugin menu
|
|---|
| 121 | public static boolean autoSourcing = false;
|
|---|
| 122 |
|
|---|
| 123 | // true when the plugin is first used, e.g. grab from WMS or download cache file
|
|---|
| 124 | public static boolean pluginUsed = false;
|
|---|
| 125 |
|
|---|
| 126 | public static String cacheDir = null;
|
|---|
| 127 |
|
|---|
| 128 | public static boolean alterColors = false;
|
|---|
| 129 |
|
|---|
| 130 | public static boolean backgroundTransparent = false;
|
|---|
| 131 |
|
|---|
| 132 | public static float transparency = 1.0f;
|
|---|
| 133 |
|
|---|
| 134 | public static boolean drawBoundaries = false;
|
|---|
| 135 |
|
|---|
| 136 | public static int imageWidth, imageHeight;
|
|---|
| 137 |
|
|---|
| 138 | public static String grabLayers, grabStyles = null;
|
|---|
| 139 |
|
|---|
| 140 | static private boolean menuEnabled = false;
|
|---|
| 141 |
|
|---|
| 142 | /**
|
|---|
| 143 | * Creates the plugin and setup the default settings if necessary
|
|---|
| 144 | *
|
|---|
| 145 | * @throws Exception
|
|---|
| 146 | */
|
|---|
| 147 | public CadastrePlugin(PluginInformation info) throws Exception {
|
|---|
| 148 | super(info);
|
|---|
| 149 | System.out.println("Pluging cadastre-fr v"+VERSION+" started...");
|
|---|
| 150 | if (Main.pref.get("cadastrewms.cacheDir").equals(""))
|
|---|
| 151 | cacheDir = Main.pref.getPreferencesDir()+"plugins/cadastrewms/";
|
|---|
| 152 | else {
|
|---|
| 153 | cacheDir = Main.pref.get("cadastrewms.cacheDir");
|
|---|
| 154 | if (cacheDir.charAt(cacheDir.length()-1) != '\\' )
|
|---|
| 155 | cacheDir += '\\';
|
|---|
| 156 | }
|
|---|
| 157 | System.out.println("current cache directory: "+cacheDir);
|
|---|
| 158 |
|
|---|
| 159 | refreshConfiguration();
|
|---|
| 160 |
|
|---|
| 161 | UploadAction.registerUploadHook(new CheckSourceUploadHook());
|
|---|
| 162 |
|
|---|
| 163 | }
|
|---|
| 164 |
|
|---|
| 165 | public static void refreshMenu() {
|
|---|
| 166 | MainMenu menu = Main.main.menu;
|
|---|
| 167 |
|
|---|
| 168 | if (cadastreJMenu == null) {
|
|---|
| 169 | cadastreJMenu = menu.addMenu(marktr("Cadastre"), KeyEvent.VK_C, menu.defaultMenuPos, ht("/Plugin/CadastreFr"));
|
|---|
| 170 | JosmAction grab = new MenuActionGrab();
|
|---|
| 171 | JMenuItem menuGrab = new JMenuItem(grab);
|
|---|
| 172 | KeyStroke ks = grab.getShortcut().getKeyStroke();
|
|---|
| 173 | if (ks != null) {
|
|---|
| 174 | menuGrab.setAccelerator(ks);
|
|---|
| 175 | }
|
|---|
| 176 | JMenuItem menuActionGrabPlanImage = new JMenuItem(new MenuActionGrabPlanImage());
|
|---|
| 177 | JMenuItem menuSettings = new JMenuItem(new MenuActionNewLocation());
|
|---|
| 178 | final JCheckBoxMenuItem menuSource = new JCheckBoxMenuItem(tr("Auto sourcing"));
|
|---|
| 179 | menuSource.setSelected(autoSourcing);
|
|---|
| 180 | menuSource.addActionListener(new ActionListener() {
|
|---|
| 181 | public void actionPerformed(ActionEvent ev) {
|
|---|
| 182 | Main.pref.put("cadastrewms.autosourcing", menuSource.isSelected());
|
|---|
| 183 | autoSourcing = menuSource.isSelected();
|
|---|
| 184 | }
|
|---|
| 185 | });
|
|---|
| 186 |
|
|---|
| 187 | //JMenuItem menuResetCookie = new JMenuItem(new MenuActionResetCookie());
|
|---|
| 188 | //JMenuItem menuLambertZone = new JMenuItem(new MenuActionLambertZone());
|
|---|
| 189 | JMenuItem menuLoadFromCache = new JMenuItem(new MenuActionLoadFromCache());
|
|---|
| 190 | // temporary disabled:
|
|---|
| 191 | //JMenuItem menuActionBoundaries = new JMenuItem(new MenuActionBoundaries());
|
|---|
| 192 | JMenuItem menuActionBuildings = new JMenuItem(new MenuActionBuildings());
|
|---|
| 193 |
|
|---|
| 194 | cadastreJMenu.add(menuGrab);
|
|---|
| 195 | cadastreJMenu.add(menuActionGrabPlanImage);
|
|---|
| 196 | cadastreJMenu.add(menuSettings);
|
|---|
| 197 | cadastreJMenu.add(menuSource);
|
|---|
| 198 | //cadastreJMenu.add(menuResetCookie); not required any more
|
|---|
| 199 | //cadastreJMenu.add(menuLambertZone);
|
|---|
| 200 | if (Main.pref.getBoolean("cadastrewms.buildingsMenu", false))
|
|---|
| 201 | cadastreJMenu.add(menuActionBuildings);
|
|---|
| 202 | cadastreJMenu.add(menuLoadFromCache);
|
|---|
| 203 | // all SVG features disabled until official WMS is released
|
|---|
| 204 | //cadastreJMenu.add(menuActionBoundaries);
|
|---|
| 205 | }
|
|---|
| 206 | setEnabledAll(menuEnabled);
|
|---|
| 207 | }
|
|---|
| 208 |
|
|---|
| 209 | public static void refreshConfiguration() {
|
|---|
| 210 | source = checkSourceMillesime();
|
|---|
| 211 | autoSourcing = Main.pref.getBoolean("cadastrewms.autosourcing", true);
|
|---|
| 212 | alterColors = Main.pref.getBoolean("cadastrewms.alterColors");
|
|---|
| 213 | drawBoundaries = Main.pref.getBoolean("cadastrewms.drawBoundaries", false);
|
|---|
| 214 | if (alterColors) {
|
|---|
| 215 | backgroundTransparent = Main.pref.getBoolean("cadastrewms.backgroundTransparent");
|
|---|
| 216 | transparency = Float.parseFloat(Main.pref.get("cadastrewms.brightness", "1.0f"));
|
|---|
| 217 | } else {
|
|---|
| 218 | backgroundTransparent = false;
|
|---|
| 219 | transparency = 1.0f;
|
|---|
| 220 | }
|
|---|
| 221 | String currentResolution = Main.pref.get("cadastrewms.resolution", "high");
|
|---|
| 222 | if (currentResolution.equals("high")) {
|
|---|
| 223 | imageWidth = 1000; imageHeight = 800;
|
|---|
| 224 | } else if (currentResolution.equals("medium")){
|
|---|
| 225 | imageWidth = 800; imageHeight = 600;
|
|---|
| 226 | } else {
|
|---|
| 227 | imageWidth = 600; imageHeight = 400;
|
|---|
| 228 | }
|
|---|
| 229 | refreshLayersURL();
|
|---|
| 230 |
|
|---|
| 231 | // overwrite F11 shortcut used from the beginning by this plugin and recently used
|
|---|
| 232 | // for full-screen switch in JOSM core
|
|---|
| 233 | int i = 0;
|
|---|
| 234 | String p = Main.pref.get("shortcut.shortcut."+i, null);
|
|---|
| 235 | boolean alreadyRedefined = false;
|
|---|
| 236 | while (p != null) {
|
|---|
| 237 | String[] s = p.split(";");
|
|---|
| 238 | alreadyRedefined = alreadyRedefined || s[0].equals("menu:view:fullscreen");
|
|---|
| 239 | i++;
|
|---|
| 240 | p = Main.pref.get("shortcut.shortcut."+i, null);
|
|---|
| 241 | }
|
|---|
| 242 | if (!alreadyRedefined) {
|
|---|
| 243 | int reply = JOptionPane.showConfirmDialog(null,
|
|---|
| 244 | tr("Plugin cadastre-fr used traditionaly for grabbing the key shortcut F11\n"+
|
|---|
| 245 | "which is currently allocated for full-screen switch by default\n"+
|
|---|
| 246 | "Would you like to restore F11 for grab action ?"),
|
|---|
| 247 | tr("Restore grab shortcut F11"),
|
|---|
| 248 | JOptionPane.YES_NO_OPTION);
|
|---|
| 249 | if (reply == JOptionPane.OK_OPTION) {
|
|---|
| 250 | System.out.println("redefine fullscreen shortcut F11 to shift+F11");
|
|---|
| 251 | Main.pref.put("shortcut.shortcut."+i, "menu:view:fullscreen;Toggle Full Screen view;122;5;122;64;false;true");
|
|---|
| 252 | JOptionPane.showMessageDialog(Main.parent,tr("JOSM is stopped for the change to take effect."));
|
|---|
| 253 | System.exit(0);
|
|---|
| 254 | }
|
|---|
| 255 | } else
|
|---|
| 256 | System.out.println("shortcut F11 already redefined; do not change");
|
|---|
| 257 |
|
|---|
| 258 | refreshMenu();
|
|---|
| 259 | }
|
|---|
| 260 |
|
|---|
| 261 | private static void refreshLayersURL() {
|
|---|
| 262 | grabLayers = "";
|
|---|
| 263 | grabStyles = "";
|
|---|
| 264 | if (Main.pref.getBoolean("cadastrewms.layerWater", true)) {
|
|---|
| 265 | grabLayers += "CDIF:LS3,";
|
|---|
| 266 | grabStyles += "LS3_90,";
|
|---|
| 267 | }
|
|---|
| 268 | if (Main.pref.getBoolean("cadastrewms.layerBuilding", true)) {
|
|---|
| 269 | grabLayers += "CDIF:LS2,";
|
|---|
| 270 | grabStyles += "LS2_90,";
|
|---|
| 271 | }
|
|---|
| 272 | if (Main.pref.getBoolean("cadastrewms.layerSymbol", true)) {
|
|---|
| 273 | grabLayers += "CDIF:LS1,";
|
|---|
| 274 | grabStyles += "LS1_90,";
|
|---|
| 275 | }
|
|---|
| 276 | if (Main.pref.getBoolean("cadastrewms.layerParcel", true)) {
|
|---|
| 277 | grabLayers += "CDIF:PARCELLE,";
|
|---|
| 278 | grabStyles += "PARCELLE_90,";
|
|---|
| 279 | }
|
|---|
| 280 | if (Main.pref.getBoolean("cadastrewms.layerNumero", true)) {
|
|---|
| 281 | grabLayers += "CDIF:NUMERO,";
|
|---|
| 282 | grabStyles += "NUMERO_90,";
|
|---|
| 283 | }
|
|---|
| 284 | if (Main.pref.getBoolean("cadastrewms.layerLabel", true)) {
|
|---|
| 285 | grabLayers += "CDIF:PT3,CDIF:PT2,CDIF:PT1,";
|
|---|
| 286 | grabStyles += "PT3_90,PT2_90,PT1_90,";
|
|---|
| 287 | }
|
|---|
| 288 | if (Main.pref.getBoolean("cadastrewms.layerLieudit", true)) {
|
|---|
| 289 | grabLayers += "CDIF:LIEUDIT,";
|
|---|
| 290 | grabStyles += "LIEUDIT_90,";
|
|---|
| 291 | }
|
|---|
| 292 | if (Main.pref.getBoolean("cadastrewms.layerSection", true)) {
|
|---|
| 293 | grabLayers += "CDIF:SUBSECTION,CDIF:SECTION,";
|
|---|
| 294 | grabStyles += "SUBSECTION_90,SECTION_90,";
|
|---|
| 295 | }
|
|---|
| 296 | if (Main.pref.getBoolean("cadastrewms.layerCommune", true)) {
|
|---|
| 297 | grabLayers += "CDIF:COMMUNE,";
|
|---|
| 298 | grabStyles += "COMMUNE_90,";
|
|---|
| 299 | }
|
|---|
| 300 | if (grabLayers.length() > 0) { // remove the last ','
|
|---|
| 301 | grabLayers = grabLayers.substring(0, grabLayers.length()-1);
|
|---|
| 302 | grabStyles = grabStyles.substring(0, grabStyles.length()-1);
|
|---|
| 303 | }
|
|---|
| 304 | }
|
|---|
| 305 |
|
|---|
| 306 | @Override
|
|---|
| 307 | public PreferenceSetting getPreferenceSetting() {
|
|---|
| 308 | return new CadastrePreferenceSetting();
|
|---|
| 309 | }
|
|---|
| 310 |
|
|---|
| 311 | private static void setEnabledAll(boolean isEnabled) {
|
|---|
| 312 | for (int i = 0; i < cadastreJMenu.getItemCount(); i++) {
|
|---|
| 313 | JMenuItem item = cadastreJMenu.getItem(i);
|
|---|
| 314 | if (item != null)
|
|---|
| 315 | if (item.getText().equals(MenuActionGrabPlanImage.name) /*||
|
|---|
| 316 | item.getText().equals(MenuActionGrab.name) ||
|
|---|
| 317 | item.getText().equals(MenuActionBoundaries.name) ||
|
|---|
| 318 | item.getText().equals(MenuActionBuildings.name)*/) {
|
|---|
| 319 | item.setEnabled(isEnabled);
|
|---|
| 320 | }
|
|---|
| 321 | }
|
|---|
| 322 | menuEnabled = isEnabled;
|
|---|
| 323 | }
|
|---|
| 324 |
|
|---|
| 325 | public void mapFrameInitialized(MapFrame oldFrame, MapFrame newFrame) {
|
|---|
| 326 | if (cadastreJMenu != null) {
|
|---|
| 327 | if (oldFrame == null && newFrame != null) {
|
|---|
| 328 | setEnabledAll(true);
|
|---|
| 329 | Main.map.addMapMode(new IconToggleButton
|
|---|
| 330 | (new WMSAdjustAction(Main.map)));
|
|---|
| 331 | Main.map.addMapMode(new IconToggleButton
|
|---|
| 332 | (new Buildings(Main.map)));
|
|---|
| 333 | } else if (oldFrame != null && newFrame == null) {
|
|---|
| 334 | setEnabledAll(false);
|
|---|
| 335 | //Lambert.layoutZone = -1;
|
|---|
| 336 | //LambertCC9Zones.layoutZone = -1;
|
|---|
| 337 | }
|
|---|
| 338 | }
|
|---|
| 339 | }
|
|---|
| 340 |
|
|---|
| 341 | public static boolean isCadastreProjection() {
|
|---|
| 342 | return Main.proj.toString().equals(new Lambert().toString())
|
|---|
| 343 | || Main.proj.toString().equals(new UTM_20N_France_DOM().toString())
|
|---|
| 344 | || Main.proj.toString().equals(new GaussLaborde_Reunion().toString())
|
|---|
| 345 | || Main.proj.toString().equals(new LambertCC9Zones().toString());
|
|---|
| 346 | }
|
|---|
| 347 |
|
|---|
| 348 | public static void safeSleep(long milliseconds) {
|
|---|
| 349 | try {
|
|---|
| 350 | Thread.sleep(milliseconds);
|
|---|
| 351 | } catch (InterruptedException e) {}
|
|---|
| 352 | }
|
|---|
| 353 |
|
|---|
| 354 | // See OptionPaneUtil
|
|---|
| 355 | // FIXME: this is a temporary solution.
|
|---|
| 356 | public static void prepareDialog(JDialog dialog) {
|
|---|
| 357 | if (Main.pref.getBoolean("window-handling.option-pane-always-on-top", true)) {
|
|---|
| 358 | try {
|
|---|
| 359 | dialog.setAlwaysOnTop(true);
|
|---|
| 360 | } catch(SecurityException e) {
|
|---|
| 361 | System.out.println(tr("Warning: failed to put option pane dialog always on top. Exception was: {0}", e.toString()));
|
|---|
| 362 | }
|
|---|
| 363 | }
|
|---|
| 364 | dialog.setModal(true);
|
|---|
| 365 | dialog.toFront();
|
|---|
| 366 | dialog.setDefaultCloseOperation(JDialog.DISPOSE_ON_CLOSE);
|
|---|
| 367 | }
|
|---|
| 368 |
|
|---|
| 369 | /**
|
|---|
| 370 | * Adds the WMSLayer following this rule:<br/>
|
|---|
| 371 | * - if a WMSLayer exists place this new layer just before this layer<br/>
|
|---|
| 372 | * - Otherwise place it at the bottom
|
|---|
| 373 | * @param wmsLayer the wmsLayer to add
|
|---|
| 374 | */
|
|---|
| 375 | public static void addWMSLayer(WMSLayer wmsLayer) {
|
|---|
| 376 | if (Main.map != null && Main.map.mapView != null) {
|
|---|
| 377 | int wmsNewLayerPos = Main.map.mapView.getAllLayers().size();
|
|---|
| 378 | for(Layer l : Main.map.mapView.getLayersOfType(WMSLayer.class)) {
|
|---|
| 379 | int wmsPos = Main.map.mapView.getLayerPos(l);
|
|---|
| 380 | if (wmsPos < wmsNewLayerPos) wmsNewLayerPos = wmsPos;
|
|---|
| 381 | }
|
|---|
| 382 | Main.main.addLayer(wmsLayer);
|
|---|
| 383 | // Move the layer to its new position
|
|---|
| 384 | Main.map.mapView.moveLayer(wmsLayer, wmsNewLayerPos);
|
|---|
| 385 | } else
|
|---|
| 386 | Main.main.addLayer(wmsLayer);
|
|---|
| 387 | }
|
|---|
| 388 |
|
|---|
| 389 | private static String checkSourceMillesime() {
|
|---|
| 390 | java.util.Calendar calendar = java.util.Calendar.getInstance();
|
|---|
| 391 | int currentYear = calendar.get(java.util.Calendar.YEAR);
|
|---|
| 392 | String src = Main.pref.get("cadastrewms.source",
|
|---|
| 393 | "cadastre-dgi-fr source : Direction G\u00e9n\u00e9rale des Imp\u00f4ts - Cadastre. Mise \u00e0 jour : AAAA");
|
|---|
| 394 | String srcYear = src.substring(src.lastIndexOf(" ")+1);
|
|---|
| 395 | Integer year = null;
|
|---|
| 396 | try {
|
|---|
| 397 | year = Integer.decode(srcYear);
|
|---|
| 398 | } catch (NumberFormatException e) {}
|
|---|
| 399 | if (srcYear.equals("AAAA") || (year != null && year < currentYear)) {
|
|---|
| 400 | System.out.println("Replace source year "+srcYear+" by current year "+currentYear);
|
|---|
| 401 | src = src.substring(0, src.lastIndexOf(" ")+1)+currentYear;
|
|---|
| 402 | Main.pref.put("cadastrewms.source", src);
|
|---|
| 403 | }
|
|---|
| 404 | return src;
|
|---|
| 405 | }
|
|---|
| 406 |
|
|---|
| 407 | }
|
|---|