Ignore:
Timestamp:
2010-09-15T18:54:18+02:00 (16 years ago)
Author:
stoecker
Message:

remove tabs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/CadastrePlugin.java

    r22850 r23190  
    9696 *                 - proper WMS layer cleanup at destruction (workaround for memory leak)
    9797 *                 - new cache format (v3) storing original image and cropped image bbox + angle
    98  *                 - new cache format (v4) storing original image size for later rotation 
     98 *                 - new cache format (v4) storing original image size for later rotation
    9999 *                 - cache files read compatible with previous formats
    100100 *                 - raster image rotation issues fixed, now using shift+ctrl key instead of ctrl
     
    104104 *                 - improved download cancellation
    105105 *                 - from Erik Amzallag:
    106  *                 -     possibility to modify the auto-sourcing text just before upload 
     106 *                 -     possibility to modify the auto-sourcing text just before upload
    107107 *                 - from Clément Ménier:
    108108 *                 -     new option allowing an auto-selection of the first cadastre layer for grab
     
    112112 *                 - download cancellation improved
    113113 *                 - last deployment for Java1.5 compatibility
    114  * 2.0 xx-xxx-xxxx - update projection for "La Reunion" departement to RGR92, UTM40S. 
     114 * 2.0 xx-xxx-xxxx - update projection for "La Reunion" departement to RGR92, UTM40S.
    115115 *                 - add 'departement' as option in the municipality selection
    116116 *                 - fixed bug in cache directory size control (and disabled by default)
     
    145145
    146146    public static int imageWidth, imageHeight;
    147    
     147
    148148    public static String grabLayers, grabStyles = null;
    149149
     
    156156     */
    157157    public CadastrePlugin(PluginInformation info) throws Exception {
    158         super(info);
     158        super(info);
    159159        System.out.println("Pluging cadastre-fr v"+VERSION+" started...");
    160160        if (Main.pref.get("cadastrewms.cacheDir").equals(""))
     
    218218
    219219    public static void refreshConfiguration() {
    220         source = checkSourceMillesime(); 
     220        source = checkSourceMillesime();
    221221        autoSourcing = Main.pref.getBoolean("cadastrewms.autosourcing", true);
    222222        alterColors = Main.pref.getBoolean("cadastrewms.alterColors");
     
    234234        } else if (currentResolution.equals("medium")){
    235235            imageWidth = 800; imageHeight = 600;
    236         } else { 
     236        } else {
    237237            imageWidth = 600; imageHeight = 400;
    238238        }
    239239        refreshLayersURL();
    240        
     240
    241241        // overwrite F11 shortcut used from the beginning by this plugin and recently used
    242242        // for full-screen switch in JOSM core
     
    268268        refreshMenu();
    269269    }
    270    
     270
    271271    private static void refreshLayersURL() {
    272272        grabLayers = "";
     
    346346        }
    347347    }
    348    
     348
    349349    public static boolean isCadastreProjection() {
    350350        return Main.proj.toString().equals(new Lambert().toString())
     
    360360
    361361    // See OptionPaneUtil
    362     // FIXME: this is a temporary solution. 
     362    // FIXME: this is a temporary solution.
    363363    public static void prepareDialog(JDialog dialog) {
    364364        if (Main.pref.getBoolean("window-handling.option-pane-always-on-top", true)) {
     
    373373        dialog.setDefaultCloseOperation(JDialog.DISPOSE_ON_CLOSE);
    374374    }
    375    
     375
    376376    /**
    377377     * Adds the WMSLayer following this rule:<br/>
     
    393393            Main.main.addLayer(wmsLayer);
    394394    }
    395    
     395
    396396    private static String checkSourceMillesime() {
    397397        java.util.Calendar calendar = java.util.Calendar.getInstance();
     
    411411        return src;
    412412    }
    413    
     413
    414414}
Note: See TracChangeset for help on using the changeset viewer.