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